/* ===================================
   ARTICLE PAGE STYLES
   =================================== */

.article-page {
    background: white;
    padding-top: 80px;
}

.article-header {
    background: linear-gradient(180deg, #f8f8f8 0%, white 100%);
    padding: 60px 0 80px;
}

.article-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.article-category {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 4px;
}

.article-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.article-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.article-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.author-block {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

.meta-details {
    display: flex;
    gap: 32px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.article-hero-visual {
    position: relative;
}

.hero-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Article Body */
.article-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 120px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
}

.article-content {
    max-width: 740px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    color: var(--primary-dark);
    font-weight: 400;
    margin-bottom: 32px;
}

.article-content h2 {
    font-size: 36px;
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 20px;
}

.article-content blockquote {
    margin: 40px 0;
    padding: 32px 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-red);
    border-radius: 8px;
}

.article-content blockquote p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.article-content blockquote cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-secondary);
}

.article-callout {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin: 48px 0;
}

.article-callout h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.stats-grid-article {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-item-article {
    text-align: center;
}

.stat-number-article {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-red);
    font-family: 'Space Grotesk', monospace;
    margin-bottom: 12px;
}

.stat-label-article {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.image-block {
    margin: 48px 0;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.image-label {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.image-caption {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.pull-quote {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    text-align: center;
    margin: 48px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.article-footer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.article-footer-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.related-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-category {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 12px;
}

.related-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-section {
    margin-bottom: 40px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.sidebar-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.author-bio {
    text-align: center;
}

.author-bio .author-avatar-large {
    margin: 0 auto 16px;
}

.author-bio h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.author-bio-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.author-social a {
    padding: 8px 16px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-dark);
    color: white;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.share-btn {
    padding: 12px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.sidebar-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sidebar-cta h3 {
    color: white;
}

.sidebar-cta p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sidebar-cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: white;
    color: #764ba2;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Newsletter CTA Section */
.article-newsletter-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.article-newsletter-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.article-newsletter-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .article-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-body {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .stats-grid-article {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 40px;
    }
    
    .article-subtitle {
        font-size: 16px;
    }
    
    .article-meta-bar {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .meta-details {
        flex-direction: column;
        gap: 16px;
    }
    
    .article-content p,
    .lead-paragraph {
        font-size: 16px;
    }
    
    .article-content h2 {
        font-size: 28px;
    }
    
    .related-articles {
        grid-template-columns: 1fr;
    }
    
    .hero-placeholder {
        height: 300px;
    }
    
    .pull-quote {
        font-size: 22px;
        padding: 24px;
    }
}
