/* roulang page: index */
:root {
            --primary: #0C3B2E;
            --primary-hover: #145243;
            --accent: #C8923B;
            --accent-hover: #AA7A2F;
            --deep: #0A2A21;
            --body: #1E2A26;
            --muted: #5C6F68;
            --bg-warm: #F7F4EE;
            --card: #FFFFFF;
            --sand: #EFEAE0;
            --line: #E3DDD0;
            --success: #2F6B4F;
            --radius-xl: 16px;
            --shadow-sm: 0 1px 2px rgba(12, 59, 46, 0.06);
            --shadow-lg: 0 8px 24px rgba(12, 59, 46, 0.1);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: #F7F4EE;
            color: #1E2A26;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (min-width: 768px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color .2s ease;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        /* 顶部信息条 */
        .top-info-bar {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            min-height: 40px;
            display: flex;
            align-items: center;
        }
        .top-info-bar a {
            color: var(--accent);
        }
        .top-info-bar a:hover {
            color: #E2B468;
        }

        /* 主导航 */
        .main-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: #fff;
            box-shadow: 0 2px 12px rgba(12, 59, 46, 0.06);
            border-bottom: 1px solid #EFEAE0;
        }
        .nav-link {
            position: relative;
            padding: 8px 4px;
            font-size: 15px;
            color: #5C6F68;
            font-weight: 500;
            transition: color .2s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width .25s ease;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }
        .nav-link.active::after {
            width: 100%;
        }

        /* 倒计时条 */
        .countdown-section {
            background: var(--deep);
            position: relative;
            overflow: hidden;
        }
        .countdown-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 50%, rgba(200, 146, 59, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
            pointer-events: none;
        }
        .countdown-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 8px 12px;
            text-align: center;
            min-width: 62px;
            backdrop-filter: blur(4px);
        }
        .countdown-box .num {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            font-family: Georgia, serif;
            font-variant-numeric: tabular-nums;
        }
        .countdown-box .unit {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }
        @media (max-width: 767px) {
            .countdown-box {
                padding: 4px 8px;
                min-width: 48px;
            }
            .countdown-box .num {
                font-size: 18px;
            }
        }

        /* 板块标题 */
        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            position: relative;
            display: inline-block;
            color: var(--primary);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        @media (min-width: 768px) {
            .section-title {
                font-size: 32px;
            }
        }

        /* 卖点卡片 */
        .feature-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .3s, transform .3s;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .feature-card--accent {
            border-left: 4px solid var(--accent);
        }
        .feature-card--dark {
            background: var(--deep);
            border-color: transparent;
            color: #fff;
        }
        .feature-card--dark p {
            color: rgba(255, 255, 255, 0.75);
        }
        .feature-card--dark .feature-link {
            color: var(--accent);
        }

        /* 图墙 */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            display: block;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.06);
        }
        .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 100%);
        }
        .gallery-item .caption {
            position: absolute;
            bottom: 14px;
            left: 20px;
            right: 20px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
        }

        /* CTA按钮 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            border-radius: 8px;
            padding: 12px 28px;
            font-size: 15px;
            transition: background .25s, box-shadow .25s;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: var(--primary-hover);
        }
        .btn-primary:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(200, 146, 59, 0.5);
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: var(--accent);
            color: #1E2A26;
            font-weight: 600;
            border-radius: 8px;
            padding: 12px 28px;
            font-size: 15px;
            transition: background .25s, color .25s, box-shadow .25s;
            border: none;
            cursor: pointer;
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            color: #fff;
        }
        .btn-accent:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.4);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            border-radius: 8px;
            padding: 12px 28px;
            font-size: 15px;
            border: 1.5px solid rgba(255, 255, 255, 0.7);
            transition: border-color .25s, background .25s;
        }
        .btn-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* 表单 */
        .form-input {
            width: 100%;
            border: 1px solid #C8C2B5;
            border-radius: 8px;
            padding: 12px 16px;
            background: #fff;
            color: #1E2A26;
            font-size: 15px;
            transition: border-color .2s, box-shadow .2s;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.08);
        }
        .form-input::placeholder {
            color: #A0AAA4;
        }

        /* FAQ */
        .faq-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 20px 24px;
            transition: box-shadow .25s;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: var(--primary);
        }
        .faq-icon {
            color: var(--accent);
            font-size: 22px;
            font-weight: 700;
            line-height: 1;
            transition: transform .3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, margin-top .25s ease;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }
        .faq-item.active .faq-answer {
            margin-top: 10px;
        }

        /* 最新信息列表 */
        .news-list li {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--line);
            transition: background .2s;
        }
        .news-list li:last-child {
            border-bottom: none;
        }
        .news-list .news-date {
            font-size: 12px;
            color: var(--muted);
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }
        .news-list .news-title {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            color: var(--body);
            transition: color .2s;
        }
        .news-list .news-title a:hover {
            color: var(--primary-hover);
        }

        .tag {
            display: inline-block;
            background: rgba(200, 146, 59, 0.14);
            color: var(--primary);
            font-size: 12px;
            padding: 4px 14px;
            border-radius: 20px;
            font-weight: 500;
            white-space: nowrap;
        }

        /* 页脚 */
        .footer {
            background: var(--deep);
            color: #D8E0DC;
        }
        .footer a {
            color: #A8B8B1;
            transition: color .2s;
        }
        .footer a:hover {
            color: var(--accent);
        }
        .footer-title {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        /* 移动端菜单 */
        .mobile-menu {
            background: #fff;
            border-bottom: 1px solid var(--line);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .mobile-menu a {
            display: block;
            padding: 14px 20px;
            border-bottom: 1px solid #f0ece3;
            font-size: 15px;
            color: var(--body);
            font-weight: 500;
        }
        .mobile-menu a:last-child {
            border-bottom: none;
        }
        .mobile-menu a.active {
            color: var(--primary);
            background: rgba(12, 59, 46, 0.03);
        }

        /* 空态 */
        .empty-state {
            border: 2px dashed var(--line);
            border-radius: 16px;
            padding: 48px 20px;
            text-align: center;
            color: var(--muted);
        }

        /* 装饰纹 */
        .cta-pattern {
            background-image:
                radial-gradient(circle at 20% 40%, rgba(200, 146, 59, 0.14) 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
        }

        /* 响应式微调 */
        @media (max-width: 640px) {
            .section-title {
                font-size: 24px;
            }
            .feature-card {
                padding: 24px 20px;
            }
            .news-list li {
                flex-wrap: wrap;
                gap: 8px;
                padding: 14px 0;
            }
            .news-list .news-date {
                width: 100%;
            }
            .news-list .news-title {
                font-size: 15px;
                flex-basis: 100%;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #0C3B2E;
            --primary-hover: #145243;
            --accent: #C8923B;
            --accent-hover: #AA7A2F;
            --dark: #0A2A21;
            --ink: #1E2A26;
            --muted: #5C6F68;
            --bg: #F7F4EE;
            --card: #FFFFFF;
            --sand: #EFEAE0;
            --line: #E3DDD0;
            --success: #2F6B4F;
            --font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family: var(--font-family);
            background: var(--bg);
            color: var(--ink);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 768px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        .main-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: #FFFFFF;
            border-bottom: 1px solid var(--line);
            box-shadow: 0 1px 8px rgba(12, 59, 46, 0.06);
        }

        .nav-link {
            position: relative;
            color: var(--muted);
            font-size: 15px;
            font-weight: 500;
            padding: 6px 4px;
            transition: color 0.25s ease, background 0.25s ease;
            border-radius: 6px;
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(12, 59, 46, 0.06);
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #FFFFFF;
            font-weight: 600;
            border-radius: 8px;
            padding: 12px 26px;
            font-size: 15px;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: none;
            line-height: 1.4;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(12, 59, 46, 0.18);
        }

        .btn-primary:focus,
        .btn-primary:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(200, 146, 59, 0.35);
        }

        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: #1E2A26;
            font-weight: 700;
            border-radius: 8px;
            padding: 12px 28px;
            font-size: 15px;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: none;
            line-height: 1.4;
        }

        .btn-accent:hover {
            background: var(--accent-hover);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(170, 122, 47, 0.3);
        }

        .btn-accent:focus,
        .btn-accent:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(12, 59, 46, 0.3);
        }

        .btn-outline-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #FFFFFF;
            font-weight: 600;
            border: 1.5px solid rgba(255, 255, 255, 0.7);
            border-radius: 8px;
            padding: 12px 26px;
            font-size: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-outline-white:hover {
            border-color: #FFFFFF;
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .footer {
            background: var(--dark);
            color: #D8E0DC;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer a {
            color: #A8B8B1;
            transition: color 0.25s ease;
        }

        .footer a:hover {
            color: var(--accent);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: rgba(216, 224, 220, 0.75);
            gap: 8px;
        }

        .breadcrumb a {
            color: rgba(216, 224, 220, 0.75);
            transition: color 0.25s ease;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .sep {
            color: rgba(216, 224, 220, 0.45);
        }

        .breadcrumb .current {
            color: #FFFFFF;
            font-weight: 500;
        }

        .category-hero {
            background: linear-gradient(120deg, #0C3B2E 0%, #145243 55%, #0A2A21 100%);
            position: relative;
            overflow: hidden;
        }

        .category-hero::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 146, 59, 0.18) 0%, transparent 70%);
            top: -120px;
            right: -80px;
        }

        .category-hero::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 146, 59, 0.1) 0%, transparent 70%);
            bottom: -120px;
            left: 10%;
        }

        .category-hero .hero-inner {
            position: relative;
            z-index: 2;
        }

        .hero-line {
            width: 54px;
            height: 3px;
            background: var(--accent);
            border-radius: 4px;
            margin: 20px auto 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-label::after {
            content: "";
            width: 32px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .title-underline {
            display: inline-block;
            position: relative;
            padding-bottom: 12px;
        }

        .title-underline::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 48px;
            height: 3px;
            background: var(--accent);
            border-radius: 4px;
        }

        .numbered-row {
            transition: background 0.3s ease, box-shadow 0.3s ease;
            border-radius: 12px;
        }

        .numbered-row:hover {
            background: rgba(255, 255, 255, 0.6);
            box-shadow: 0 4px 16px rgba(12, 59, 46, 0.06);
        }

        .badge-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            background: rgba(200, 146, 59, 0.12);
            color: #8C6522;
            font-size: 13px;
            font-weight: 500;
            border-radius: 999px;
            border: 1px solid rgba(200, 146, 59, 0.2);
        }

        .faq-item {
            background: #FFFFFF;
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 22px 26px;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(200, 146, 59, 0.4);
            box-shadow: 0 6px 20px rgba(12, 59, 46, 0.05);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: var(--ink);
            gap: 16px;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(200, 146, 59, 0.12);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 400;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--accent);
            color: #FFFFFF;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, margin-top 0.3s ease;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.8;
        }

        .faq-item.open .faq-answer {
            max-height: 220px;
            margin-top: 12px;
        }

        .cta-decor {
            position: relative;
            overflow: hidden;
        }

        .cta-decor::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(200, 146, 59, 0.15) 1px, transparent 1px);
            background-size: 24px 24px;
            pointer-events: none;
        }

        .cta-decor .cta-content {
            position: relative;
            z-index: 2;
        }

        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(10, 42, 33, 0.97);
            z-index: 90;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .mobile-menu.open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            color: #D8E0DC;
            font-size: 20px;
            font-weight: 500;
        }

        .mobile-menu a:hover {
            color: var(--accent);
        }

        @media (max-width: 767px) {
            .category-hero {
                min-height: 360px;
            }
        }

