.event-archive {
    padding: 68px 0 82px;
    background: linear-gradient(180deg, #fff 0%, #f8f4ef 100%);
}

.event-archive__header {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.event-archive__eyebrow {
    display: inline-block;
    margin-bottom: 9px;
    color: #9b1c1f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-archive__header h1 {
    margin: 0 0 12px;
    color: #291b1b;
    font-family: "Philosopher", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
}

.event-archive__header p {
    margin: 0;
    color: #6e6262;
    font-size: 16px;
    line-height: 1.7;
}

.event-year-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 38px;
}

.event-year-tabs a {
    min-width: 134px;
    padding: 11px 18px;
    border: 1px solid #dfd4cf;
    border-radius: 999px;
    background: #fff;
    color: #5b4b4b;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.event-year-tabs a:hover,
.event-year-tabs a:focus,
.event-year-tabs a.is-active {
    border-color: #7a0909;
    background: #7a0909;
    color: #fff;
    transform: translateY(-2px);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.event-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(84, 52, 52, .09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(62, 34, 34, .10);
    transition: box-shadow .3s ease, transform .3s ease;
}

.event-card:hover {
    box-shadow: 0 18px 42px rgba(62, 34, 34, .18);
    transform: translateY(-6px);
}

.event-card > a {
    display: flex;
    height: 100%;
    color: inherit;
    flex-direction: column;
}

.event-card__media {
    position: relative;
    overflow: hidden;
    background: #eee7e3;
}

.event-card__media img {
    display: block;
    width: 100%;
    height: 238px;
    object-fit: cover;
    transition: transform .45s ease;
}

.event-card:hover .event-card__media img {
    transform: scale(1.055);
}

.event-card__year {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(61, 11, 12, .88);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
}

.event-card__content {
    display: flex;
    min-height: 142px;
    padding: 22px 22px 20px;
    flex: 1;
    flex-direction: column;
}

.event-card__title {
    margin: 0 0 18px;
    color: #352222;
    font-family: "Philosopher", serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}

.event-card__link {
    margin-top: auto;
    color: #8b1518;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
}

.event-card__link i {
    margin-left: 6px;
    transition: transform .25s ease;
}

.event-card:hover .event-card__link i {
    transform: translateX(4px);
}

.event-archive__empty {
    grid-column: 1 / -1;
    padding: 44px;
    border: 1px dashed #cdbfba;
    border-radius: 14px;
    background: #fff;
    color: #6e6262;
    text-align: center;
}

@media (max-width: 991px) {
    .event-archive {
        padding: 54px 0 66px;
    }

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .event-archive__header h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .event-archive {
        padding: 42px 0 52px;
    }

    .event-archive__header {
        margin-bottom: 24px;
    }

    .event-archive__header h1 {
        font-size: 31px;
    }

    .event-year-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 28px;
    }

    .event-year-tabs a {
        min-width: 0;
        padding: 10px 8px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-card__media img {
        height: 228px;
    }
}
