

/* YOUTUBE VIDEO WITH THUMBNAIL IMAGE */
.video-section {
    background-color:transparent !important;
}
    .video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    margin-bottom: 20px;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.play-button svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 4px;
}

.video-card-content {
    padding: 15px;
    background: white;
}

.video-card-content h4 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.video-card-content p {
    margin: 0 0 8px;
    color: #666;
    font-size: 14px;
}

.video-stats {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.share-buttons img:hover {
    opacity: 1;
}
/* YOUTUBE VIDEO WITH THUMBNAIL IMAGE */