.news-events-page {
    background: linear-gradient(180deg, #fffaf1 0%, #f7ead8 45%, #fffaf1 100%);
    color: var(--hi-ink, #2b1b2d);
}

.news-events-section {
    padding: clamp(64px, 8vw, 108px) 0;
}

.news-events-section--upcoming {
    padding-top: clamp(42px, 6vw, 74px);
}

.news-events-section--recent {
    background:
        radial-gradient(circle at 12% 12%, rgba(222, 238, 236, .68), transparent 32%),
        linear-gradient(135deg, #fffaf1 0%, #f4e6d2 52%, #eaf1ee 100%);
}

.news-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.news-events-archive-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.news-event-card,
.news-clip-card {
    overflow: hidden;
    border: 1px solid rgba(198, 148, 53, .22);
    border-radius: 8px;
    background: rgba(255, 252, 246, .9);
    box-shadow: 0 20px 52px rgba(82, 50, 34, .09);
}

.news-event-card__image,
.news-clip-card__image {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3e5cf;
}

.news-event-card__image img,
.news-clip-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
    transition: transform .32s ease;
}

.news-event-card:hover img,
.news-clip-card:hover img {
    transform: scale(1.035);
}

.news-event-card__date {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 76px;
    min-height: 76px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 250, 241, .94);
    color: var(--hi-maroon, #8a2f2d);
    text-align: center;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(43, 27, 45, .16);
}

.news-event-card__date strong {
    display: block;
    font-family: var(--hi-serif, Georgia, serif);
    font-size: 1.75rem;
    line-height: 1;
}

.news-event-card__date span {
    display: block;
    margin-top: 3px;
    font-size: .78rem;
}

.news-event-card__body,
.news-clip-card__body {
    padding: 24px;
}

.news-event-card h2,
.news-event-card h3,
.news-clip-card h3 {
    margin: 0 0 10px;
    color: var(--hi-ink, #2b1b2d);
    font-size: clamp(1.22rem, 1.65vw, 1.52rem);
    line-height: 1.38;
}

.news-event-card p,
.news-clip-card p {
    margin: 0;
    color: #62534a;
    line-height: 1.75;
}

.news-event-card__meta {
    margin: 0 0 14px;
    color: var(--hi-maroon, #8a2f2d);
    font-weight: 800;
    line-height: 1.55;
}

.news-range-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    margin-bottom: 30px;
}

.news-range-tab {
    min-height: 64px;
    border: 1px solid rgba(121, 43, 42, .12);
    border-radius: 8px;
    padding: 14px 18px;
    background: rgba(255, 252, 246, .82);
    color: var(--hi-maroon, #8a2f2d);
    cursor: pointer;
    font: inherit;
    font-size: clamp(1.04rem, 1.6vw, 1.35rem);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(82, 50, 34, .07);
}

.news-range-tab.is-active,
.news-range-tab:hover,
.news-range-tab:focus-visible {
    border-color: var(--hi-maroon, #8a2f2d);
    background: var(--hi-maroon, #8a2f2d);
    color: #fffaf1;
    outline: none;
}

.news-range-tab span {
    display: block;
    margin-top: 4px;
    color: inherit;
    font-size: .78rem;
    font-weight: 800;
    opacity: .82;
}
.news-clips-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.news-clip-card {
    cursor: pointer;
    text-align: left;
}

.news-clip-card__image {
    aspect-ratio: 4 / 5;
}

.news-clip-card__image img {
    object-fit: cover;
    object-position: top center;
}

.news-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(36, 22, 38, .75);
}

.news-modal.is-open {
    display: flex;
}

.news-modal__dialog {
    width: min(100%, 1050px);
    max-height: min(90vh, 880px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
}

.news-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(121, 43, 42, .14);
}

.news-modal__title {
    margin: 0;
    color: var(--hi-ink, #2b1b2d);
    font-size: 1.08rem;
    line-height: 1.4;
}

.news-modal__close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(121, 43, 42, .16);
    border-radius: 999px;
    background: rgba(255, 252, 246, .9);
    color: var(--hi-maroon, #8a2f2d);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.news-modal__body {
    overflow: auto;
    padding: 18px;
    background: #211724;
}

.news-modal__body img {
    display: block;
    width: min(100%, 920px);
    height: auto;
    margin: 0 auto;
    border-radius: 4px;
}

@media (max-width: 1100px) {
    .news-range-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    margin-bottom: 30px;
}

.news-range-tab {
    min-height: 64px;
    border: 1px solid rgba(121, 43, 42, .12);
    border-radius: 8px;
    padding: 14px 18px;
    background: rgba(255, 252, 246, .82);
    color: var(--hi-maroon, #8a2f2d);
    cursor: pointer;
    font: inherit;
    font-size: clamp(1.04rem, 1.6vw, 1.35rem);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(82, 50, 34, .07);
}

.news-range-tab.is-active,
.news-range-tab:hover,
.news-range-tab:focus-visible {
    border-color: var(--hi-maroon, #8a2f2d);
    background: var(--hi-maroon, #8a2f2d);
    color: #fffaf1;
    outline: none;
}

.news-range-tab span {
    display: block;
    margin-top: 4px;
    color: inherit;
    font-size: .78rem;
    font-weight: 800;
    opacity: .82;
}
.news-clips-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .news-events-grid,
    .news-range-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    margin-bottom: 30px;
}

.news-range-tab {
    min-height: 64px;
    border: 1px solid rgba(121, 43, 42, .12);
    border-radius: 8px;
    padding: 14px 18px;
    background: rgba(255, 252, 246, .82);
    color: var(--hi-maroon, #8a2f2d);
    cursor: pointer;
    font: inherit;
    font-size: clamp(1.04rem, 1.6vw, 1.35rem);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(82, 50, 34, .07);
}

.news-range-tab.is-active,
.news-range-tab:hover,
.news-range-tab:focus-visible {
    border-color: var(--hi-maroon, #8a2f2d);
    background: var(--hi-maroon, #8a2f2d);
    color: #fffaf1;
    outline: none;
}

.news-range-tab span {
    display: block;
    margin-top: 4px;
    color: inherit;
    font-size: .78rem;
    font-weight: 800;
    opacity: .82;
}
.news-clips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .news-events-grid,
    .news-range-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    margin-bottom: 30px;
}

.news-range-tab {
    min-height: 64px;
    border: 1px solid rgba(121, 43, 42, .12);
    border-radius: 8px;
    padding: 14px 18px;
    background: rgba(255, 252, 246, .82);
    color: var(--hi-maroon, #8a2f2d);
    cursor: pointer;
    font: inherit;
    font-size: clamp(1.04rem, 1.6vw, 1.35rem);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(82, 50, 34, .07);
}

.news-range-tab.is-active,
.news-range-tab:hover,
.news-range-tab:focus-visible {
    border-color: var(--hi-maroon, #8a2f2d);
    background: var(--hi-maroon, #8a2f2d);
    color: #fffaf1;
    outline: none;
}

.news-range-tab span {
    display: block;
    margin-top: 4px;
    color: inherit;
    font-size: .78rem;
    font-weight: 800;
    opacity: .82;
}
.news-clips-grid {
        grid-template-columns: 1fr;
    }
}


