.angie-video-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.angie-video-slide-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.angie-video-slide-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

/* Aspect Ratios */
.video-ratio-16-9 {
    padding-bottom: 56.25%; /* 16:9 */
}

.video-ratio-9-16 {
    padding-bottom: 177.77%; /* 9:16 */
}

.video-ratio-4-3 {
    padding-bottom: 75%; /* 4:3 */
}

.video-ratio-3-4 {
    padding-bottom: 133.33%; /* 3:4 */
}

.video-ratio-1-1 {
    padding-bottom: 100%; /* 1:1 */
}

.angie-video-slide-media video,
.angie-video-slide-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.angie-video-slide-title {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

/* Swiper navigation custom positions */
.angie-video-swiper .swiper-button-prev,
.angie-video-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.angie-video-swiper .swiper-button-prev::after,
.angie-video-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.angie-video-swiper .swiper-pagination-bullet-active {
    background-color: #000;
}
