/* ============================================================
   THEME.CSS v3.0 - 主题主样式
   ============================================================
   匹配 Section 模板的 class 名称
   - CSS Variables 设计令牌
   - 所有 Section 主样式 (布局/背景/排版)
   ============================================================ */

/* ============================================
   1. CSS Variables
   ============================================ */
:root {
    /* 品牌色 */
    --color-primary: #d14b3f;
    --color-primary-dark: #9f2f26;
    --color-primary-darker: #2b1f1c;
    --color-accent: #e89a2e;
    --color-accent-dark: #c97814;
    --color-success: #2e8b57;
    --color-danger: #b83232;

    /* 中性色 */
    --color-text: #3f312d;
    --color-text-muted: #7a6a63;
    --color-text-light: #a3948d;
    --color-bg: #f3f1ed;
    --color-bg-soft: #ebe7e1;
    --color-bg-muted: #e2ddd6;
    --color-border: #d8d0c7;
    --color-border-soft: #e7e1d9;

    /* 渐变 (Section 背景) */
    --gradient-hero: linear-gradient(135deg, #6f3a32 0%, #d14b3f 55%, #f0b36a 100%);
    --gradient-deep: linear-gradient(135deg, #2b1f1c 0%, #5a3d36 100%);
    --gradient-dept: linear-gradient(135deg, #7a4637 0%, #c96a45 100%);
    --gradient-security: linear-gradient(135deg, #332724, #1f1816);
    --gradient-mission: linear-gradient(135deg, #6a3b34, #9f5a42);
    --gradient-trust: linear-gradient(135deg, #241b19, #5c3a33);
    --gradient-cta: linear-gradient(135deg, #8a4036 0%, #d85a4d 60%, #efab61 100%);
    --gradient-accent: linear-gradient(135deg, #f0b14b, #d9851f);
    --gradient-icon: linear-gradient(135deg, #e06a54, #8f352d);

    /* 玻璃效果 */
    --glass-bg: rgba(255, 251, 247, 0.14);
    --glass-border: rgba(255, 245, 235, 0.26);
    --glass-blur: blur(12px);

    /* 阴影 */
    --shadow-sm: 4px 4px 0px rgba(120, 89, 74, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.35);
    --shadow-md: 4px 4px 0px rgba(125, 86, 67, 0.18), 0 10px 18px rgba(78, 53, 43, 0.08);
    --shadow-lg: 5px 5px 0px rgba(122, 78, 60, 0.2), 0 14px 28px rgba(71, 47, 38, 0.1);
    --shadow-xl: 6px 6px 0px rgba(110, 71, 54, 0.22), 0 18px 36px rgba(56, 38, 31, 0.12);
    --shadow-primary: 4px 4px 0px rgba(159, 47, 38, 0.28), 0 14px 30px rgba(209, 75, 63, 0.12);
    --shadow-accent: 4px 4px 0px rgba(201, 120, 20, 0.28), 0 12px 24px rgba(232, 154, 46, 0.16);

    /* 圆角 */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 4px;
    --radius-pill: 30px;

    /* 间距 */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* 过渡 */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.15s ease-out;
    --transition-slow: 0.22s ease-out;
}

/* ============================================
   2. Base
   ============================================ */
:where(body) {
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

:where(img) {
    max-width: 100%;
    height: auto;
}

/* ============================================
   3. 通用工具
   ============================================ */
.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-icon);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fffaf6;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 4px 4px 0px rgba(143, 53, 45, 0.3), 0 8px 18px rgba(72, 40, 34, 0.12);
}

/* ============================================
   4. Header (HeaderSection)
   ============================================ */
.header {
    background: #fcfaf7;
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(139, 113, 98, 0.12);
}

.header .navbar-brand img {
    transition: transform var(--transition-fast), filter var(--transition-fast);
    filter: saturate(0.95) contrast(1.02);
}

.header .navbar-brand:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.05);
}

.header .nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.header .nav-link:hover {
    color: var(--color-primary);
    text-shadow: 0 1px 0 rgba(255, 245, 240, 0.7);
}

/* ============================================
   5. Hero (HeroSection)
   ============================================ */
.hero-section {
    min-height: 480px;
    background: var(--gradient-hero);
    color: #fffaf7;
    padding-block: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(39, 25, 22, 0.18) 0%, rgba(39, 25, 22, 0.28) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    text-shadow: 3px 3px 0 rgba(87, 43, 35, 0.28);
}

.hero-section h2 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.92;
    margin-bottom: var(--space-md);

    font-weight: 500;
    text-shadow: 2px 2px 0 rgba(87, 43, 35, 0.2);
}

.hero-section .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin-inline: auto;
    opacity: 0.98;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-block-start: var(--space-md);
}

/* ============================================
   6. Notice Bar (NoticeBarSection)
   ============================================ */
.notice-bar {
    animation: noticeSlideIn 0.35s ease-out;
    background: #f6ede4;
    color: #5c4138;
    box-shadow: inset 0 -1px 0 rgba(171, 135, 113, 0.16);
}

.notice-bar a {
    transition: opacity var(--transition-fast), color var(--transition-fast);
    color: var(--color-primary-dark);
}

.notice-bar a:hover {
    opacity: 0.9;
    color: var(--color-primary);
}

@keyframes noticeSlideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* ============================================
   7. Breadcrumb (BreadcrumbSection)
   ============================================ */
.breadcrumb-nav {
    background: var(--color-bg-muted);
    box-shadow: inset 0 -1px 0 rgba(130, 103, 89, 0.08);
}

.breadcrumb-nav .breadcrumb-item a {
    transition: color var(--transition-fast), opacity var(--transition-fast);
    color: var(--color-text-muted);
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--color-primary-dark) !important;
    opacity: 1;
}

/* ============================================
   8. Why Us (WhyUsSection)
   ============================================ */
.why-us-section {
    background: var(--color-bg-soft);
}

.whyus-card {
    background: #fffdfa;
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition-base);
    height: 100%;
    box-shadow: 3px 3px 0px rgba(166, 138, 119, 0.12), 0 8px 18px rgba(88, 63, 52, 0.05);
}

.whyus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
    border-color: #d9c6b8;
    background: #fffaf6;
}

/* ============================================
   9. About (AboutSection)
   ============================================ */
.about-section {
    background: var(--gradient-deep);
    color: #fffaf7;
}

.about-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 5px 5px 0 rgba(28, 20, 18, 0.28);
}

