.event-items {
    display: flex;
    flex-direction: column;
    margin: 36px 0;
    gap: 72px;
    background: #1C1E29;
    color: #fff;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 70vw;
}

.event-item-title {
    font-size: 24px;
    align-items: center;
    gap: 48px;
    overflow-x: hidden;
    margin-right: -15vw;
}

.event-item:nth-child(2n) .event-item-title {
    margin-right: unset;
    margin-left: -15vw;
}

.event-item-title:after,
.event-item-title:before {
    height: 2px;
    content: '';
    background-color: #fff;
    min-width: 30vw;
    overflow-x: hidden;
}

/*.event-item-title:before {*/
/*    margin-left: -30vw;*/
/*}*/

/*.event-item-title:after {*/
/*    margin-right: -30vw;*/
/*}*/

.event-item-title:before,
.event-item:nth-child(2n) .event-item-title:after {
    display: none;
}

.event-item-title:after,
.event-item:nth-child(2n) .event-item-title:before {
    display: flex;
    flex: auto;
}

.event-item-date {
    font-size: 20px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.event-item-title,
.event-item-date,
.event-item .buttons-panel {
    display: flex;
    justify-content: start;
}

.event-item:nth-child(2n) .event-item-title,
.event-item:nth-child(2n) .event-item-date,
.event-item:nth-child(2n) .buttons-panel {
    justify-content: end;
}

.event-item-body {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.event-item:nth-child(2n) .event-item-body {
    flex-direction: row-reverse;
}

@media (max-width: 1184px) {
    .event-item-body,
    .event-item:nth-child(2n) .event-item-body {
        flex-direction: column-reverse;
    }

    .event-item-title {
        font-size: 24px;
    }
}

.event-item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item-content-file-link {
    transition: .4s;
    color: #94bdf4;
    word-break: break-all;
}

.event-item-content-file-link:hover {
    opacity: 0.8;
}

.event-item-preview-image {
    margin-bottom: 24px;
}


.event-item-preview-image img {
    width: 100%;
    height: auto;
}

.page-body-content--home-event .section-content .calendar--monthly .calendar-panel--monthly {
    display: flex;
}