/* Berlin Echo — Video Playlist */

.be-vpl {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    background: #0f0f0f;
    border-radius: 10px;
    overflow: hidden;
    min-height: 380px;
}

/* ── Oynatıcı ── */
.be-vpl-player {
    display: flex;
    flex-direction: column;
}
.be-vpl-iframe-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    flex-shrink: 0;
}
.be-vpl-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.be-vpl-player-info {
    padding: 14px 18px;
    background: #1a1a1a;
    flex: 1;
}
.be-vpl-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.35;
}
.be-vpl-date {
    font-size: 12px;
    color: #888;
}

/* ── Playlist ── */
.be-vpl-list {
    background: #1a1a1a;
    overflow-y: auto;
    max-height: 500px;
    scrollbar-width: thin;
    scrollbar-color: #444 transparent;
    border-left: 1px solid #2a2a2a;
}
.be-vpl-list::-webkit-scrollbar { width: 4px; }
.be-vpl-list::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }

.be-vpl-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #2a2a2a;
    transition: background .15s;
}
.be-vpl-item:hover    { background: #252525; }
.be-vpl-item.active   { background: #252525; border-left: 3px solid #eb2026; }

/* Thumbnail */
.be-vpl-thumb {
    position: relative;
    width: 100px;
    flex-shrink: 0;
    aspect-ratio: 16/9;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}
.be-vpl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.be-vpl-thumb-ph {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
}
.be-vpl-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,.85);
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .15s;
}
.be-vpl-item:hover .be-vpl-play-icon { opacity: 1; }
.be-vpl-now-playing {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: #eb2026;
    text-align: center;
    padding: 2px 0;
    letter-spacing: .05em;
}

/* Item info */
.be-vpl-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}
.be-vpl-item-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.be-vpl-item.active .be-vpl-item-title { color: #fff; }
.be-vpl-item-date {
    font-size: 11px;
    color: #666;
}

/* Responsive */
@media (max-width: 700px) {
    .be-vpl {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .be-vpl-list {
        border-left: none;
        border-top: 1px solid #2a2a2a;
        max-height: 300px;
    }
}
