.breadcrumbs {
    margin-bottom: 0;
}

.event-blocks {
    background-color: #F9F9F9;
}

.event-head {
    padding: 40px 0;
    display: flex;
    gap: 20px;
}

.event-head__banner {
    aspect-ratio: 848 / 416;
    border-radius: 15px;
    overflow: hidden;
}
.event-head__banner-img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info {
    flex-shrink: 0;
    max-width: 412px;
    width: 100%;
    border-radius: 15px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.event-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.53);
    backdrop-filter: blur(15px);
    z-index: -1;
}

.event-info__date-time {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 17px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 9px;
    border-radius: 13px;
    background: #E63737;
    box-shadow: 0 5px 23px 0 rgba(230, 55, 55, 0.08);
    color: white;
}
.event-date__month {
    font-size: 19px;
    font-weight: 800;
    line-height: 104%;
}
.event-date__days {
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
}

.event-time {
    padding: 11px 13px;
    border-radius: 100vmax;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(2.5px);
    font-size: 13px;
    font-weight: 500;
    line-height: 140%;
    color: white;
}

.event-info__title-prefix {
    color: #EFEFEF;
    font-size: 13px;
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.6;
}
.event-info__title {
    color: #FFF;
    font-size: 30px;
    font-weight: 500;
    line-height: 125%;
    margin: 0;
}
.event-info__title-suffix {
    color: #EFEFEF;
    font-size: 20px;
    font-weight: 600;
    line-height: 125%;
    margin-top: 11px;
    margin-bottom: 0;
}
.event-info__title-descr {
    color: #EFEFEF;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 11px;
    margin-bottom: 0;
    opacity: 0.7;
}

.event-main {
    display: flex;
    gap: 40px;
    padding-bottom: 60px;
}

.event-main__title {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 125%;
}
.event-content__title {
    margin-bottom: 10px;
}


.event-main__content > *:last-child {
    margin-bottom: 0;
}

.event-main__content p,
.event-main__content li,
.event-main__content a {
    font-size: 15px;
    font-weight: 300;
    line-height: 140%;
}

.event-main__content p,
.event-main__content li {
    margin-bottom: 10px;
    color: #363636;
}


.event-main__days {
    flex-shrink: 0;
    max-width: 412px;
    width: 100%;
}

.event-days__title {
    margin-bottom: 15px;
}

.event-days {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-day {
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
}
.event-day__datetime {
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-day__date {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    line-height: 140%;
}
.event-day__time {
    padding: 5px 8px;
    border-radius: 100vmax;
    background-color: #ffb928;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.event-day__address {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    color: #727272;
    font-size: 13px;
    font-weight: 300;
    line-height: 140%;
}
.event-day__address > svg {
    flex-shrink: 0;
}



@media screen and (max-width: 992px) {
    .event-head {
        flex-direction: column;
        padding: 20px 0;
    }
    .event-head__banner {
        aspect-ratio: 332 / 163;
        max-height: 300px;
    }
    .event-info {
        max-width: none;
        width: auto;
    }

    .event-main {
        flex-direction: column-reverse;
        padding-bottom: 30px;
    }
    .event-main__days {
        max-width: none;
        width: auto;
    }

    .event-days {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .event-day {
        flex: 1;
        flex-basis: 300px;
    }
}


@media screen and (max-width: 768px) {
    .event-main__content p, .event-main__content li, .event-main__content a {
        font-size: 13px;
    }

    .event-info__date-time {
        margin-bottom: 15px;
    }
    .event-info__title-prefix {
        font-size: 11px;
    }
    .event-info__title {
        font-size: 22px;
    }
    .event-info__title-suffix {
        font-size: 15px;
    }
    .event-info__title-descr {
        font-size: 12px;
    }
}