/* Styles pour la carte des agences */
.gotor-map-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.gotor-agence {
    width: 450px;
    background-color: rgb(239, 239, 239);
    padding: 20px;
    border-radius: 24px;
    display: none;
}

.gotor-agence .agence-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #000000;
}

.gotor-agence .agence-responsable {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #000000;
    color: #000000;
    font-weight: 700;
}

.gotor-agence .agence-responsable h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #000000;
}

.gotor-agence .responsable-email a,
.gotor-agence .responsable-phone a {
    color: #5EADE1;
    text-decoration: none;
}

.gotor-agence .responsable-email a:hover,
.gotor-agence .responsable-phone a:hover {
    text-decoration: underline;
}

.gotor-agence .responsable-link {
    color: white;
    background: #2ea3f2;
    padding: 5px 20px;
    border-radius: 5px;
    margin: 10px 0;
    display: block;
    width: fit-content;
}

.gotor-map {
    height: 500px;
    flex-grow: 1;
    border-radius: 24px;
}

/* Styles responsives */
@media screen and (max-width: 992px) {
    .gotor-map-container {
        flex-direction: column;
    }
    
    .gotor-agence {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .gotor-map {
        height: 400px;
    }
}

@media screen and (max-width: 576px) {
    .gotor-map {
        height: 300px;
    }
    
    .gotor-agence {
        padding: 15px;
    }
}

.list-agences {
    list-style-type: none !important;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 !important;
    justify-content: center;

    .agence-item {
        a {
            color: #fbbc1b;
        }
    }
}