/* ==========================================================================
   MAP BLOCK - SECTIONS / MAP
   ========================================================================== */

.sec-map-block {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    box-sizing: border-box;
}

.map-section-title {
    font-family: var(--font-body, 'Nunito Sans', sans-serif) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #38544A !important;
    margin-top: 0;
    margin-bottom: 20px;
}

.map-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    display: block;
    width: 100% !important;
    height: var(--map-height, 450px);
    border: 0;
}

@media (max-width: 991px) {
    .sec-map-block {
        padding-top: 35px;
        padding-bottom: 40px;
    }
    .map-wrapper iframe {
        height: 320px !important;
    }
}