/* roulang page: article */
:root {
        --primary: #0C3B2E;
        --primary-hover: #145243;
        --accent: #C8923B;
        --accent-hover: #AA7A2F;
        --dark: #0A2A21;
        --text: #1E2A26;
        --muted: #5C6F68;
        --bg: #F7F4EE;
        --card: #FFFFFF;
        --sand: #EFEAE0;
        --border: #E3DDD0;
        --success: #2F6B4F;
    }
    * {
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }
    .container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    @media (min-width: 768px) {
        .container {
            padding-left: 2rem;
            padding-right: 2rem;
        }
    }
    a {
        transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .main-header {
        background: #fff;
        border-bottom: 1px solid var(--border);
    }
    .nav-link {
        position: relative;
        padding: .5rem .25rem;
        color: var(--muted);
        font-size: .95rem;
        white-space: nowrap;
        transition: color .2s;
    }
    .nav-link:hover {
        color: var(--primary);
    }
    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background: var(--accent);
        transition: width .2s;
    }
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }
    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .4rem;
        background: var(--primary);
        color: #fff;
        border-radius: .5rem;
        padding: .75rem 1.5rem;
        font-weight: 500;
        transition: background .2s, box-shadow .2s, transform .2s;
    }
    .btn-primary:hover {
        background: var(--primary-hover);
        box-shadow: 0 6px 16px rgba(12, 59, 46, .2);
        transform: translateY(-1px);
    }
    .btn-primary:focus {
        outline: none;
        box-shadow: 0 0 0 3px var(--accent);
    }
    .footer-title {
        color: #fff;
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: .95rem;
    }
    .footer a {
        color: #A8B8B1;
        transition: color .2s;
    }
    .footer a:hover {
        color: var(--accent);
    }
    .article-body {
        font-size: 1.0625rem;
        line-height: 1.8;
        color: var(--text);
        word-break: break-word;
    }
    .article-body p {
        margin-bottom: 1.5rem;
    }
    .article-body h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        padding-left: .75rem;
        border-left: 4px solid var(--accent);
    }
    .article-body h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .article-body blockquote {
        border-left: 4px solid var(--accent);
        background: var(--bg);
        padding: 1rem 1.5rem;
        border-radius: 0 .5rem .5rem 0;
        margin-bottom: 1.5rem;
    }
    .article-body ul,
    .article-body ol {
        padding-left: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .article-body ul {
        list-style: disc;
    }
    .article-body ol {
        list-style: decimal;
    }
    .article-body li {
        margin-bottom: .5rem;
    }
    .article-body img {
        border-radius: .75rem;
        margin: 2rem 0;
    }
    .article-body code {
        background: rgba(200, 146, 59, .15);
        color: var(--primary);
        padding: 0 .25rem;
        border-radius: .25rem;
        font-size: .9em;
    }
    .article-body a {
        color: var(--primary);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .article-body a:hover {
        color: var(--accent-hover);
    }
    .tag {
        display: inline-block;
        background: rgba(200, 146, 59, .12);
        color: var(--primary);
        font-size: .8rem;
        padding: .3rem .75rem;
        border-radius: 999px;
        font-weight: 500;
    }
