/* 闁稿繈鍔嶉弻濠囧几娴ｈ櫣鏆嗛梺鏉跨Х婢瑰﹪寮憴鍕垫敵 */
:root {
    --primary: #2E7D32; /* 缂備浇鍎绘竟濠冪▔婵犳凹鏆柨娑樻湰濞插潡寮伴幘缁橆潐閻犲浄鎷� */
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --secondary: #37474F;
    --accent: #FF5722; /* 婵鐟ㄦ竟濠傤嚕妤﹁法娈堕柤鐧告嫹 */
    --accent-light: #FF8A65;
    --light: #FAFAFA;
    --dark: #263238;
    --text: #37474F;
    --text-light: #78909C;
    --border: #CFD8DC;
    --card-bg: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.08);
    --radius: 6px;
    --radius-lg: 12px;
}


* { margin: 0; padding: 0; box-sizing: border-box; }


body {
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.7; /* 闁哄洦娼欓妶浠嬫儍閸曨偄璁查悹鍥╃帛閳ь剨鎷� */
    color: var(--text);
    background-color: var(--light);
    font-size: 16px; /* 闁哄秴娲ら崳顖溾偓娑欍仦缂嶅寰勮閻剟鏁嶅畝鍐╃闁炬梹绋戝鍛婄附閿燂拷 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent-light);
}


.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}


.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 18px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }
.py-4 { padding: 20px 0; }
.py-5 { padding: 30px 0; }


.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1001;
    width: 0%;
}


.header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: var(--secondary);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav a.active {
    color: var(--primary);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}


.mobile-nav {
    background-color: var(--card-bg);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mobile-nav .nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
}

.mobile-nav .nav a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}


.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 15px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text);
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--border);
}


.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.main-content {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}


.article-header {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.article-tag {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}


.article-body {
    padding: 30px;
}

.article-excerpt {
    background-color: rgba(255, 87, 34, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-excerpt h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.2rem;
}


.article-content h2 {
    font-size: 1.6rem;
    margin: 28px 0 18px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 24px 0 15px;
    color: var(--secondary);
}

.article-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
    display: block;
}

.image-container {
    margin: 25px 0;
    text-align: center;
}

.image-container img {
    box-shadow: var(--shadow);
}

.highlight-box {
    background-color: rgba(46, 125, 50, 0.05);
    border-radius: var(--radius);
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid var(--primary);
}

.highlight-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}


.tags-container {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.tags-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: rgba(46, 125, 50, 0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}


.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--dark);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.sidebar-title i {
    margin-right: 10px;
    color: var(--primary);
}


.search-box {
    position: relative;
    margin-bottom: 15px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    background-color: white;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}


.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 12px;
    padding-left: 0;
}

.toc-list a {
    color: var(--text);
    font-size: 0.95rem;
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.toc-list a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}


.related-articles {
    margin: 40px 0;
}

.related-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.article-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-item-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.article-item-content {
    padding: 20px;
}

.article-item-category {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-item-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--dark);
    font-weight: 600;
}

.article-item-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}


.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 25px;
    margin-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 闁搞儳鍋涢崺灞俱亜閸洖鍔ラ柟绋款樀閹革拷 */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* 闁告繂绉寸花鎻掝嚕韫囨凹鍟庨悹渚婃嫹 */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }

    .header-inner {
        height: 60px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-header, .article-body {
        padding: 20px;
    }
}

/* SEO濞村吋锚鐎垫煡鎮ч悷鎵毎闁哄秴鍢茬槐锟� */
.structured-data {
    display: none;
}

/* 闁炬碍枪濞叉捇宕ｇ€ｎ亗鍋ㄩ柣銊ュ濞堬綁鎸婅箛鎾虫暥閻庡湱娅㈢槐娆愮▔瀹ュ棙鈻旂紒鈧潪鎵ɑ闁告瑯鍨辨慨鍕矗閺嶇數绀� */
.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.show-page {
    background:
        radial-gradient(circle at top left, rgba(76, 175, 80, 0.12), transparent 28%),
        linear-gradient(180deg, #f7fbf8 0%, #eef4f7 100%);
}

.show-page a,
.show-page .nav a,
.show-page .breadcrumb a,
.show-page .toc-list a,
.show-page .article-item a,
.show-page .mini-article,
.show-page .tag,
.show-page .footer-col a {
    border-bottom: none;
}

.show-page .header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.show-page .breadcrumb {
    padding: 18px 0 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 6px;
}

.show-page .main-content,
.show-page .sidebar-widget,
.show-page .article-item {
    border: 1px solid rgba(207, 216, 220, 0.75);
}

.show-page .main-content {
    box-shadow: 0 14px 36px rgba(38, 50, 56, 0.08);
}

.show-page .article-header {
    padding: 36px 36px 28px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.07), rgba(255, 255, 255, 0.98) 58%);
}

