.video-gallery-section h2 {
    margin-bottom: 70px;
}

.video-gallery {
    width: 90%;
}

.video-thumbnail {
    cursor: pointer;
    text-align: center;
    padding: 10px;
}

.thumbnail-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.thumbnail-wrapper img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    /* background: rgba(25, 17, 180, 0.9); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; */
}

.play-icon img {
    width: 100%;
    height: auto;
}

/*
.play-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}
*/

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 20px;
}

.modal-content {
    background: #000;
    border-radius: 10px;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    position: relative;
}

.modal-content iframe {
    width: 100%;
    height: 540px;
    border: none;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
}

/* Custom Slick Arrows */
.custom-arrow {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    width: 62px;
    height: 62px;
}

.custom-arrow img {
    width: 100%;
    height: auto;
}

.slick-prev.custom-arrow {
    left: -20px;
}

.slick-next.custom-arrow {
    right: -20px;
}

.playlist-slider .slick-next:before,
.playlist-slider .slick-prev:before {
    content: none;
}