/* Video embed wrapper styles */
.video-embed-wrapper {
    width: 90% !important;
    max-width: 90% !important;
    margin: 1rem auto !important;
    position: relative !important;
    display: block !important;
}

/* 16:9 aspect ratio container */
.ratio-16-9 {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

/* 1:1 aspect ratio for Instagram content */
.ratio-1-1 {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 aspect ratio */
}

/* Responsive video iframe */
.responsive-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .video-embed-wrapper {
        width: 95%;
        max-width: 95%;
        margin: 0.75rem auto;
    }
}

@media (max-width: 480px) {
    .video-embed-wrapper {
        width: 98%;
        max-width: 98%;
        margin: 0.5rem auto;
    }
}