.show-page .article-title {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    margin-bottom: 18px;
}

.show-page .article-meta {
    gap: 12px;
}

.show-page .article-meta > div {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(207, 216, 220, 0.9);
}

.show-page .author {
    background: rgba(46, 125, 50, 0.08);
    border-color: rgba(76, 175, 80, 0.18);
}

.show-page .article-body {
    padding: 32px 36px 36px;
}

.show-page .article-excerpt,
.show-page .highlight-box {
    border-radius: 16px;
}

.show-page .article-content p {
    font-size: 1rem;
    color: #455a64;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 28px;
}

.gallery-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.1);
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(38, 50, 56, 0.14);
}

.gallery-image {
    display: block;
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: cover;
}

.show-page .tag {
    background: linear-gradient(180deg, #f4f9ff 0%, #e9f4ff 100%);
    color: #1b5e20;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.show-page .tag:hover {
    background: linear-gradient(180deg, #e8f5e9 0%, #dff2e3 100%);
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(76, 175, 80, 0.16);
}

.show-page .sidebar {
    gap: 20px;
}

.show-page .sidebar-widget {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.show-page .sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(38, 50, 56, 0.08);
}

.show-page .search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(207, 216, 220, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.show-page .search-icon {
    font-size: 1rem;
    line-height: 1;
}

.show-page .search-box input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--text);
}

.show-page .toc-list li:last-child a {
    border-bottom: none;
}

.hot-list li {
    margin-bottom: 14px;
}

.mini-article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mini-article:hover {
    background: #f6faf7;
    transform: translateX(2px);
}

.mini-article-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.mini-article-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-article-title {
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-article-date {
    font-size: 0.76rem;
    color: var(--text-light);
}

.show-page .related-articles {
    margin-top: 8px;
}

.show-page .related-title {
    margin-bottom: 20px;
}

.show-page .article-item a {
    display: block;
}

.show-page .article-item-img {
    height: 180px;
}

.show-page .article-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-desc {
    margin-bottom: 10px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 993px) {
    .show-page .sidebar {
        position: sticky;
        top: 92px;
        align-self: start;
    }
}

@media (max-width: 768px) {
    .show-page .breadcrumb {
        margin-bottom: 18px;
    }

    .show-page .article-header,
    .show-page .article-body {
        padding: 22px 18px;
    }

    .show-page .article-meta > div {
        width: 100%;
        border-radius: 14px;
    }

    .article-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .show-page .sidebar-widget {
        padding: 18px;
    }

    .mini-article {
        padding: 8px 0;
        border-radius: 0;
    }

    .show-page .article-item-img {
        height: 168px;
    }

    .show-page .footer {
        padding-top: 40px;
    }
}

.home-page,
.list-page {
    background:
        radial-gradient(circle at top right, rgba(46, 125, 50, 0.1), transparent 25%),
        linear-gradient(180deg, #f7fafc 0%, #edf3f6 100%);
}

.home-page a,
.list-page a,
.home-page .nav a,
.list-page .nav a,
.home-page .footer-col a,
.list-page .footer-col a,
.home-page .tag,
.list-page .tag,
.home-page .mini-article,
.list-page .mini-article {
    border-bottom: none;
}

.home-page .header,
.list-page .header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.hero-panel,
.list-hero {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 44%, #43a047 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.18);
}

.hero-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    align-items: stretch;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-kicker {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
}

.hero-title,
.list-hero-title {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
}

.hero-desc,
.list-hero-desc {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 26px;
}

.hero-btn,
.section-more,
.hero-feature-link,
.topic-card a,
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.primary-btn:hover,
.secondary-btn:hover,
.section-more:hover,
.hero-feature-link:hover,
.topic-card a:hover,
.page-btn:hover {
    transform: translateY(-2px);
}

.hero-stats,
.list-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stat {
    min-width: 132px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
    display: block;
    font-size: 1.35rem;
    color: #fff;
}

.hero-stat span {
    display: block;
    margin-top: 4px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-feature-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    overflow: hidden;
    min-height: 100%;
}

.hero-feature-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hero-feature-body {
    padding: 22px;
}

.hero-feature-body h2 {
    margin: 14px 0 12px;
    font-size: 1.45rem;
    line-height: 1.35;
}

.hero-feature-body p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.hero-feature-link {
    margin-top: 18px;
    background: #fff;
    color: var(--primary-dark);
}

.quick-section,
.topic-section {
    margin-bottom: 34px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 20px;
}

.section-title {
    margin-top: 10px;
    color: var(--dark);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.3;
}

.section-more {
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(207, 216, 220, 0.85);
}

.quick-grid,
.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.quick-card,
.topic-card {
    display: block;
    padding: 24px 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(207, 216, 220, 0.82);
    box-shadow: 0 12px 26px rgba(38, 50, 56, 0.06);
}

.quick-card:hover,
.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(38, 50, 56, 0.1);
}

.quick-card-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 16px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    font-weight: 700;
}

.quick-card strong,
.topic-card h3 {
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--dark);
}

