.category-hero { padding: 90px 0 40px; }
.category-shell { max-width: 1200px; margin: 0 auto; }
.category-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.category-breadcrumb a {
    color: inherit;
    pointer-events: auto;
}
.category-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.category-layout > div {
    flex: 1 1 auto;
    min-width: 0;
}
.category-side {
    flex: 0 0 auto;
    width: 220px;
}
.category-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 20px;
    display: grid;
    gap: 14px;
}
.subcategory-list {
    display: grid;
    gap: 10px;
}
.subcategory-list.is-collapsed .subcategory-link:nth-child(n + 9) {
    display: none;
}
.subcategory-link {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--muted);
    background: #f8fafc;
    display: block;
}
.subcategory-link:hover {
    color: var(--accent-strong);
    border-color: rgba(37, 99, 235, 0.35);
}
.subcategory-toggle {
    border: 1px dashed var(--line);
    background: #ffffff;
    color: var(--muted);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
}
.article-list {
    display: grid;
    gap: 14px;
}
.academy-faq-panel {
    margin-bottom: 22px;
    background: linear-gradient(135deg, #f8fbff 0%, #f5f8ff 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}
.academy-faq-head {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}
.academy-faq-head h2 {
    margin: 0;
    font-size: 22px;
}
.academy-faq-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.academy-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.academy-faq-card {
    display: grid;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    padding: 16px 18px;
    color: inherit;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.academy-faq-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}
.academy-faq-card-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
}
.academy-faq-card strong {
    font-size: 16px;
    line-height: 1.55;
}
.academy-faq-card span:last-child {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.academy-featured-panel {
    margin-bottom: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.academy-featured-head {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}
.academy-featured-head h2 {
    margin: 0;
    font-size: 22px;
}
.academy-featured-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.academy-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.academy-featured-card {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.academy-featured-card:hover {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}
.academy-featured-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 700;
}
.academy-featured-card strong {
    font-size: 16px;
    line-height: 1.6;
}
.academy-featured-card span:last-of-type {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.academy-featured-card em {
    color: #94a3b8;
    font-size: 12px;
    font-style: normal;
}
.article-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    display: grid;
    gap: 8px;
}
.article-card.has-cover {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}
.article-cover {
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    background: #eef2f8;
}
.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-card h2 {
    margin: 0;
    font-size: 18px;
}
.article-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}
.article-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}
.article-badge--faq {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}
.article-card--faq {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.06);
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
}
.article-excerpt {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .category-layout { flex-direction: column; }
    .category-side { width: 100%; }
}
@media (max-width: 860px) {
    .academy-faq-grid {
        grid-template-columns: 1fr;
    }
    .academy-featured-grid {
        grid-template-columns: 1fr;
    }
    .academy-faq-panel {
        padding: 18px;
    }
    .academy-featured-panel {
        padding: 18px;
    }
    .article-card.has-cover {
        grid-template-columns: 1fr;
    }
    .article-cover {
        height: 180px;
    }
}
