.events {

}

.events__wrapper {

}

.current-event {
    margin-bottom: 24px;
    border-radius: 16px;
    background-color: #000;
    width: 100%;
    height: 520px;
    padding: 0 24px 24px 24px;

    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center!important;

    display: flex;
    flex-direction: column;
}

.current-event__date {
    max-width: max-content;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    color: #fff;
    padding: 16px;
    border-radius: 0 0 8px 8px;
    background: #3259e8;
    display: flex;
    gap: 8px;
}

.current-event__date-month {
    font-size: 20px;
    margin-top: 4px;
}

.current-event__city {
    margin-top: auto;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
}

.current-event__title {
    font-weight: 600;
    font-size: 44px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 20px;
}

.current-event__btns {
    display: flex;
    gap: 12px;

}

.current-event__ticket-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 200px;
}

.current-event__page-btn {
    width: 200px;
}

.events-splide {
    margin-bottom: 48px;
}

.events-splide .splide__arrow svg {
    display: none;
}

.events-splide .splide__arrow {
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    width: 48px;
    height: 48px;
    background-image: url("../img/splide-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.events-splide .splide__arrow--prev {
    transform: rotate(360deg);
}
.events-splide .splide__arrow--next {
    transform: rotate(180deg);
}

.event-card {
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center!important;
    background-color: black;

    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    min-height: 360px;
    position: relative;
    cursor: pointer;

}

.event-card__page-link {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    z-index: 2;
}

.event-card a:not(.event-card__page-link) {
    position: relative;
    z-index: 3;
}

.event-card--current {
    border: 5px solid #5877EA;
}

.event-card__date {
    max-width: max-content;
    font-weight: 700;
    font-size: 28px;
    line-height: normal;
    color: #fff;
    display: flex;
    gap: 2px;
}

.event-card__date-month {
    font-size: 14px;
    margin-top: 2px;
}

.event-card__city {
    max-width: max-content;
    background: #3259e8;
    margin-top: 8px;
    border-radius: 20px;
    padding: 5px 7px;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #fff;
}

.event-card__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
    margin-top: auto;
    margin-bottom: 16px;
}

.event-card__ticket-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    line-height: 167%;
}

.event-card__coming-soon {
    background: #d9d9d9;
    cursor: default;
    color: #565656;
}

.event-card__coming-soon.current-event__ticket-btn {
    width: max-content;
}

.events__header-title {
    margin-bottom: 64px;
}

@media (max-width: 650px) {

    .current-event__date {
        font-size: 40px;
    }

    .current-event__date-month {
        font-size: 16px;
    }

    .current-event__city {
        font-size: 20px;
    }

    .current-event__title {
        font-weight: 600;
        font-size: 28px;
    }

    .current-event__btns {
        flex-direction: column;
    }

    .current-event__btns > * {
        width: 100%;
    }

    .event-card__date {
        font-size: 22px;
    }

    .event-card__date-month {

        font-size: 10px;
    }

    .event-card__city {

        font-size: 10px;
    }

    .event-card__title {
        font-size: 13px;
    }

    .btn.event-card__coming-soon {
        width: 100%;
    }


}

.events-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
}

.event-card {
    position: relative;
    min-height: 373px;
}

@media (max-width: 1300px) {
    .events-cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .events-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .events-cards-wrapper {
        grid-template-columns: 1fr;
    }
}
