:root {
    --color-black: #000;
    --color-white: #fff;
    --color-green: #c7f000;

    --text-white-92: rgba(255, 255, 255, 0.92);
    --text-white-68: rgba(255, 255, 255, 0.68);

    --radius-sm: 3px;
    --transition: all 0.3s ease;
}

/* =========================
   BASE
========================= */
.news-hero-section,
.news-grid-section,
.upcoming-events-section {
    position: relative;
    background: var(--color-black);
    overflow: hidden;
}

.news-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.news-grid-card,
.upcoming-event-card {
    height: 100%;
}

.news-grid-image-link,
.upcoming-event-image-link {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

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

.news-grid-card:hover .news-grid-image,
.upcoming-event-card:hover .upcoming-event-image {
    transform: scale(1.03);
    opacity: 0.92;
}

.news-grid-title a,
.upcoming-event-card-title a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* =========================
   NEWS HERO
========================= */
.news-hero-section {
    min-height: 560px;
    display: flex;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.news-hero-title {
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-hero-text {
    max-width: 620px;
    margin: 0;
    color: var(--text-white-92);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   NEWS GRID
========================= */
.news-grid-section {
    padding: 90px 0 100px;
}

.news-grid-image-link {
    margin-bottom: 18px;
}

.news-grid-image {
    height: 220px;
}

.news-grid-body {
    padding-right: 8px;
}

.news-grid-title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.news-grid-text {
    margin: 0;
    color: var(--text-white-68);
    font-size: 14px;
    line-height: 1.85;
}

/* =========================
   UPCOMING EVENTS
========================= */
.upcoming-events-section {
    padding: 90px 0 100px;
}

.upcoming-events-header {
    margin-bottom: 40px;
}

.upcoming-events-title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.upcoming-event-image-link {
    margin-bottom: 16px;
}

.upcoming-event-image {
    height: 210px;
}

.upcoming-event-body {
    padding-right: 8px;
}

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

.upcoming-event-text {
    margin: 0;
    color: var(--text-white-68);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991.98px) {
    .news-hero-section {
        min-height: 460px;
    }

    .news-hero-title {
        font-size: 54px;
    }

    .news-hero-text {
        max-width: 560px;
        font-size: 13px;
    }

    .news-grid-section,
    .upcoming-events-section {
        padding: 70px 0 80px;
    }

    .news-grid-image {
        height: 210px;
    }

    .news-grid-title {
        font-size: 20px;
    }

    .upcoming-events-title {
        font-size: 52px;
    }

    .upcoming-event-image {
        height: 200px;
    }

    .upcoming-event-card-title {
        font-size: 18px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 575.98px) {
    .news-hero-section {
        min-height: 380px;
        padding: 40px 0;
        background-position: center center;
    }

    .news-hero-title {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .news-hero-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .news-grid-section,
    .upcoming-events-section {
        padding: 50px 0 60px;
    }

    .news-grid-image {
        height: 200px;
    }

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

    .news-grid-text,
    .upcoming-event-text {
        font-size: 13px;
        line-height: 1.75;
    }

    .upcoming-events-header {
        margin-bottom: 28px;
    }

    .upcoming-events-title {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .upcoming-event-image {
        height: 190px;
    }

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

    .upcoming-event-text {
        line-height: 1.7;
    }
}