.ir-2ffac735-container {
    text-align: center;
    position: relative;
    width: 100%;
}
.ir-2ffac735-title {
    margin-bottom: 5px;
}
.ir-2ffac735-subtitle {
    margin-bottom: 30px;
    opacity: 0.8;
}

.ir-2ffac735-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ir-2ffac735-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 5px;
    width: 100%;
    scrollbar-width: none; /* Firefox */
}
.ir-2ffac735-carousel::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.ir-2ffac735-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: center;
}

.ir-2ffac735-card {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 16:9 inverse = 9:16 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ir-2ffac735-card:hover {
    transform: translateY(-5px);
}

.ir-2ffac735-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Let the card handle hover events */
}

.ir-2ffac735-poster-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
}

.ir-2ffac735-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #333;
    transition: background 0.3s, color 0.3s;
}
.ir-2ffac735-nav:hover {
    background: #f0f0f0;
}
.ir-2ffac735-prev { left: -24px; }
.ir-2ffac735-next { right: -24px; }

.ir-2ffac735-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.ir-2ffac735-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.ir-2ffac735-dot.active {
    background: #333;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .ir-2ffac735-slide {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .ir-2ffac735-slide {
        flex: 0 0 100%;
    }
    .ir-2ffac735-prev { left: -10px; }
    .ir-2ffac735-next { right: -10px; }
}
