:root {
    --news-green: #c7f000;
    --news-bg: #000000;
    --news-card-bg: rgba(14, 14, 14, 0.95);
    --news-card-border: rgba(255, 255, 255, 0.08);
    --news-text: #ffffff;
    --news-text-soft: rgba(255, 255, 255, 0.72);
    --news-text-muted: rgba(255, 255, 255, 0.55);
    --news-text-faint: rgba(255, 255, 255, 0.42);
    --news-radius: 4px;
    --news-transition: all 0.3s ease;
}

/* =========================
   PAGE
========================= */
.news-page {
    background: var(--news-bg);
    color: var(--news-text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.news-accent {
    color: var(--news-green);
}

/* =========================
   SHARED TYPOGRAPHY
========================= */
.news-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--news-green);
}

.news-eyebrow-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--news-green);
    flex-shrink: 0;
}

.news-section-title {
    margin: 0;
    font-size: 55px;
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--news-text);
}

.news-section-desc {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--news-text-muted);
    text-align: right;
}

.news-section-header {
    margin-bottom: 48px;
}

.news-empty-message {
    margin: 0;
    text-align: center;
    color: var(--news-text-muted);
    font-size: 14px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--news-text);
    transition: var(--news-transition);
}

.news-card-link span {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.news-card-link:hover {
    color: var(--news-green);
}

.news-card-link:hover span {
    transform: translateX(4px);
}

/* =========================
   DECORATIVE GLOWS
========================= */
.news-section-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 240, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.news-section-glow--left {
    top: 80px;
    left: -180px;
}

.news-section-glow--right {
    top: 120px;
    right: -160px;
}

/* =========================
   HERO
========================= */
.news-hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 72px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.88) 85%,
        rgba(0, 0, 0, 1) 100%
    );
}

.news-hero-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(199, 240, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.news-hero-section .container {
    position: relative;
    z-index: 2;
}

.news-hero-title {
    margin: 0;
    font-size: 65px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--news-text);
}

.news-hero-lead {
    margin: 10px 0px;
    margin: 35px 0px 8px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--news-text-soft);
 }

/* =========================
   EVENTS SECTION
========================= */
.news-events-section {
    position: relative;
    padding: 90px 0 100px;
    background: var(--news-bg);
    overflow: hidden;
}

.news-events-section .container {
    position: relative;
    z-index: 1;
}

.news-event-card,
.news-article-card,
.news-press-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-event-card.is-visible,
.news-article-card.is-visible,
.news-press-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.news-event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-event-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--news-radius);
    margin-bottom: 20px;
}

.news-event-image {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.35s ease;
}

.news-event-card:hover .news-event-image {
    transform: scale(1.04);
    opacity: 0.9;
}

.news-event-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--news-text);
    backdrop-filter: blur(4px);
}

.news-event-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 4px;
}

.news-event-category {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--news-text-faint);
}

.news-event-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.news-event-title a {
    color: var(--news-text);
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-event-title a:hover {
    color: var(--news-green);
}

.news-event-text {
    margin: 0;
    flex: 1;
    font-size: 13px;
    line-height: 1.8;
    color: var(--news-text-muted);
}

/* =========================
   ARTICLES SECTION
========================= */
.news-articles-section {
    position: relative;
    padding: 90px 0 100px;
    background: var(--news-bg);
    overflow: hidden;
}

.news-articles-section .container {
    position: relative;
    z-index: 1;
}

.news-article-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-article-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--news-radius);
    margin-bottom: 22px;
}

.news-article-image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.35s ease;
}

.news-article-card:hover .news-article-image {
    transform: scale(1.03);
    opacity: 0.9;
}

.news-article-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 12px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--news-text);
    backdrop-filter: blur(4px);
}

.news-article-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 8px;
}

.news-article-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.news-article-title a {
    color: var(--news-text);
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-article-title a:hover {
    color: var(--news-green);
}

.news-article-text {
    margin: 0;
    flex: 1;
    font-size: 13px;
    line-height: 1.85;
    color: var(--news-text-muted);
}

/* =========================
   PRESS SECTION
========================= */
.news-press-section {
    position: relative;
    padding: 90px 0 110px;
    background: var(--news-bg);
}

.news-press-card {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 32px 28px 28px;
    background: var(--news-card-bg);
    border: 1px solid var(--news-card-border);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.news-press-card:hover {
    border-color: rgba(199, 240, 0, 0.25);
    box-shadow: inset 0 0 0 1px rgba(199, 240, 0, 0.08);
}

.news-press-quote-icon {
    margin-bottom: 18px;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--news-green);
    font-family: Georgia, 'Times New Roman', serif;
}

.news-press-quote {
    flex: 1;
    margin: 0 0 28px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--news-text);
}

.news-press-source {
    margin: 0;
    font-style: normal;
    text-align: right;
}

.news-press-source-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--news-text-muted);
    transition: var(--news-transition);
}

.news-press-source-link span {
    transition: transform 0.25s ease;
}

.news-press-source-link:hover {
    color: var(--news-green);
}

.news-press-source-link:hover span {
    transform: translateX(4px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 991.98px) {
    .news-hero-section {
        min-height: 440px;
        padding: 120px 0 56px;
    }

    .news-hero-lead {
        text-align: left;
    }

    .news-section-desc {
        text-align: left;
    }

    .news-section-header {
        margin-bottom: 36px;
    }

    .news-events-section,
    .news-articles-section,
    .news-press-section {
        padding: 70px 0 80px;
    }

    .news-event-image {
        height: 280px;
    }

    .news-article-image {
        height: 340px;
    }

    .news-section-glow {
        width: 280px;
        height: 280px;
    }
}

/* =========================
   MOBILE
========================= */
@media (prefers-reduced-motion: reduce) {
    .news-event-card,
    .news-article-card,
    .news-press-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 575.98px) {
    .news-hero-section {
        min-height: 380px;
        padding: 100px 0 48px;
    }

    .news-hero-title {
        letter-spacing: 2px;
    }

    .news-hero-lead {
        font-size: 12px;
        line-height: 1.7;
    }

    .news-section-title {
        letter-spacing: 2px;
    }

    .news-section-header {
        margin-bottom: 28px;
    }

    .news-events-section,
    .news-articles-section,
    .news-press-section {
        padding: 50px 0 60px;
    }

    .news-event-image {
        height: 240px;
    }

    .news-event-title {
        font-size: 17px;
    }

    .news-article-image {
        height: 260px;
    }

    .news-article-title {
        font-size: 18px;
    }

    .news-event-text,
    .news-article-text {
        font-size: 12px;
        line-height: 1.75;
    }

    .news-press-card {
        padding: 24px 20px 22px;
    }

    .news-press-quote {
        font-size: 16px;
    }

    .news-press-quote-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .news-section-glow {
        display: none;
    }
}
