/**
 * IDTV Videos — Lista de reproducción de videos
 * Estilos para bloque de videos con reproductor principal y lista lateral
 */

.informe-block-idtv-videos {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 2rem 1rem;
    margin: 2rem 0;
}

.informe-idtv-videos__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   COLUMNA PRINCIPAL: Video grande
   ============================================ */
.informe-idtv-videos__main {
    flex: 2;
    min-width: 300px;
}

.informe-idtv-videos__player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-radius: 4px;
}

.informe-idtv-videos__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.informe-idtv-videos__divider {
    height: 3px;
    width: 300px;
    max-width: 100%;
    background: #fff;
    margin: 1.5rem 0 1rem;
}

.informe-idtv-videos__title {
    font-size: var(--fs-title-lg);     /* 1.625rem - 26px */
    line-height: var(--lh-title-base); /* 1.15 */
    letter-spacing: var(--ls-title-lg);/* -.0375rem */
    margin: 0;
    font-weight: var(--fw-title-featured); /* 700 */
    color: #fff;
}

/* ============================================
   COLUMNA LATERAL: Lista de videos
   ============================================ */
.informe-idtv-videos__list {
    flex: 1;
    min-width: 250px;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.informe-idtv-videos__list-scroll {
    overflow-y: auto;
    max-height: 600px;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.informe-idtv-videos__list-scroll::-webkit-scrollbar {
    width: 6px;
}

.informe-idtv-videos__list-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.informe-idtv-videos__list-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.informe-idtv-videos__list-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.informe-idtv-videos__list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.informe-idtv-videos__list-item {
    margin-bottom: 1rem;
}

.informe-idtv-videos__list-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    background: #111;
    padding: 0.75rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.informe-idtv-videos__list-link:hover,
.informe-idtv-videos__list-link:focus {
    background: #222;
    transform: translateX(4px);
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: -2px;
}

.informe-idtv-videos__list-thumb {
    width: 100px;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
}

.informe-idtv-videos__list-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.informe-idtv-videos__list-title {
    font-size: var(--fs-title-xs);    /* .875rem - 14px */
    line-height: var(--lh-compact);   /* 1.21 */
    font-weight: var(--fw-title-base);/* 600 */
    display: block;
    color: #fff;
}

/* ============================================
   RESPONSIVE: Desktop (769px+)
   ============================================ */
@media (min-width: 769px) {
    .informe-block-idtv-videos {
        padding: 2.5rem 2rem;
    }
    
    .informe-idtv-videos__list-thumb {
        width: 160px;
        height: auto;
    }
    
    .informe-idtv-videos__list-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .informe-idtv-videos__title {
        font-size: var(--fs-title-xl);  /* 1.875rem - 30px Tablet */
    }
}

/* ============================================
   RESPONSIVE: Tablet (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .informe-idtv-videos__list-thumb {
        width: 200px;
        height: auto;
    }
}

/* ============================================
   FULL-BLEED: Tablet y mobile (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .informe-block-idtv-videos {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-1 * var(--container-padding-mobile, 16px)) !important;
        margin-right: calc(-1 * var(--container-padding-mobile, 16px)) !important;
        padding: 2rem 0 !important;
    }
    
    .informe-idtv-videos__container {
        padding-left: var(--container-padding-mobile, 16px);
        padding-right: var(--container-padding-mobile, 16px);
    }
}

/* ============================================
   RESPONSIVE: Mobile (< 768px)
   ============================================ */
@media (max-width: 768px) {
    .informe-block-idtv-videos {
        padding: 1.5rem 0 !important;
    }
    
    .informe-idtv-videos__container {
        flex-direction: column;
        gap: 1.5rem;
        padding-left: var(--container-padding-mobile, 16px);
        padding-right: var(--container-padding-mobile, 16px);
    }
    
    .informe-idtv-videos__main {
        width: 100%;
    }
    
    .informe-idtv-videos__divider {
        width: 100%;
    }
    
    .informe-idtv-videos__title {
        font-size: var(--fs-title-base); /* 1.25rem - 20px Mobile */
        margin-top: 1rem;
    }
    
    .informe-idtv-videos__list {
        width: 100%;
        padding-top: 0;
    }
    
    .informe-idtv-videos__list-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.5rem;
        max-height: none;
        scrollbar-width: none;
    }
    
    .informe-idtv-videos__list-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .informe-idtv-videos__list-items {
        display: flex;
        gap: 1rem;
        padding: 0;
        margin: 0;
    }
    
    .informe-idtv-videos__list-item {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 200px;
    }
    
    .informe-idtv-videos__list-link {
        flex-direction: column;
        padding: 0.5rem;
    }
    
    .informe-idtv-videos__list-thumb {
        width: 100%;
        height: auto;
    }
    
    .informe-idtv-videos__list-title {
        font-size: var(--fs-title-xs);  /* .875rem - 14px Mobile */
        margin-top: 0.5rem;
    }
}
