/* ============================================================
   文化解析栏目样式（列表页 + 详情页共用）
   配色：深墨 #2E2A22 / 鎏金 #D4AF37 / 古铜 #9A7B3C / 宣纸 #F9F6F0
   ============================================================ */

.articles-page {
    min-height: 100vh;
    background-color: #F9F6F0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    padding-top: 64px;
}

/* ---------- Hero ---------- */
.articles-hero {
    background: linear-gradient(160deg, #2E2A22 0%, #4A3F2C 100%);
    text-align: center;
    padding: 64px 24px 56px;
    animation: fadeIn 1.2s ease-out;
}

.articles-hero-tag {
    display: inline-block;
    font-size: 12px;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 4px 16px;
    border-radius: 14px;
    letter-spacing: 2px;
}

.articles-hero-title {
    margin-top: 18px;
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 10px;
}

.articles-hero-desc {
    max-width: 560px;
    margin: 16px auto 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ---------- 列表区 ---------- */
.articles-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 24px 20px;
}

.article-card {
    display: block;
    background: #fff;
    border: 1px solid #F0E8D8;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(166, 139, 75, 0.15);
    transform: translateY(-2px);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-tag {
    font-size: 12px;
    color: #9A7B3C;
    background: rgba(212, 175, 55, 0.12);
    padding: 3px 12px;
    border-radius: 12px;
}

.article-date {
    font-size: 12px;
    color: #bbb;
}

.article-title {
    display: block;
    margin-top: 14px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

.article-subtitle {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #9A7B3C;
}

.article-summary {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #888;
    line-height: 1.8;
}

.article-foot {
    margin-top: 14px;
    text-align: right;
}

.article-read {
    font-size: 14px;
    color: #8B6914;
    font-weight: bold;
}

/* ---------- 栏目说明 / CTA ---------- */
.articles-about {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid #E8DFC8;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.articles-about-text {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
}

.articles-about-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #A68B4B, #BFA05A);
    padding: 8px 28px;
    border-radius: 20px;
}

/* ---------- 详情页 ---------- */
.article-detail-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 24px 20px;
}

.article-detail-back {
    display: inline-block;
    font-size: 13px;
    color: #9A7B3C;
    text-decoration: none;
    margin-bottom: 18px;
}

.article-detail-card {
    background: #fff;
    border: 1px solid #F0E8D8;
    border-radius: 12px;
    padding: 36px 32px;
}

.article-detail-head .article-title {
    font-size: 24px;
}

.article-detail-divider {
    border: none;
    border-top: 1px solid #F0E8D8;
    margin: 22px 0;
}

.article-section-heading {
    font-size: 18px;
    font-weight: bold;
    color: #8B6914;
    margin: 30px 0 12px;
    padding-left: 12px;
    border-left: 3px solid #D4AF37;
    line-height: 1.5;
}

.article-paragraph {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 2;
    margin-bottom: 16px;
    text-align: justify;
    text-indent: 2em;
}

.article-disclaimer {
    margin-top: 30px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed #D4AF37;
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 12px;
    color: #9A7B3C;
    line-height: 1.8;
}

/* ---------- 移动端适配 ---------- */
@media (max-width: 600px) {
    .articles-hero {
        padding: 48px 20px 40px;
    }

    .articles-hero-title {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .article-detail-card {
        padding: 28px 20px;
    }

    .article-detail-head .article-title {
        font-size: 20px;
    }
}
