/* Video Gallery - Vertical Portrait Shorts */
.video-gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9 / 16; /* Portrait Mode */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #000;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Disable all interactions/controls */
}

/* Invisible overlay to prevent hover controls/interaction */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
}

@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
