.more-events-swiper{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 140px 100px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 80px;

    background-image: url('https://storage.googleapis.com/dev_resources_voka_io_303011/common/events-grid-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.more-events-grid-items-wrapper{
    width: 100%;
    overflow: hidden;
}

.swiper-notification{
    display: none;
}

.more-events-swiper .swiper-pagination-bullet{
    opacity: 1;
    background: var(--light-blue);
}

.more-events-swiper .swiper-pagination-bullet-active{
    opacity: 1;
    background: var(--n-very-light-accent);
}

.more-events-swiper .swiper__pagination-container{
    line-height: 8px;
    height: 8px;
}

.more-events-swiper .main-h2{
    color: var(--n-white);
}

.more-events-grid-items{
    width: 100%;
    display: grid;
    gap: 0;
    row-gap: 16px;
    grid-template-columns: unset;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    align-self: start;
}

.more-event-item{
    display: flex;
    align-items: start;
    gap: 32px;
    background: rgba(0, 22, 74, 0.40);
    border-radius: 20px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid rgba(157, 199, 255, 0.10);
    transition: 0.3s;
    height: auto !important;
    margin-top: 0 !important;
}

.more-event-item img{
    flex-shrink: 0;
    height: auto;
    width: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

.more-event-item-content{
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    align-items: stretch;
}

.more-event-item-info{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}

.more-event-item-content .main-h4{
    color: var(--n-white);
}

.more-event-item-content .small-text-medium{
    color: #AAC0E1;
}

.more-event-item-opt-info{
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 2px;
}

.more-event-item-opt-info .main-text-bold{
    color: var(--d-white);
}

.more-event-item-opt-info .main-text-semibold{
    color: var(--light-blue);
}

.more-event-item-opt-info .vertical-divider{
    display: inline-block;
    width: 1px;
    height: 16px;
    opacity: 0.4;
    background-color: var(--d-accent);
}

.more-events-grid-controls{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    min-height: 12px;
}

.more-events-grid-controls .swiper__navigation-container{
    display: flex;
    align-items: center;
    gap: 8px;
}

[dir=rtl] .more-events-grid-controls .swiper__arrow svg{
    transform: scaleX(-1);
}

.more-events-grid-controls .swiper__arrow{
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 0;
    margin: 0;
    pointer-events: all;
    position: relative;
    width: 40px;
    height: 40px;
}

.more-events-grid-controls .swiper__arrow--prev{
    transform: rotate(180deg);
}

.more-events-grid-controls .swiper__arrow path{
    transition: 0.2s;
}

.more-events-grid-controls .swiper-button-disabled {
    cursor: default;
}

.more-events-grid-controls .swiper-button-disabled path{
    fill: var(--light-blue);
}

@media (hover:hover){
    .more-event-item:hover{
        border-color: rgba(157, 199, 255, 0.20);
        background: rgba(0, 22, 74, 0.60);
    }

    .more-events-grid-controls .swiper__arrow:not(.swiper-button-disabled):hover path{
        fill: var(--accent-light-bg);
    }
}

@media screen and (max-width: 1919px) {
    .more-events-swiper{
        padding: 100px 80px;
        gap: 60px;
    }

    .more-event-item{
        gap: 24px;
    }

    .more-event-item img{
        width: 140px;
    }

    .more-event-item-content{
        padding: 6px 0;
        gap: 8px;
    }

    .more-event-item-info{
        gap: 8px;
    }
}

@media screen and (max-width: 1439px) {
    .more-events-swiper{
        padding: 80px 60px;
        gap: 48px;
    }

    .more-event-item img{
        width: 120px;
    }

    .more-event-item-content{
        gap: 6px;
    }

    .more-event-item-info{
        gap: 6px;
    }

    .more-event-item-opt-info{
        column-gap: 8px;
    }
}

@media screen and (max-width: 1079px) {
    .more-events-swiper{
        padding: 80px 40px;
    }

    .more-events-swiper .swiper__pagination-container{
        text-align: center;
    }

    .more-event-item{
        padding-bottom: 20px;
        gap: 20px;
        height: auto !important;
        margin-top: 0 !important;
    }

    .more-event-item-content{
        padding: 0 8px;
    }

    .more-events-grid-controls .swiper__navigation-container{
        display: none;
    }
}

@media screen and (max-width: 577px) {
    .more-events-swiper{
        padding: 60px 16px;
        gap: 40px;
    }

    .more-events-grid-items{
        display: flex;
        flex-direction: row;
    }

    .more-event-item{
        flex-direction: column;
        align-items: start;
    }

    .more-event-item img{
        width: 80px;
    }

    .more-event-item-content{
        padding: 0;
        gap: 16px;
    }

    .more-event-item-info{
        gap: 2px;
    }

    .more-event-item-opt-info{
        flex-direction: column;
        gap: 2px;
        align-items: start;
    }

    .more-event-item-opt-info .vertical-divider{
        display: none;
    }
}