/* ==========================================================================
   News Page Specific Structural Engine
   ========================================================================== */
.news-hero {
    background: radial-gradient(circle at 80% 30%, rgba(0, 180, 216, 0.2), transparent 60%),
                linear-gradient(180deg, rgba(10, 17, 40, 0.9) 0%, var(--brand-blue-dark) 100%),
                url('https://lh3.googleusercontent.com/a1kpG6xPn5bHkrQHN8lCVxaWUFMyXAlCR_M3TqIlOgN1f9UHIyEIf1D54GwOEjokEWHFHhBrW32rtBJod92KPT7YSQQhKHo84u2ExAqIBA=s0-e365');
    background-size: cover;
    background-position: center;
}

.news-board {
    padding: 120px 0;
    background-color: #060b18;
    border-top: 2px solid rgba(0, 180, 216, 0.1);
}

.news-feed-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Feature News Block Card Layout */
.main-news-card {
    display: flex;
    flex-direction: column;
    background: var(--brand-blue-deep);
    border: 2px solid rgba(0, 180, 216, 0.2);
    border-radius: var(--border-radius-box);
    overflow: hidden;
    transition: var(--transition-bounce);
    width: 100%;
}

.main-news-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-teal);
    box-shadow: 0 12px 40px rgba(0, 245, 212, 0.15);
}

.news-img-frame {
    width: 100%;
    max-height: 440px;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-body {
    padding: clamp(24px, 5vw, 48px);
}

.news-card-body h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.news-card-body p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .news-board {
        padding: 60px 0;
    }
}