/* ==========================================================================
   VENUE.CSS - ACM Collective Intelligence 2026
   Styles for map wrappers, venue images, and embedded video components.
   ========================================================================== */

/* Responsive Embedded Video Framework */
.video-container, .map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000;
    margin: 1.5rem 0 2.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.video-container iframe, .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Polished Image Components */
.venue-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin: 1.5rem 0 2.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}