.events-page,
.event-detail {
    padding:
        72px
        24px
        100px;

    background:
        #f8faf8;
}

.events-page-shell,
.event-detail-shell {
    width: 100%;

    max-width: 1240px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   KICKER
   ========================================================= */

.events-kicker {
    display: flex;

    align-items: center;

    gap: 18px;

    width: max-content;

    max-width: 100%;

    margin:
        0
        0
        20px;

    color: #557366;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .22em;

    text-transform: uppercase;
}

.events-kicker::after {
    content: "";

    display: block;

    width: 58px;
    height: 1px;

    background: #b49a61;
}


/* =========================================================
   ARCHIVE HEADER
   ========================================================= */

.events-page-header {
    max-width: 760px;

    margin-bottom: 42px;
}

.events-page-header h1,
.event-detail-header h1 {
    margin: 0;

    color: #15281f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            38px,
            5vw,
            62px
        );

    font-weight: 500;

    line-height: 1.06;

    letter-spacing: -.025em;
}

.events-page-lead {
    max-width: 650px;

    margin:
        18px
        0
        0;

    color: #6c7d74;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   EVENT CARDS
   ========================================================= */

.events-public-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}

.event-public-card {
    overflow: hidden;

    min-width: 0;

    border:
        1px solid
        #e1e8e3;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 32px
        rgba(28, 51, 41, .045);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.event-public-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 16px 38px
        rgba(28, 51, 41, .075);
}

.event-public-card.is-past {
    opacity: .72;
}

.event-public-image {
    display: block;

    overflow: hidden;

    width: 100%;

    aspect-ratio:
        16 / 9;

    background:
        #eef3ef;
}

.event-public-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.event-public-card:hover
.event-public-image img {
    transform:
        scale(1.025);
}

.event-public-placeholder {
    display: grid;

    place-items: center;

    width: 100%;
    height: 100%;

    color:
        rgba(36, 88, 66, .22);

    font-family:
        Georgia,
        serif;

    font-size: 38px;
}

.event-public-body {
    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr);

    gap: 18px;

    padding: 22px;
}

.event-public-date {
    display: flex;

    align-items: center;
    flex-direction: column;

    padding-right: 14px;

    border-right:
        1px solid
        #e6ebe8;
}

.event-public-date strong {
    color: #244f3e;

    font-size: 24px;

    line-height: 1;
}

.event-public-date span {
    margin-top: 6px;

    color: #8a9891;

    font-size: 9px;
    font-weight: 750;
}

.event-public-copy {
    min-width: 0;
}

.event-public-meta {
    display: flex;

    gap: 6px;

    min-height: 19px;
}

.event-public-featured,
.event-public-past {
    display: inline-flex;

    align-items: center;

    width: max-content;

    padding:
        3px
        7px;

    border-radius:
        999px;

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .05em;
}

.event-public-featured {
    background: #fff2cc;

    color: #88651d;
}

.event-public-past {
    background: #edf0ee;

    color: #79847f;
}

.event-public-card h2 {
    margin:
        5px
        0
        8px;

    font-size: 18px;

    line-height: 1.35;
}

.event-public-card h2 a {
    color: #19372b;

    text-decoration: none;
}

.event-public-location {
    margin:
        0
        0
        9px;

    color: #47715f;

    font-size: 11px;
    font-weight: 700;
}

.event-public-summary {
    margin:
        0
        0
        14px;

    color: #6d7d75;

    font-size: 12px;

    line-height: 1.62;
}

.event-public-more {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #315f4b;

    font-size: 11px;
    font-weight: 750;

    text-decoration: none;
}

.events-public-empty {
    padding: 34px;

    border:
        1px dashed
        #d8e2dc;

    border-radius: 15px;

    color: #819188;

    text-align: center;
}


/* =========================================================
   DETAIL
   ========================================================= */

.event-detail-back {
    display: inline-flex;

    margin-bottom: 38px;

    color: #557366;

    font-size: 11px;
    font-weight: 750;

    text-decoration: none;
}

.event-detail-header {
    max-width: 920px;
}

.event-detail-meta {
    display: flex;

    gap: 42px;

    flex-wrap: wrap;

    margin-top: 34px;

    padding-top: 24px;

    border-top:
        1px solid
        #dfe7e2;
}

.event-detail-meta div {
    display: grid;

    gap: 5px;
}

.event-detail-meta small {
    color: #8a9991;

    font-size: 9px;
    font-weight: 750;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.event-detail-meta strong {
    color: #284b3c;

    font-size: 13px;
}

.event-detail-image {
    overflow: hidden;

    width: 100%;

    max-height: 560px;

    margin:
        44px
        0
        0;

    border-radius: 22px;
}

.event-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-height: 560px;

    object-fit: cover;
}

.event-detail-layout {
    max-width: 820px;

    margin:
        46px
        auto
        0;
}

.event-detail-lead {
    margin:
        0
        0
        30px;

    color: #415d50;

    font-family:
        Georgia,
        serif;

    font-size: 20px;

    line-height: 1.65;
}

.public-rich-content {
    color: #33483e;

    font-size: 16px;

    line-height: 1.8;
}

.public-rich-content img {
    max-width: 100%;

    height: auto;
}


@media (max-width: 950px) {

    .events-public-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 640px) {

    .events-page,
    .event-detail {
        padding:
            48px
            18px
            70px;
    }

    .events-public-grid {
        grid-template-columns:
            1fr;
    }

    .event-detail-meta {
        gap: 22px;

        flex-direction: column;
    }

}
