/* ============================
   WRAPPER UTAMA
   ============================ */
.video-wrapper {
    display: flex;
    gap: 20px;
    background: transparent !important;
    padding: 0 !important;
    color: inherit !important;
}

/* ============================
   VIDEO UTAMA (BESAR)
   ============================ */
.video-featured {
    flex: 2;
}

.featured-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.featured-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* IKON PLAY DI TENGAH */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: white;
    opacity: 0.85;
    pointer-events: none;
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
}

/* TANGGAL VIDEO BESAR */
.featured-date {
    position: absolute;
    bottom: 70px;
    left: 12px;
    font-size: 13px;
    color: #ffbebe;
}

/* JUDUL VIDEO BESAR */
.featured-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #fff !important;
    line-height: 1.4;
}

/* ============================
   VIDEO LIST SAMPING
   ============================ */
.video-list {
    flex: 1.2;
}

.side-item {
    display: flex;
    gap: 14px;
    margin-bottom: 17px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

/* ============================
   THUMBNAIL KECIL
   ============================ */
.side-thumb {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.side-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

/* ============================
   JUDUL VIDEO KECIL
   ============================ */
.side-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
    color: #ffffff !important;

    /* DESKTOP: MAKSIMAL 3 BARIS */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-date {
    font-size: 12px;
    color: #ffbebe;
    margin-bottom: 4px;
}

/* ============================
   FLOATING VIDEO PLAYER
   ============================ */
#floating-player {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 215px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(0,0,0,0.5);
    z-index: 999999;
}

#floating-player iframe {
    width: 100%;
    height: 100%;
}

#close-player {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    padding: 2px 8px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    z-index: 10;
}

/* ============================
   RESPONSIVE HP
   ============================ */
@media (max-width: 768px) {
    .video-wrapper {
        flex-direction: column;

        /* Agar tidak menempel ke tepi kiri–kanan HP */
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .side-thumb {
        width: 110px !important;
        height: 110px !important;
    }

    .play-icon {
        font-size: 55px;
    }

    #floating-player {
        width: 90%;
        height: 200px;
        right: 5%;
    }

    /* HP: MAKSIMAL 4 BARIS */
    .side-title {
        -webkit-line-clamp: 4 !important;
    }
}
