.venue-media-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 200px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, currentColor 10%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, currentColor 5%, transparent);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.venue-media-frame .venue-media-image,
.venue-media-frame iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 200px;
    border: 0;
}

.venue-media-frame .venue-media-image {
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .venue-media-frame {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .venue-media-frame .venue-media-image,
    .venue-media-frame iframe {
        min-height: 0;
    }
}
