.playlist-youtube {
    max-width: 1100px;
    margin: auto;
}

.video-player {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.video-placeholder {

    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #FFF;
    text-align: center;
    padding: 30px;

}

.video-placeholder h3 {
    font-size: 26px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 10px;

}

.video-player iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 3px solid #67bcdb;
    border-radius: 16px;
}

.playlist-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.playlist-carousel::-webkit-scrollbar {
    height: 8px;
}

.playlist-carousel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.video-card {
    width: 240px;
    cursor: pointer;
    transition: .3s;
    min-width: 240px;
}

.video-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
    margin: 3px;
    max-width: 240px;
}

.video-card span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    padding: 0 12px;
    text-align: center;
}

.video-card.active {
    transform: scale(1.03);
}

.video-card.active img {
    border: 3px solid #2f3f51;
}