/* ==============================================
   Office Gallery & Map - Shared Styles
   Used by: mcglobal.html, films.html
   ============================================== */

.office-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.office-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.office-map {
    min-height: 400px;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    filter: grayscale(20%) brightness(0.9);
}

@media (max-width: 768px) {
    .office-section {
        grid-template-columns: 1fr;
    }

    .office-map,
    .office-map iframe {
        min-height: 300px;
    }
}
