.agenda-carousel__title--wrapper {
    margin-bottom: 10px;
}

.agenda-carousel__title {
    margin-bottom: 0;
    color: var(--gold);
}

.agenda-carousel__subtitle--wrapper {
    margin-bottom: 60px;
}

.agenda-carousel__subtitle {
    margin-bottom: 0;
    text-transform: uppercase;
}

.agenda-carousel__carousel--wrapper {
    position: relative;
    margin: 0 -22.5px;
}

.agenda-carousel__carousel {
    overflow: hidden;
}

.agenda-carousel__carousel .card__card {
    height: auto;
    padding: 0 22.5px;
    margin: 0;
    cursor: pointer;
}

.agenda-carousel__carousel .card__background--wrapper {
    padding: 0 22.5px;
}

.agenda-carousel__carousel .card__content {
    padding: 0 52.5px;
}

.agenda-carousel__carousel .card__card--title {
    margin-bottom: 12px;
}

.agenda-carousel__carousel .card__card--date {
    margin-bottom: 0;
}

.agenda-carousel .swiper-button-prev {
    top: -60px;
    left: unset;
    right: 92.5px;
}

.agenda-carousel .swiper-button-next {
    top: -60px;
    right: 22.5px;
}

.agenda-carousel .swiper-button-prev.hidden, .agenda-carousel .swiper-button-next.hidden {
    visibility: hidden;
    opacity: 0;
}

.agenda-carousel .swiper-button-prev:after, .agenda-carousel .swiper-button-next:after {
    content: '';
}

.agenda-carousel__popups {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 400ms;
}

.agenda-carousel__popups.hide-first {
    opacity: 0;
    transition: none;
}

.agenda-carousel__popups.show {
    opacity: 1;
    visibility: visible;
}

.agenda-carousel__popup--background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.agenda-carousel__popup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 999;
    max-width: 600px;
    visibility: hidden;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: all ease 400ms;
}

.agenda-carousel__popup.show {
    visibility: visible;
}

.agenda-carousel__popup--image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.agenda-carousel__popup--title {
    margin: 10px 0;
    text-align: center;
    color: var(--gold);
}

.agenda-carousel__popup--date {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.agenda-carousel__popup--date svg {
    margin-right: 12px;
}

.agenda-carousel__popup--content {
    margin: 0 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(172, 136, 16, 0.2);
    text-align: center;
}

.agenda-carousel__popup--content p:last-child {
    margin-bottom: 40px;
}

.agenda-carousel__popup--button {
    position: absolute;
    right: 0;
    top: 0;
}

.agenda-carousel__popup--button__close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: none;
    background: var(--gold);
}

.agenda-carousel__popup--button-inner {
    position: relative;
    width: 30px;
    height: 2px;
    background: var(--white);
    transform: rotate(45deg);
}

.agenda-carousel__popup--button-inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .agenda-carousel__carousel {
        overflow: visible;
    }

    .agenda-carousel__carousel--wrapper {
        margin: 0 -7px;
    }

    .agenda-carousel__carousel .card__card, .agenda-carousel__carousel .card__background--wrapper {
        padding: 0 7px;
    }

    .agenda-carousel__carousel .card__content {
        padding: 0 27px;
    }

    .agenda-carousel .swiper-button-prev, .agenda-carousel .swiper-button-next {
        width: 0;
        height: 0;
        visibility: hidden;
        opacity: 0;
    }
}