/* ========== PRESS ARTICLE HERO ========== */
.press-hero-badge {
    display: inline-block;
    background: rgba(0, 176, 176, 0.2);
    color: #00d4d4;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.press-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.article-meta-hero {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.article-meta-hero .article-date,
.article-meta-hero .article-reading-time {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 600;
}

.article-meta-hero .article-reading-time::before {
    content: "•";
    margin-right: 20px;
    color: #00b0b0;
}

/* ========== ARTICLE CONTENT ========== */
.article-section {
    background: #ffffff;
    padding: 80px 0 120px;
}

.article-section-continued {
    padding: 80px 0 120px;
}

.article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-lead-section {
    margin-bottom: 100px;
    padding: 50px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border-left: 6px solid #00b0b0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.article-lead-section::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00b0b0 0%, #00d4d4 100%);
    border-radius: 2px;
}

.article-lead-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}

.article-lead-section .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.8;
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* ========== HERO GRID (Lead + Image) ========== */
.article-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.article-lead-section {
    margin-bottom: 0;
}

.article-lead-section .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

.article-image-featured {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15);
    position: relative;
}

.article-image-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 176, 176, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.article-image-featured img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.article-image-featured:hover img {
    transform: scale(1.05);
}

.image-caption {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin: 16px 0 0;
    padding: 16px 20px;
    background: #f8f9fa;
    border-left: 3px solid #00b0b0;
    line-height: 1.5;
}

/* ========== INLINE ARTICLE IMAGE ========== */
.article-image-inline {
    margin: 48px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.article-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.article-image-inline:hover img {
    transform: scale(1.03);
}

.image-caption-inline {
    background: #f8f9fa;
    padding: 16px 20px;
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    line-height: 1.6;
    border-left: 4px solid #00b0b0;
}

/* ========== IMAGE SIZE VARIATIONS ========== */
.article-image-inline.image-small {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-image-inline.image-medium {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-image-inline.image-large {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.article-image-inline.image-full {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}

/* ========== HERO IMAGE STYLE ========== */
.article-image-hero {
    margin: -80px -40px 60px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.article-image-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 40px 40px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    font-style: italic;
}

/* ========== SIDEBAR IMAGE STYLE ========== */
.article-image-sidebar {
    float: right;
    max-width: 400px;
    margin: 0 0 24px 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-image-sidebar img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image-sidebar .image-caption-inline {
    padding: 12px 16px;
    font-size: 0.85rem;
}

/* ========== IMAGE HIDDEN ========== */
.article-image-none {
    display: none;
}

/* ========== TWO COLUMN LAYOUT ========== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    margin-bottom: 70px;
}

.article-main {
    color: #333;
    font-size: 1.15rem;
    line-height: 1.9;
}

.article-main h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 50px 0 28px;
    line-height: 1.3;
}

.article-main h2:first-of-type {
    margin-top: 0;
}

.article-main p {
    margin-bottom: 28px;
}

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

/* ========== FULL WIDTH CONTENT ========== */
.article-full-content {
    max-width: 1000px;
    margin: 0 auto;
    color: #333;
    font-size: 1.15rem;
    line-height: 1.9;
}

.article-full-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 50px 0 28px;
    line-height: 1.3;
}

.article-full-content p {
    margin-bottom: 28px;
}

/* ========== STATS BOX ========== */
.stats-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #00b0b0;
    border-radius: 16px;
    padding: 36px 28px;
    margin-bottom: 40px;
}

.stats-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 28px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00b0b0;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* ========== ARTICLE LIST ========== */
.article-list {
    margin: 24px 0;
    padding-left: 24px;
}

.article-list li {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #333;
}

.article-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ========== QUOTE BLOCK ========== */
.article-quote {
    background: linear-gradient(135deg, #00b0b0 0%, #008f8f 100%);
    color: #ffffff;
    padding: 36px 32px;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 176, 176, 0.25);
}

.article-quote::before {
    content: '"';
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.article-quote p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

.article-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.4;
}

/* ========== SHARE BOX ========== */
.share-box {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 28px;
}

.share-box h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    color: #495057;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #00b0b0;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 176, 176, 0.3);
}

/* ========== CTA SECTION ========== */
.article-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 60px 50px;
    margin-top: 80px;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0 0 36px;
}

.article-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00b0b0 0%, #008f8f 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 176, 176, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #008f8f 0%, #00b0b0 100%);
    box-shadow: 0 6px 24px rgba(0, 176, 176, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #00b0b0;
    border: 2px solid #00b0b0;
}

.btn-secondary:hover {
    background: #00b0b0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .article-container {
        padding: 0 30px;
    }

    .article-layout {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }

    .stats-grid {
        gap: 20px;
    }

    .image-container {
        height: 450px;
    }

    .image-overlay {
        padding: 40px 30px 24px;
    }

    .image-caption-overlay {
        font-size: 0.95rem;
    }

    .article-lead-section {
        margin-bottom: 80px;
        padding: 40px 50px;
    }
    
    .article-image-hero {
        margin: -30px -30px 50px;
    }
    
    .article-image-hero img {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .share-box {
        grid-column: 1 / -1;
    }

    .image-container {
        height: 380px;
    }

    .image-overlay {
        padding: 36px 24px 20px;
    }

    .image-caption-overlay {
        font-size: 0.9rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .press-hero-title {
        font-size: 1.8rem;
    }

    .article-section {
        padding: 60px 0 80px;
    }

    .article-section-continued {
        padding: 60px 0 80px;
    }

    .article-container {
        padding: 0 20px;
    }
    
    .article-lead-section {
        margin-bottom: 60px;
        padding: 32px 28px;
        border-radius: 16px;
        border-left-width: 5px;
    }
    
    .article-lead-section .lead {
        font-size: 1.15rem;
        line-height: 1.7;
    }
    
    .article-lead-section .lead::first-letter {
        font-size: 1.6rem;
    }

    .article-main,
    .article-full-content {
        font-size: 1.05rem;
    }

    .article-main h2,
    .article-full-content h2 {
        font-size: 1.6rem;
        margin: 40px 0 20px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .stats-box {
        padding: 28px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-quote {
        padding: 28px 24px;
    }

    .article-quote::before {
        font-size: 4rem;
        top: 10px;
        left: 15px;
    }

    .article-quote p {
        font-size: 1rem;
    }

    .article-image-inline {
        margin: 36px 0;
        border-radius: 12px;
    }
    
    .article-image-inline.image-small,
    .article-image-inline.image-medium,
    .article-image-inline.image-large {
        max-width: 100%;
    }
    
    .image-caption-inline {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .article-image-hero {
        margin: -20px -20px 40px;
    }
    
    .article-image-hero img {
        height: 300px;
    }
    
    .image-caption-overlay {
        padding: 32px 20px 16px;
        font-size: 0.85rem;
    }
    
    .article-image-sidebar {
        float: none;
        max-width: 100%;
        margin: 24px 0;
    }

    // ...existing code...
}

@media (max-width: 480px) {
    .image-container {
        aspect-ratio: 1 / 1;
    }

    .image-overlay {
        padding: 24px 16px 16px;
    }

    .image-caption-overlay {
        font-size: 0.8rem;
    }
}
