
.yt-widget-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}
.yt-main-video {
    flex: 2;
    max-width: 100%;
}
.yt-main-video iframe {
    width: 100%;
    height: 350px;
    margin-bottom: 10px;
}
.yt-main-video h4 {
    margin: 0.5em 0 0.2em;
    font-size: 0.75em;
}
.yt-main-video p {
    font-size: 0.8em;
    color: #555;
}
.yt-thumbs-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yt-thumb {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #cfbcf3;
    padding: 6px;
    border-radius: 6px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
}
.yt-thumb img {
    width: 100px;
    height: 66px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.yt-thumb-title {
    font-size: 0.6em;
    color: #333;
    flex-grow: 1;
    line-height: 0.9em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
@media (max-width: 800px) {
    .yt-thumbs-wrapper {
        display: none;
    }
    .yt-main-video iframe {
        height: 200px;
    }
}
.yt-thumb {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
