﻿/* ================================================
   Swiper v6 — hide default navigation ::after icons.
   The layout uses custom ti-angle icons inside the
   button elements so the v6 defaults must be removed.
   ================================================ */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

/* ================================================
   Swiper fade mode fix
   Prevent wrapper transform movement in fade effect.
   The swiper-container-fade .swiper-slide rule already
   limits transitions to opacity only, but the wrapper
   still moves for loop clone positioning. Lock it.
   ================================================ */
.swiper-container-fade .swiper-wrapper {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    -moz-transform: translate3d(0, 0, 0) !important;
    -ms-transform: translate3d(0, 0, 0) !important;
    -o-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.video-container {
    border: 1px solid #ececec;
    border-radius: 4px;
    box-shadow: 1px 1px 4px 1px #ececec;
    overflow: hidden;
    background-color: #f9f9f9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.video-timestamp {
    font-size: 11px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 1px 4px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.video-title {
    font-weight: bold;
    color: #000000;
}

.video-subtitle {
    font-size: 14px;
    color: #767676;
}