/* ============================================================
   카테고리 히어로 섹션
   ============================================================ */

.gl-category-hero {
    padding-top: calc(var(--gl-header-h) + 60px);
    padding-bottom: 60px;
}

.gl-category-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* ── 좌측 텍스트 ── */
.gl-category-hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gl-gold);
    margin-bottom: 12px;
}

.gl-category-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.gl-category-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.gl-category-hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.gl-category-hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gl-category-hero-points li:last-child {
    border-bottom: none;
}

.gl-category-hero-points li svg {
    flex-shrink: 0;
}

.gl-category-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── 우측 통계 카드 ── */
.gl-category-hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gl-category-stats-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
}

.gl-category-stats-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--gl-gold);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gl-category-stat-item {
    text-align: center;
    padding: 16px 0;
}

.gl-category-stat-item + .gl-category-stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gl-category-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.gl-category-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

.gl-category-column-count {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 0;
}

.gl-category-column-count strong {
    color: var(--gl-gold);
    font-weight: 700;
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .gl-category-hero-inner {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }

    .gl-category-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .gl-category-hero {
        padding-top: calc(var(--gl-header-h) + 40px);
        padding-bottom: 40px;
    }

    .gl-category-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gl-category-hero-title {
        font-size: 26px;
    }

    .gl-category-hero-desc {
        font-size: 15px;
    }

    .gl-category-stats-card {
        padding: 20px;
    }

    .gl-category-stat-item {
        padding: 12px 0;
    }

    .gl-category-stat-value {
        font-size: 26px;
    }

    .gl-category-hero-actions {
        flex-direction: column;
    }

    .gl-category-hero-actions .gl-btn {
        text-align: center;
        justify-content: center;
    }
}
