/* =========================================
   NEWSROOM PAGE - Premium Layout
   ========================================= */
:root {
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.page-banner {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-dark, #0f172a);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

/* Featured Post */
.news-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.news-feature:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.news-feature-thumb {
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
}

.news-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-feature:hover .news-feature-thumb img {
    transform: scale(1.04);
}

.news-feature-body {
    padding: 2rem 3rem 2rem 1rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* Premium Card Design */
.news-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    /* The transform is handled dynamically by JS for a 3D effect */
}

.news-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-dark, #0056b3);
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Band */
.cta-band {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Responsiveness */
@media (max-width: 992px) {
    .news-feature {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .news-feature-thumb {
        min-height: 250px;
    }

    .news-feature-body {
        padding: 1rem;
    }
}