.eop-programma {
    --eop-text: currentColor;
    --eop-line: color-mix(in srgb, currentColor 24%, transparent);
    --eop-muted: color-mix(in srgb, currentColor 68%, transparent);
    --eop-hover-bg: color-mix(in srgb, currentColor 5%, transparent);
    --eop-radius: 0px;
    width: 100%;
    color: var(--eop-text);
    font-family: inherit;
}

.eop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0 0 34px;
}

.eop-filter {
    appearance: none;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: inherit;
    padding: 3px 0 6px;
    font: inherit;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    opacity: .45;
    transition: opacity .18s ease, border-color .18s ease;
}

.eop-filter:hover,
.eop-filter:focus-visible,
.eop-filter.is-active {
    opacity: 1;
}

.eop-filter.is-active {
    border-bottom-color: currentColor;
}

.eop-filter:focus-visible,
.eop-event__link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.eop-list {
    border-top: 1px solid var(--eop-line);
}

.eop-event {
    position: relative;
    border-bottom: 1px solid var(--eop-line);
    overflow: clip;
}

.eop-event[hidden] {
    display: none !important;
}

.eop-event__link {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(92px, 130px) minmax(0, 1fr) minmax(122px, auto);
    gap: clamp(20px, 3vw, 48px);
    align-items: center;
    min-height: 116px;
    padding: 23px 0;
    color: inherit;
    text-decoration: none !important;
    transition: padding .22s ease, background-color .22s ease;
}

.eop-event__link::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0 -24px;
    background: var(--eop-hover-bg);
    opacity: 0;
    transition: opacity .22s ease;
}

.eop-event:hover .eop-event__link::before,
.eop-event:focus-within .eop-event__link::before {
    opacity: 1;
}

.eop-event__date {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
    line-height: 1;
}

.eop-event__day {
    font-size: clamp(31px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: -0.055em;
}

.eop-event__month {
    font-size: clamp(16px, 1.8vw, 23px);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: lowercase;
}

.eop-event__content {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.eop-event__title {
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    font-size: clamp(24px, 3.2vw, 48px);
    font-weight: 780;
    line-height: .98;
    letter-spacing: -0.045em;
}

.eop-event__subtitle {
    margin-top: 8px;
    color: var(--eop-muted);
    font-size: clamp(14px, 1.4vw, 19px);
    font-weight: 450;
    line-height: 1.3;
    letter-spacing: -0.012em;
}

.eop-event__action {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    white-space: nowrap;
    text-align: right;
}

.eop-event__status {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.eop-event__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--eop-line);
    border-radius: 999px;
    font-size: 17px;
    transition: transform .22s ease, border-color .22s ease;
}

.eop-event:hover .eop-event__arrow,
.eop-event:focus-within .eop-event__arrow {
    transform: translate(3px, -3px);
    border-color: currentColor;
}

.eop-event__visual {
    position: absolute;
    z-index: 1;
    right: clamp(125px, 13vw, 205px);
    top: 50%;
    width: clamp(126px, 15vw, 220px);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--eop-radius);
    opacity: 0;
    transform: translateY(-44%) rotate(1.5deg) scale(.96);
    pointer-events: none;
    transition: opacity .22s ease, transform .28s ease;
    box-shadow: 0 16px 38px rgba(0,0,0,.15);
}

.eop-event__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eop-event:hover .eop-event__visual,
.eop-event:focus-within .eop-event__visual {
    opacity: 1;
    transform: translateY(-50%) rotate(0deg) scale(1);
}

.eop-empty-filter,
.eop-message {
    padding: 26px 0;
    font-size: 16px;
    color: var(--eop-muted, currentColor);
}

@media (max-width: 900px) {
    .eop-event__link {
        grid-template-columns: 86px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .eop-event__visual {
        display: none;
    }

    .eop-event__status {
        display: none;
    }
}

@media (max-width: 620px) {
    .eop-filters {
        gap: 8px 18px;
        margin-bottom: 24px;
    }

    .eop-filter {
        font-size: 18px;
    }

    .eop-event__link {
        grid-template-columns: 64px minmax(0, 1fr) 32px;
        gap: 14px;
        min-height: 92px;
        padding: 19px 0;
    }

    .eop-event__date {
        display: block;
    }

    .eop-event__day {
        display: block;
        font-size: 34px;
        line-height: .9;
    }

    .eop-event__month {
        display: block;
        margin-top: 5px;
        font-size: 15px;
    }

    .eop-event__title {
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.02;
    }

    .eop-event__subtitle {
        margin-top: 6px;
        font-size: 14px;
    }

    .eop-event__arrow {
        width: 30px;
        height: 30px;
        border: 0;
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eop-programma *,
    .eop-programma *::before,
    .eop-programma *::after {
        transition: none !important;
    }
}
