@media screen and (max-width: 1000px) {
    .-view-more-btn {
        width: 250px;
        height: 80px !important;
        line-height: 80px !important;
        font-size: 28px;
    }
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    grid-auto-rows: 200px;
}

.model-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.model-card.span-2 {
    grid-column: span 2;
}

.model-card.tall {
    grid-row: span 2;
}

.model-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 1rem;
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.model-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.model-category {
    font-size: 0.875rem;
    opacity: 0.9;
}