
.videos-page {
    background: #000;
    color: #fff;
    padding: 90px 0;
}

.videos-page-header {
    margin-bottom: 50px;
}

.videos-empty {
    color: #9a9a9a;
    font-size: 16px;
}

/* ── Slider ── */
.videos-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.videos-track-wrap {
    overflow: hidden;
    flex: 1;
}

.videos-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
}

.video-slide {
    flex-shrink: 0;
    width: calc(33.333% - 16px);
    margin-right: 24px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .video-slide {
        width: calc(50% - 12px);
        margin-right: 18px;
    }
}

@media (max-width: 600px) {
    .video-slide {
        width: 100%;
        margin-right: 0;
    }
}

.video-card-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.video-frame-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    display: block;
}

.video-frame-wrap.ratio {
    aspect-ratio: 9 / 16;
}

.video-frame-wrap.ratio iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-lazy {
    position: relative;
    cursor: pointer;
}

.video-lazy-thumb {
    width: 100%;
    height: 100%;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-lazy-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-lazy-play {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram: fixed height, sab cards same size */
.video-frame-instagram {
    display: flex;
    justify-content: center;
    /*background: #111;*/
    height: 480px;
    overflow: hidden;
}

.video-frame-instagram iframe.instagram-media {
    width: 100% !important;
    max-width: 340px !important;
    height: 480px !important;
    min-width: unset !important;
}

@media (max-width: 600px) {
    .video-frame-instagram,
    .video-frame-instagram iframe.instagram-media {
        height: 440px !important;
    }
}

.video-frame-facebook {
    display: flex;
    justify-content: center;
    background: #fff;
    min-height: 300px;
}

.video-frame-facebook iframe {
    width: 100%;
    max-width: 400px;
    height: 420px;
    border: 0;
}

.video-lazy-badge {
    color: #9a9a9a;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ── Arrows ── */
.videos-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff5a1f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.videos-arrow:hover {
    opacity: 0.85;
}

/* ── Dots ── */
.videos-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.videos-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
}

.videos-dot.active {
    background: #ff5a1f;
    transform: scale(1.3);
}

@media (max-width: 480px) {
    .videos-page { padding: 60px 0; }
    .videos-arrow { width: 34px; height: 34px; }
}
