/* Article Page Styles */

.article-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(60,10,10,0.88)), center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.article-hero .article-category {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.article-hero h1 {
    color: var(--white);
    font-size: 2.6rem;
    max-width: 820px;
    margin: 0 auto 16px;
    line-height: 1.2;
}

.article-hero .article-meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--parchment);
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--red);
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { color: #999; margin: 0 8px; }

/* Article Body */
.article-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-body h2 {
    font-size: 1.75rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid var(--red);
    color: var(--black);
}

.article-body h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--black);
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
}

.article-body ul, .article-body ol {
    margin: 0 0 1.2rem 1.5rem;
}

.article-body li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 6px;
}

/* Pull Quote */
.pull-quote {
    border-left: 5px solid var(--red);
    background-color: #fdf4f4;
    padding: 24px 28px;
    margin: 36px 0;
    border-radius: 0 6px 6px 0;
}

.pull-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
}

/* Stat Callout */
.stat-callouts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0;
}

.stat-callout {
    background-color: var(--parchment);
    border-top: 4px solid var(--red);
    padding: 24px 20px;
    border-radius: 6px;
    text-align: center;
}

.stat-callout .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    display: block;
    margin-bottom: 6px;
}

.stat-callout .stat-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Country Fact Card */
.country-section {
    margin: 48px 0;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.country-section-header {
    background-color: var(--black);
    color: var(--white);
    padding: 16px 24px;
}

.country-section-header h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    padding: 0;
    border: none;
}

.country-section-body {
    padding: 24px;
}

.country-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background-color: var(--parchment);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.country-fact {
    text-align: center;
}

.country-fact .fact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    display: block;
    margin-bottom: 4px;
}

.country-fact .fact-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
}

/* Article section image */
.article-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    margin: 32px 0;
    display: block;
}

/* Download Section */
.download-section {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.download-section h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.download-section p {
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto 28px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--red);
    color: var(--white);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-download:hover { background-color: #800606; }

.back-to-insights {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 20px;
}

.back-to-insights:hover { text-decoration: underline; }

/* Article Nav */
.article-nav {
    background-color: var(--parchment);
    padding: 16px 0;
    border-bottom: 1px solid #eaeaea;
}

.article-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .article-hero h1 { font-size: 1.8rem; }
    .stat-callouts { grid-template-columns: 1fr; }
    .country-facts { grid-template-columns: repeat(2, 1fr); }
    .article-body h2 { font-size: 1.4rem; }
}
