/* BOOKMARK: Category Hero */
.ax-category-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    padding: 28px 28px;
    min-height: 168px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.16) 100%),
        linear-gradient(135deg, rgba(135,155,43,0.22) 0%, rgba(135,155,43,0.10) 48%, rgba(255,255,255,0.10) 100%);
    border: 1px solid rgba(255,255,255,0.52);
    box-shadow: 0 20px 44px rgba(76,92,21,0.12), inset 0 1px 0 rgba(255,255,255,0.64);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    overflow: hidden;
    isolation: isolate;
}

.ax-category-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
    z-index: 2;
}

.ax-category-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.ax-category-hero-left {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: min(72%, 920px);
}

.ax-category-hero-right {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: 110px;
}

.ax-category-title {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ax-dark-purple);
    font-weight: 700;
}

.ax-category-count {
    display: none;
}

.ax-category-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.42);
    border: 1px solid rgba(255,255,255,0.64);
    box-shadow: 0 10px 22px rgba(75,28,113,0.08), inset 0 1px 0 rgba(255,255,255,0.72);
    color: rgba(75,28,113,0.86);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.ax-category-description {
    margin-top: 6px;
    max-width: 880px;
    color: rgba(75, 28, 113, 0.78);
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .ax-category-hero {
        padding: 24px 22px;
        min-height: 148px;
        gap: 16px;
    }

    .ax-category-hero-left {
        max-width: calc(100% - 110px);
    }

    .ax-category-description {
        font-size: 15px;
    }
}
