@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Noto+Serif:wght@300;400;600&family=Ma+Shan+Zheng&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    /* Luxury Palette - 奢侈品级配色方案 */
    --primary-gold: #C8A882;        /* 香槟金 - 奢华主色 */
    --deep-charcoal: #2D2926;       /* 深炭色 - 高对比度文字 */
    --warm-bronze: #A0845C;         /* 温暖青铜色 */
    --soft-champagne: #F7F3EE;      /* 柔和香槟色背景 */
    --pure-white: #FFFFFF;          /* 纯白 */
    --accent-copper: #B8956A;       /* 铜色强调 */
    --luxury-grey: #6B645C;         /* 奢华灰 */
    --pearl-white: #FDFBF7;         /* 珍珠白 */
    --shadow-brown: rgba(45, 41, 38, 0.1); /* 阴影色 */
}

body {
    font-family: 'Source Sans Pro', 'Noto Serif', sans-serif;
    background: var(--soft-champagne);
    color: var(--deep-charcoal);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* 简洁的质感背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(200, 168, 130, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    position: relative;
    background: var(--pure-white);
    border-radius: 32px;
    box-shadow: 0 0 60px var(--shadow-brown);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* --- Language Switcher --- */
.language-switcher {
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    font-family: 'Source Sans Pro', sans-serif;
    z-index: 20;
}

.language-switcher .current-lang {
    cursor: pointer;
    font-weight: 500;
    color: var(--luxury-grey);
    border: 1px solid rgba(45, 41, 38, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: var(--pure-white);
    backdrop-filter: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(45, 41, 38, 0.08);
}

.language-switcher .current-lang:hover {
    color: var(--deep-charcoal);
    border-color: rgba(45, 41, 38, 0.25);
    background: var(--pure-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 41, 38, 0.12);
}

.language-switcher .lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--pure-white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(45, 41, 38, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.15);
    list-style: none;
    padding: 0.8rem 0;
    margin: 0.8rem 0 0 0;
    z-index: 15;
    min-width: 120px;
}

.language-switcher.active .lang-dropdown {
    display: block;
}

.language-switcher .lang-dropdown a {
    display: block;
    padding: 0.6rem 1.8rem;
    text-decoration: none;
    color: var(--luxury-grey);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    margin: 0 0.5rem;
}

.language-switcher .lang-dropdown a:hover {
    background: rgba(45, 41, 38, 0.05);
    color: var(--deep-charcoal);
    transform: translateX(2px);
}

header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* 东方装饰元素 */
header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(181, 164, 139, 0.05) 0%, transparent 40%);
    animation: gentle-rotation 60s linear infinite;
    z-index: -1;
}

@keyframes gentle-rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

header h1 {
    font-family: 'Playfair Display', 'Ma Shan Zheng', serif;
    font-size: 4rem;
    color: var(--deep-charcoal);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
    position: relative;
}


header p {
    font-size: 1.2rem;
    color: var(--luxury-grey);
    margin-top: 1rem;
    font-style: italic;
    font-weight: 300;
    font-family: 'Noto Serif', serif;
}

nav {
    text-align: center;
    margin-bottom: 4rem;
    padding: 1.5rem 0;
    position: relative;
    background: rgba(247, 243, 238, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 41, 38, 0.06);
}


nav a {
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none;
    color: var(--luxury-grey);
    margin: 0 20px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    letter-spacing: 0.01em;
}

nav a:hover {
    color: var(--deep-charcoal);
    background: rgba(45, 41, 38, 0.06);
    transform: translateY(-1px) scale(1.02);
}

.hero {
    text-align: center;
    margin-bottom: 5rem;
    max-height: 450px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(245, 230, 224, 0.1) 0%, 
        rgba(181, 164, 139, 0.05) 50%, 
        rgba(230, 194, 166, 0.1) 100%);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    filter: brightness(102%) contrast(1.05) saturate(1.1);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero:hover img {
    transform: scale(1.03);
}

.cta-section {
    text-align: center;
    background: var(--pure-white);
    padding: 5rem 3rem;
    border-radius: 0;
    margin-bottom: 6rem;
    border: none;
    position: relative;
    overflow: visible;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0 0 2rem 0;
    color: var(--deep-charcoal);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--luxury-grey);
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--deep-charcoal);
    color: var(--pure-white);
    padding: 1.2rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.01em;
    text-transform: none;
    border: none;
    box-shadow: 0 4px 20px rgba(45, 41, 38, 0.15);
}