.about-img-wrap img {
    transition: transform var(--transition-slow), filter var(--transition-slow);
    filter: saturate(0.95) contrast(1.04);
}

.about-img-wrap:hover img {
    transform: scale(1.05);
    filter: saturate(1.02) contrast(1.08);
}

.about-card {
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.about-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 248, 242, 0.14);
    box-shadow: 4px 4px 0 rgba(245, 220, 204, 0.08);
}

.text-white-75 {
    color: rgba(255, 248, 243, 0.78) !important;
}

/* ============================================
   10. Departments (DepartmentsSection)
   ============================================ */
.departments-section {
    background: var(--gradient-dept);
    color: #fffaf7;
}

.departments-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 3px 3px 0 rgba(102, 53, 39, 0.22);
}

.departments-subtitle {
    font-size: 1.05rem;
    max-width: 800px;
    margin-inline: auto;
    color: rgba(255, 248, 243, 0.86);
}

.departments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-block-start: var(--space-lg);
}

@media (min-width: 768px) {
    .departments-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.d-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(255, 239, 227, 0.24);
    box-shadow: 4px 4px 0 rgba(105, 60, 45, 0.18);
}

.d-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.d-num span {
    color: #fffaf7;
    font-size: 1.1rem;
    margin-inline-start: var(--space-xs);
}

.d-image {
    margin-bottom: var(--space-sm);
}

.d-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 4px 4px 0 rgba(108, 63, 48, 0.2);
}

/* ============================================
   11. Security Network (SecuritySection)
   ============================================ */
.security-section {
    background: var(--gradient-security);
    color: #fffaf7;
}

.security-network {
    position: relative;
    max-width: 800px;
    margin: var(--space-xl) auto;
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .security-network {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
    }

    .core-node        { grid-column: 2; grid-row: 2; }
    .node-top-left    { grid-column: 1; grid-row: 1; }
    .node-top-right   { grid-column: 3; grid-row: 1; }
    .node-bottom-left { grid-column: 1; grid-row: 3; }
    .node-bottom-right{ grid-column: 3; grid-row: 3; }
}

.core-node {
    background: var(--gradient-accent);
    border-radius: 4px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: var(--color-primary-darker);
    font-weight: 700;
    box-shadow: 5px 5px 0 rgba(132, 79, 18, 0.34), 0 0 0 1px rgba(255, 240, 214, 0.28);
}

.node {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    text-align: center;
    color: #fffaf7;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 241, 230, 0.24);
    box-shadow: 4px 4px 0 rgba(49, 34, 30, 0.24);
}

.node:hover {
    transform: scale(1.05);
    background: rgba(255, 248, 243, 0.14);
}

.node-title {
    font-weight: 600;
    color: var(--color-accent);
    margin-block: var(--space-xs);
}

