/* =====================================================================
   MapEmbed — 16:9 responsive Google Maps iframe wrapper
   ===================================================================== */
.map-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(12, 10, 10, 0.1);
    background-color: #eaeaea;
}

.map-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-embed-section {
    padding: 70px 0;
}

.map-embed-section__intro {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-body);
    margin: 0 0 32px 0;
    max-width: 820px;
}

@media (max-width: 767px) {
    .map-embed-wrapper {
        padding-bottom: 75%; /* 4:3 on mobile for easier reading */
    }
    .map-embed-section {
        padding: 50px 0;
    }
}
