/* YouTube Videos Section Styles */
.our-youtube-videos {
    padding: 100px 0;
}

.youtube-video-item {
    margin-bottom: 30px;
}

.youtube-video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.youtube-video-thumbnail figure {
    margin: 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.youtube-video-thumbnail figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-video-thumbnail:hover figure img {
    transform: scale(1.05);
}

.youtube-video-thumbnail .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.youtube-video-thumbnail .video-play-icon i {
    font-size: 24px;
    color: #ff0000;
    margin-left: 4px;
}

.youtube-video-thumbnail:hover .video-play-icon {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-video-thumbnail:hover .video-play-icon i {
    color: #fff;
}

.youtube-video-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.youtube-video-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.youtube-video-content h3 a:hover {
    color: #ff0000;
}

.youtube-video-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .our-youtube-videos {
        padding: 60px 0;
    }
    
    .youtube-video-content h3 {
        font-size: 18px;
    }
}
