
/* ---------- MAP SECTION ---------- */
.map-section {
    position: relative;
    z-index: 2;
    margin: 0 1rem 60px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(120deg, #dbe7fb, #eef3fc 60%);
}
.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../img/map.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.map-text {
    z-index: 2;
    padding: 1rem 0 1rem 5rem;
}

.map-text h3 {
    margin-bottom: 20px;
    font-size: clamp(1.2rem, 1.4vw + 1rem, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
}
.map-text .map_loc {
    font-size: clamp(1.4rem, 1.4vw + 1rem, 1.7rem);
}

.map-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: .95rem;
}

.map-text ul li::before {
    content: '';
    flex-shrink: 0;
    width: 15px;
    height: 18px;
    border-radius: 50%;
    background-image: url('../img/picto-map.png');
}

.map-section.mobile {
    display: none;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 1150px) {
    .map-section {
        grid-template-columns: 1fr;
    }
    .map-section::before {
        background-position-x: 35%;
    }
}
@media (max-width: 1024px) {
    .map-text {
        padding: 1rem 0 1rem 2rem;
    }
}
@media (max-width: 650px) {
    
    .section-title {
        margin-bottom: 36px;
    }
    .map-text h3 {
        margin-bottom: 1rem;
    }

    .map-section {
        padding: 28px 20px;
    }
    .map-section::before {
        background-image: url('../img/map_mobile.png');
    }

}

@media (max-width: 650px) {
    .map-section {
        display: none;
    }
    .map-section.mobile {
        display: grid;
        background: white;
        height: 700px;
        margin: 0;
    }
    .map-section.mobile::before {
        height: 350px;
        background-position: 70%;
    }
    .map-section.mobile .map-text {
        position: absolute;
        bottom: 0;
        left: 2rem;
        height: 350px;
        padding: 1rem 2rem;
    }
}
@media (max-width: 480px) {
    .map-section.mobile {
        height: 685px;
    }
    .map-section.mobile::before {
        height: 330px;
        background-position: 45%;
    }
    .map-section.mobile .map-text {
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        padding: 1rem 2rem;
    }
}