/* =====================================================
   Hero Section
   ===================================================== */

.news-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(24px, 5vw, 40px);
    margin-bottom: clamp(20px, 4vw, 32px);
    border-radius: var(--radius-large);
    background: linear-gradient(135deg, #437063 0%, #578e7e 50%, #7eb5a5 100%);
    color: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.news-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.news-hero__content {
    position: relative;
    z-index: 1;
}

.news-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    margin-bottom: 12px;
}

.news-hero__title {
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.news-hero__subtitle {
    margin: 8px 0 0;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    opacity: 0.9;
    font-weight: 500;
}

.news-hero__decoration {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}