/* About Us video wrapper */
.about-video,
.video-wrapper,
.about-video iframe {
    width: 100%;
}

/* Responsive YouTube container */
.about-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* YouTube iframe */
.about-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-video:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}

/* Desktop spacing fix */
@media (min-width: 992px) {
    .about-video {
        max-width: 480px;
        margin-left: auto;
    }
}

/* Mobile fix */
@media (max-width: 768px) {
    .about-video {
        max-width: 100%;
        margin: 20px auto;
    }
}
