/* News Detail Desktop Styles (>=1200px) */
:root {
    --bg-light: #fdfcfb;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-gold: #cba174;
    --border-color: #e2e8f0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: 'Noto Sans SC', sans-serif;
}

/* Hero Section */
.article-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 160px 0 80px;
    color: white;
    position: relative;
}

.article-hero .container {
    margin: 0 250px;
    width: auto;
    max-width: none;
}



/* Sticky Back Button - Matches Event Detail */
.back-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* inline generic shadow var */
    text-decoration: none;
    pointer-events: auto;
}

.sticky-nav-container {
    position: sticky;
    top: 110px;
    z-index: 100;
    pointer-events: none;
    margin-bottom: 40px;
    margin-top: 40px;
    /* Center text vertically in gap */
    max-width: 1200px;
    /* Match article-container max-width */
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px 0 16px;
    /* Reduced to align label text with content */
    box-sizing: border-box;
    display: flex;
    /* Force flex */
    justify-content: flex-start;
    /* Force left align */
    align-items: center;
    width: 100%;
    /* Force full width to prevent shrink-wrap centering */
    text-align: left;
    /* Legacy fallback */
}

.back-link-btn:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transform: translateX(-5px);
}

/* Old Back Link Removed */

.article-category {
    display: inline-block;
    background: rgba(203, 161, 116, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(203, 161, 116, 0.5);
    color: #f0e6d8;
    font-weight: 600;
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 40px;
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main Content */
.article-container {
    background: white;
    margin: 40px auto;
    max-width: 1200px;
    /* Centered content column */
    padding: 80px 60px;
    position: relative;
    z-index: 10;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin: 50px 0 25px;
    font-weight: 700;
}

.article-body blockquote {
    border-left: 4px solid var(--accent-gold);
    margin: 40px 0;
    padding: 20px 30px;
    background: #f8fafc;
    font-style: italic;
    font-size: 1.25rem;
    color: #475569;
}

.article-source {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Related News */
.related-section {
    padding: 80px 0;
    margin: 0 250px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-image {
    height: 200px;
    background-color: #e2e8f0;
    background-size: cover;
    background-position: center;
}

.related-content {
    padding: 25px;
}

.related-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: block;
}

.related-title {
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 15px;
}

.read-link {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
}

/* Side Navigation Buttons (Desktop) */
.news-side-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    backdrop-filter: blur(4px);
}

.news-side-nav:hover {
    opacity: 1;
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.news-side-nav.prev {
    left: 40px;
}

.news-side-nav.next {
    right: 40px;
}

.news-side-nav svg {
    width: 28px;
    height: 28px;
    stroke: #64748b;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s;
}

.news-side-nav:hover svg {
    stroke: #0f172a;
}