/* Conteneur qui limite la largeur sur desktop */
.carte-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto 40px auto;
}

.carte-ratio {
    position: relative;
    padding-bottom: 62%; /* légèrement plus que 56.25% pour inclure la barre Genially */
    height: 0;
    overflow: hidden;
}

.carte-ratio-residence {
    padding-bottom: 93%; /* Ajuste ce chiffre jusqu'à ce que ça soit bon */
}

.carte-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Image des navettes */
.image-bas-page {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.image-bas-page img {
    width: 650px;
    max-width: 100%; /* Rétrécit sur mobile */
    height: auto;
}

/* Ajustements mobile */
@media (max-width: 768px) {
    .carte-wrapper {
        width: 100%;
    }
}