#ceremony-page #map-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

#ceremony-page #map-img {
    flex: 2;
    min-width: 0;
    height: 500px;
    object-fit: cover;
    object-position: center center;
}

#ceremony-page .map-frame {
    flex: 3;
}

#ceremony-page .map-frame iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* Responsive: apilar verticalmente en pantallas menores a 850px */
@media all and (max-width: 850px) {
    #ceremony-page #map-container {
        flex-direction: column;
        gap: 20px;
    }

    #ceremony-page #map-img {
        width: 100%;
        height: 350px;
    }

    #ceremony-page .map-frame {
        width: 100%;
    }

    #ceremony-page .map-frame iframe {
        height: 400px;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media all and (max-width: 550px) {
    #ceremony-page #map-img {
        height: 250px;
    }

    #ceremony-page .map-frame iframe {
        height: 300px;
    }
}