.quick-card p,
.topic-card p {
    color: #607d8b;
    line-height: 1.75;
}

.topic-card a {
    margin-top: 14px;
    padding: 0;
    min-height: auto;
    justify-content: flex-start;
    color: var(--primary);
}

.featured-layout,
.list-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.featured-main,
.list-main {
    min-width: 0;
}

.featured-sidebar,
.list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-article-card,
.list-card,
.filter-panel,
.featured-sidebar .sidebar-widget,
.list-sidebar .sidebar-widget {
    background: #fff;
    border: 1px solid rgba(207, 216, 220, 0.82);
    border-radius: 22px;
    box-shadow: 0 12px 26px rgba(38, 50, 56, 0.06);
}

.featured-article-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    overflow: hidden;
    margin-bottom: 22px;
}

.featured-article-media img,
.list-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-article-body,
.list-card-body {
    padding: 24px;
}

.featured-article-body h3,
.list-card-body h2,
.list-card-body h3 {
    color: var(--dark);
    font-size: 1.35rem;
    line-height: 1.4;
    margin: 12px 0;
}

.featured-article-body p,
.list-card-body p {
    color: #607d8b;
    line-height: 1.8;
}

.featured-meta,
.list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.list-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.filter-panel {
    padding: 18px 22px;
    margin-bottom: 24px;
}

.filter-label {
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.list-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    overflow: hidden;
    margin-bottom: 18px;
}

.featured-list-card {
    grid-template-columns: 320px minmax(0, 1fr);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.page-btn {
    background: #fff;
    color: var(--text);
    border: 1px solid rgba(207, 216, 220, 0.88);
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.home-page .sidebar-widget,
.list-page .sidebar-widget,
.home-page .article-item,
.list-page .article-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .sidebar-widget:hover,
.list-page .sidebar-widget:hover,
.home-page .article-item:hover,
.list-page .article-item:hover,
.list-card:hover,
.featured-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(38, 50, 56, 0.1);
}

.home-page .search-box,
.list-page .search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(207, 216, 220, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.home-page .search-box input,
.list-page .search-box input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--text);
}

.home-page .tag,
.list-page .tag {
    background: linear-gradient(180deg, #f4f9ff 0%, #e9f4ff 100%);
    color: #1b5e20;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
}

.home-page .featured-sidebar,
.list-page .list-sidebar {
    position: sticky;
    top: 92px;
}

@media (max-width: 992px) {
    .hero-panel,
    .list-hero,
    .featured-layout,
    .list-layout,
    .featured-article-card,
    .list-card,
    .featured-list-card {
        grid-template-columns: 1fr;
    }

    .quick-grid,
    .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .featured-sidebar,
    .list-page .list-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-panel,
    .list-hero,
    .filter-panel,
    .quick-card,
    .topic-card,
    .featured-article-body,
    .list-card-body {
        padding: 20px 18px;
    }

    .hero-actions,
    .hero-stats,
    .list-hero-meta,
    .section-heading,
    .pagination {
        gap: 10px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-grid,
    .topic-grid {
        grid-template-columns: 1fr;
    }

    .hero-feature-image {
        height: 190px;
    }

    .featured-article-media img,
    .list-card-media img {
        min-height: 200px;
    }
}