@media (max-width: 767.98px) {
    .core-node { width: 120px; height: 120px; }
}

/* ============================================
   12. Honor (HonorSection)
   ============================================ */
.honor-section {
    background: var(--color-bg-soft);
}

.honor-row {
    padding-block: var(--space-sm);
}

.honor-text-card {
    padding: var(--space-md);
    background: #fffdfa;
    border-radius: var(--radius-md);
    border-inline-start: 4px solid var(--color-primary);
    transition: all var(--transition-base);
    box-shadow: 3px 3px 0 rgba(167, 136, 116, 0.12), 0 8px 18px rgba(93, 66, 54, 0.05);
}

.honor-text-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: #fff9f4;
}

/* ============================================
   13. Mission (MissionSection)
   ============================================ */
.mission-section {
    background: var(--gradient-mission);
    padding-block: var(--space-2xl);
    color: #fffaf7;
}

.mission-list li {
    margin-bottom: var(--space-sm);
    color: rgba(255, 244, 237, 0.84);
}

/* ============================================
   14. Stats (StatsSection)
   ============================================ */
.stats-section {
    background: #f8f5f0;
}

.stats-card {
    transition: all var(--transition-base);
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    box-shadow: 3px 3px 0 rgba(173, 144, 124, 0.12), 0 8px 16px rgba(90, 65, 53, 0.04);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #fffdfa 0%, #f5ece3 100%);
}

.stats-card h3 {
    font-variant-numeric: tabular-nums;
    color: var(--color-primary-darker);
}

/* ============================================
   15. News (NewsSection)
   ============================================ */
.news-section {
    background: var(--color-bg-soft);
}

.news-card {
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    background: #fffdfa;
    box-shadow: 3px 3px 0 rgba(170, 140, 120, 0.12), 0 10px 22px rgba(92, 65, 54, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #d7c5b8;
}

.news-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-slow);
    filter: saturate(0.94) contrast(1.03);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.08);
    filter: saturate(1.04) contrast(1.06);
}

/* ============================================
   16. Matches (MatchesSection)
   ============================================ */
.matches-section {
    background: var(--color-bg-soft);
}

.match-card {
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    background: #fffdfa;
    box-shadow: 3px 3px 0 rgba(168, 139, 121, 0.1), 0 8px 18px rgba(90, 65, 53, 0.04);
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.match-card .team {
    min-width: 0;
}

.match-card .team .small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--color-text-muted);
}

.match-card .score {
    font-variant-numeric: tabular-nums;
    color: var(--color-primary-darker);
}

/* ============================================
   17. Trust (TrustSection)
   ============================================ */
.trust-section {
    background: var(--gradient-trust);
    color: #fffaf7;
}

.trust-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-sm);
    height: 100%;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 239, 230, 0.2);
    box-shadow: 4px 4px 0 rgba(45, 31, 27, 0.26);
}

.trust-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 248, 243, 0.14);
}

 /* ============================================
   18. Partners (PartnersSection)
   ============================================ */
.partners-section {
    background: var(--color-bg-soft);
}

