/**
 * Сетка категорий — маленькие карточки, CSS auto-fill grid
 */

/* ── Шапка секции ─────────────────────────────────────────── */
.mav-cat-section {
    margin: 32px 0 24px;
}

.mav-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.mav-cat-header__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--mav-text, #433329);
    margin: 0;
    padding-left: 11px;
    border-left: 3px solid var(--mav-primary, #337ab7);
}

.mav-cat-header__link {
    font-size: 13px;
    color: var(--mav-primary, #337ab7);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.mav-cat-header__link:hover {
    color: var(--mav-primary-hover, #2868a0);
    text-decoration: underline;
}

/* ── Сетка ────────────────────────────────────────────────── */
.mav-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

@media (max-width: 479px) {
    .mav-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ── Карточка ─────────────────────────────────────────────── */
.mav-cat-card {
    display: block;
    text-decoration: none;
    background: #fcfbf9;
    border: 1px solid rgba(67, 51, 41, 0.1);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(67, 51, 41, 0.08);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.mav-cat-card:hover {
    border-color: rgba(51, 122, 183, 0.28);
    box-shadow: 0 8px 22px rgba(33, 72, 108, 0.14);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Изображение ──────────────────────────────────────────── */
.mav-cat-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #e8f0f8;
}

.mav-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mav-cat-card:hover .mav-cat-img img {
    transform: scale(1.05);
}

.mav-cat-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #deeaf6 0%, #edf4fb 100%);
}

/* ── Подпись ──────────────────────────────────────────────── */
.mav-cat-info {
    padding: 9px 11px 10px;
    background: #f7f9fc;
    border-top: 1px solid rgba(51, 122, 183, 0.14);
}

.mav-cat-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--mav-text, #433329);
    line-height: 1.3;
    transition: color 0.2s;
}

.mav-cat-card:hover .mav-cat-name {
    color: var(--mav-primary, #337ab7);
}

.mav-cat-count {
    display: block;
    font-size: 11px;
    color: #aaa;
    margin-top: 3px;
}
