.youtube-videos__section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.youtube-videos__swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.youtube-videos__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-videos__ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.youtube-videos__ratio iframe,
.youtube-videos__ratio video,
.youtube-videos__ratio embed,
.youtube-videos__ratio object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pagination */
.youtube-videos__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.youtube-videos__pagination-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    background-color: #000;
    cursor: pointer;
    transition: 0.25s ease;
    z-index: 999999999999999;
}

.youtube-videos__pagination-item svg path {
    fill: #fff;
}

.youtube-videos__pagination-next {
    transform: rotate(180deg);
}

.youtube-videos__pagination-item.swiper-button-disabled {
    opacity: .2;
    cursor: not-allowed;
}

.youtube-videos__pagination-item.swiper-button-disabled.swiper-button-lock {
    display: none;
}