.cta-button:hover {
    background: var(--luxury-grey);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.2);
}

.content-section {
    margin-bottom: 3rem;
    text-align: center;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-charcoal);
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(45, 41, 38, 0.1);
    display: inline-block;
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.article-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}

.article-card {
    background: var(--pure-white);
    border: 1px solid rgba(45, 41, 38, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--deep-charcoal);
    box-shadow: 0 4px 20px rgba(45, 41, 38, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgba(45, 41, 38, 0.12);
    border-color: rgba(45, 41, 38, 0.15);
}

.article-card h3 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 0.8rem 0;
    font-size: 1.8rem;
    color: var(--deep-charcoal);
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.article-card p {
    margin: 0;
    color: var(--luxury-grey);
    line-height: 1.7;
    font-family: 'Noto Serif', serif;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

footer {
    text-align: center;
    padding: 4rem 0 2rem 0;
    margin-top: 6rem;
    background: rgba(247, 243, 238, 0.3);
    border-radius: 32px 32px 0 0;
    border-top: 1px solid rgba(45, 41, 38, 0.08);
    font-size: 0.9rem;
    color: var(--luxury-grey);
    position: relative;
    backdrop-filter: blur(10px);
}

footer .attribution {
    font-size: 0.8rem;
    color: rgba(107, 100, 92, 0.6);
    margin-top: 2rem;
}

footer .attribution a {
    color: rgba(107, 100, 92, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer .attribution a:hover {
    color: var(--luxury-grey);
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(45, 41, 38, 0.95);
    color: var(--pure-white);
    padding: 1.5rem 2rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(45, 41, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.active,
.cookie-banner[style*="block"] {
    display: flex !important;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner .buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-accept-btn,
.cookie-reject-btn {
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Source Sans Pro', sans-serif;
    white-space: nowrap;
}

.cookie-accept-btn {
    background: var(--pure-white);
    color: var(--deep-charcoal);
}

.cookie-reject-btn {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-accept-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-reject-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* --- Article Page Specific Styles --- */
.article-content {
    background: var(--pure-white);
    border: 1px solid rgba(45, 41, 38, 0.08);
    border-radius: 24px;
    padding: 4rem 5rem;
    text-align: left;
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200, 168, 130, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.article-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-charcoal);
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--deep-charcoal);
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.article-content p, .article-content li {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--luxury-grey);
    font-family: 'Noto Serif', serif;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.article-content ul {
    list-style-type: none;
    padding-left: 0;
}

.article-content li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 1em;
}

.article-content li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.9em;
    top: 0.4em;
}

.article-image {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    max-width: 100%;
}

.image-right {
    float: right;
    width: 45%;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.image-full-width {
    width: 100%;
    margin: 2rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.image-full-width img {
    max-width: 600px;
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--soft-champagne);
}

.image-full-width img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 41, 38, 0.18);
}

/* About页面特殊样式 */
.about-page .image-full-width {
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .image-full-width img {
        max-width: 90%;
        height: 300px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .image-full-width img {
        height: 250px;
        border-radius: 12px;
    }
}

.image-caption {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Clear float for elements after a floated image */
.article-content h2, .article-content h3 {
    clear: both;
}

/* Japandi 极简主义布局优化 */
.intro-section {
    padding: 4rem 0;
    text-align: left;
    max-width: 80%;
    margin: 0 auto;
}

.intro-section p {
    font-family: 'Noto Serif', serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--luxury-grey);
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: justify;
}

.intro-section p:first-of-type::first-letter {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    float: left;
    line-height: 3.2rem;
    margin: 0.5rem 0.8rem 0.2rem 0;
    color: var(--deep-charcoal);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 2rem;
        margin-top: 1rem;
    }
    
    header h1 {
        font-size: 3.5rem;
    }
    
    .content-section h2 {
        font-size: 2.2rem;
    }
    
    nav a {
        margin: 0 20px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    nav {
        border-radius: 16px;
        padding: 1.2rem 0;
    }
    
    nav a {
        margin: 0 15px;
        padding: 0.5rem 1rem;
        border-radius: 10px;
    }
    
    header {
        padding: 2rem 0;
    }
    
    header h1 {
        font-size: 2.8rem;
    }
    
    header p {
        font-size: 1.1rem;
    }
    
    .language-switcher {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    nav {
        margin-bottom: 3rem;
        padding: 1rem 0;
    }
    
    nav a {
        margin: 0 15px;
        font-size: 0.95rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero {
        margin-bottom: 3rem;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .article-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .cta-button {
        border-radius: 14px;
        padding: 1rem 2.5rem;
    }
    
    .article-card h3 {
        font-size: 1.6rem;
    }
    
    .intro-section {
        max-width: 100%;
        padding: 3rem 0;
    }
    
    .intro-section p:first-of-type::first-letter {
        font-size: 3rem;
        line-height: 2.5rem;
        margin: 0.3rem 0.6rem 0.1rem 0;
    }
    
    /* Article content responsive */
    .image-right {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .article-content {
        padding: 2rem 1.5rem;
    }
    .article-content h1 {
        font-size: 2.2rem;
    }
    .article-content h2 {
        font-size: 1.8rem;
    }
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--mist-grey);
        border-radius: 12px;
        margin: 2rem 0;
    }
    .zodiac-table {
        width: 100%;
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .hero {
        border-radius: 20px;
    }
    
    .hero img {
        border-radius: 20px;
    }
    
    nav {
        border-radius: 12px;
    }
    
    nav a {
        border-radius: 8px;
        padding: 0.4rem 0.8rem;
    }
    
    header h1 {
        font-size: 2.4rem;
    }
    
    nav a {
        margin: 0 10px;
        font-size: 0.9rem;
    }
    
    .article-card {
        padding: 1.8rem;
        border-radius: 14px;
    }
    
    .language-switcher .current-lang {
        border-radius: 10px;
    }
    
    .language-switcher .lang-dropdown {
        border-radius: 10px;
    }
    
    .cookie-banner {
        border-radius: 12px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner .buttons {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .cta-section {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        border-radius: 12px;
    }
    
    footer {
        border-radius: 20px 20px 0 0;
    }
}

/* --- Enhanced Article CTA Section --- */
.article-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--soft-champagne) 0%, var(--pure-white) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    margin: 4rem 0 2rem 0;
    border: 1px solid rgba(45, 41, 38, 0.08);
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.06);
    position: relative;
    overflow: hidden;
}

.article-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 168, 130, 0.03) 0%, transparent 50%);
    animation: gentle-pulse 8s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

.article-cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0 0 1.5rem 0;
    color: var(--deep-charcoal);
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.article-cta-section p {
    font-size: 1.15rem;
    color: var(--luxury-grey);
    max-width: 580px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
    font-family: 'Noto Serif', serif;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.article-cta-button {
    display: inline-block;
    background: var(--deep-charcoal);
    color: var(--pure-white);
    padding: 1rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.01em;
    border: none;
    box-shadow: 0 4px 20px rgba(45, 41, 38, 0.15);
    position: relative;
    z-index: 1;
}

.article-cta-button:hover {
    background: var(--luxury-grey);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.2);
    text-decoration: none;
    color: var(--pure-white);
}

/* 响应式CTA设计 */
@media (max-width: 768px) {
    .article-cta-section {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        margin: 3rem 0 1.5rem 0;
    }
    
    .article-cta-section h3 {
        font-size: 1.8rem;
    }
    
    .article-cta-section p {
        font-size: 1.1rem;
    }
    
    .article-cta-button {
        padding: 1rem 2rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .article-cta-section {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .article-cta-section h3 {
        font-size: 1.6rem;
    }
    
    .article-cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* Article Image Styles - Optimized Layout */
.article-image {
    margin: 2.5rem 0 3rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.article-image img {
    display: block !important;
    width: 100% !important;
    max-width: 500px !important;
    height: 280px !important;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(45, 41, 38, 0.12);
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 41, 38, 0.18);
}

/* Article header image - hero style */
.article-header .article-image {
    margin: 1.5rem 0 3rem 0;
}

.article-header .article-image img {
    max-width: 600px !important;
    height: 320px !important;
    border-radius: 20px;
}

/* 响应式图片设计 */
@media (max-width: 768px) {
    .article-image img {
        max-width: 90vw;
        height: 220px !important;
        border-radius: 12px;
    }
    
    .article-header .article-image img {
        height: 250px !important;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .article-image img {
        height: 180px !important;
        border-radius: 10px;
    }
    
    .article-header .article-image img {
        height: 200px !important;
        border-radius: 12px;
    }
}

@media (min-width: 1200px) {
    .article-image img {
        max-width: 550px;
        height: 300px !important;
    }
    
    .article-header .article-image img {
        max-width: 650px;
        height: 350px !important;
    }
}
