.video-switcher-block .main-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-switcher-block .main-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-switcher-block .video-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.video-switcher-block .video-thumbnail {
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.video-switcher-block .video-thumbnail:hover,
.video-switcher-block .video-thumbnail:focus {
    transform: translateY(-4px);
    outline: none;
}

.video-switcher-block .video-thumbnail img {
    width: 100%;
    height: auto;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    order: 1;
}

.video-switcher-block .video-thumbnail.active img,
.video-switcher-block .video-thumbnail:hover img {
    border-color: #ff8200;
}

.video-switcher-block .thumbnail-label {
    display: block;
    margin: 0;
    font-weight: 600;
    order: 2;
    padding-top: 0.5rem;
}
.white-titles p {
	color: #fff;
}