.partner-card {
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    background: #fffdfa;
    box-shadow: 3px 3px 0 rgba(172, 142, 122, 0.1), 0 8px 18px rgba(87, 63, 51, 0.04);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

/* ============================================
   19. Testimonials (TestimonialsSection)
   ============================================ */
.testimonials-section {
    background: #faf7f3;
}

.testimonial-card {
    transition: all var(--transition-base);
    border-block-start: 4px solid transparent;
    border-radius: var(--radius-md);
    background: #fffdfa;
    box-shadow: 3px 3px 0 rgba(171, 141, 121, 0.1), 0 8px 18px rgba(89, 64, 53, 0.04);
}

.testimonial-card:hover {
    border-block-start-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   20. C
TA Banner (CtaBannerSection)
   ============================================ */
.cta-banner-section {
    background: var(--gradient-cta);
    color: #fffaf7;
    position: relative;
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(41, 27, 23, 0.16) 0%, rgba(41, 27, 23, 0.26) 100%);
    z-index: 0;
}

.cta-banner-section > .container {
    position: relative;
    z-index: 1;
}

.cta-banner-section .btn-warning {
    box-shadow: var(--shadow-accent);
}

.text-white-75 {
    color: rgba(255, 248, 243, 0.88) !important;
}

/* ============================================
   21. Footer (FooterSection)
   ============================================ */
.footer {
    font-size: 0.9rem;
    color: #d8c8be;
    background: #2a211f;
}

.footer a {
    transition: color 0.15s ease-out, text-shadow 0.15s ease-out;
}

.footer a:hover {
    color: var(--color-accent) !important;
    text-shadow: 1px 1px 0 rgba(120, 53, 15, 0.18);
}

.footer-copyright {
    font-size: 0.85rem;
    color: #6b7280;
}

.footer-beian {
    font-size: 0.8rem;
    line-height: 1.8;
    opacity: 0.92;
    color: #7c8594;
}

.footer-beian a:hover {
    color: var(--color-accent) !important;
    text-decoration: underline !important;
    text-decoration-color: #d97706;
}

.footer-beian img {
    margin-inline-end: 4px;
    transition: transform 0.15s ease-out, filter 0.15s ease-out, opacity 0.15s ease-out;
    filter: drop-shadow(2px 2px 0 rgba(148, 163, 184, 0.35));
    opacity: 0.94;
}

.footer-beian a:hover img {
    transform: scale(1.2);
    filter: drop-shadow(3px 3px 0 rgba(217, 119, 6, 0.28));
    opacity: 1;
}

.footer-beian li {
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .footer-beian ul {
        flex-direction: column;
        gap: var(--space-xs) !important;
    }

    .footer-beian li {
        white-space: normal;
        text-align: center;
    }
}

/* ============================================
   22. Form (Login/Signup/Contact)
   ============================================ */
.form-control:focus,
.form-select:focus {
    border-color: #c2410c;
    outline-color: #c2410c;
    box-shadow: 0 0 0 0.2rem rgba(194, 65, 12, 0.12), 4px 4px 0 rgba(30, 41, 59, 0.12);
    border-radius: 3px;
    caret-color: #c2410c;
}

.btn-primary {
    background-color: #b91c1c;
    border-color: #7f1d1d;
    border-style: solid;
    color: #ffffff;
    box-shadow: 4px 4px 0 rgba(127, 29, 29, 0.22);
    border-radius: 3px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s ease-out;
    filter: saturate(1.02);
    accent-color: #b91c1c;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #dc2626;
    border-color: #991b1b;
    box-shadow: 4px 4px 0 rgba(153, 27, 27, 0.26), 0 0 0 0.18rem rgba(220, 38, 38, 0.12);
    filter: saturate(1.08) brightness(1.01);
}

.input-group-text {
    background-color: #f3f4f6;
    border-color: #cbd5e1;
    border-style: solid;
    color: #4b5563;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 2px 2px 0 rgba(203, 213, 225, 0.45);
    border-radius: 2px;
}

/* ============================================
   23. Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   Grid Layout Defaults (CSS-Variant-Ready)
   CSSVariantEngine sẽ override các rules này
   ============================================================ */

/* 新闻网格 (默认 3 列) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* 功能特性列表 (默认 3 列) */
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* 用户评价 (默认 3 列) */
.testimonial-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* 合作伙伴 (默认 4 列) */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

/* 数据统计 (默认 4 列) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

/* FAQ 列表 (默认单列居中) */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

/* Hero 内容 (默认居中) */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero 分割布局 (左文右图) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.hero-split-text { }
.hero-split-img { text-align: center; }

/* CTA 内容 (默认居中) */
.cta-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 作者团队 (默认 4 列) */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 联系渠道 (默认 3 列) */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* 文章列表 (默认 2 列) */
.post-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* 相关文章 (默认 3 列) */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* 赛事列表 (默认 3 列) */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* 步 骤网格 (默认 4 列) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 二维码网格 (默认 3 列) */
.qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

/* 荣誉列表 (默认 2 列交替) */
.honor-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.honor-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.honor-row-reverse {
    direction: rtl;
}
.honor-row-reverse > * {
    direction: ltr;
}

/* ============================================================
   Responsive Defaults
   ============================================================ */
@media (max-width: 1024px) {
    .news-grid,
    .feature-list,
    .channels-grid,
    .testimonial-list { grid-template-columns: repeat(2, 1fr); }

    .partner-grid,
    .stats-grid,
    .authors-grid { grid-template-columns: repeat(2, 1fr); }

    .matches-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-split { grid-template-columns: 1fr; }
    .honor-row { grid-template-columns: 1fr; }
    .honor-row-reverse { direction: ltr; }
}

@media (max-width: 640px) {
    .news-grid,
    .feature-list,
    .testimonial-list,
    .channels-grid,
    .post-list-grid,
    .related-grid,
    .authors-grid,
    .matches-grid { grid-template-columns: 1fr; }

    .partner-grid,
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .steps-grid { grid-template-columns: 1fr; }
    .qr-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }

    .faq-list { max-width: 100%; }
}