.mapa {
    padding: 100px 0;
}

.mapa .flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.mapa .map {
    width: calc(100% - 80px);
}

.mapa .map .map_container {
    padding: 60px;
    background: #F6F6F6;
}

.mapa .map .map_container svg {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.mapa .map .map_container svg path {
    cursor: pointer;
    transition: 300ms;
}

.mapa .list {
    width: 570px;
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid #D7D7D7;
}

.mapa .list h2 {
    margin: 0 auto 50px auto;
    color: var(--KTI-TXT, #545456);
    font-family: Inter;
    font-size: 39px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 46.8px */
    letter-spacing: -0.39px;
}

.mapa .list .in {
    
}

.mapa .list .in .region {
    position: relative;
    cursor: pointer;
    transition: 300ms;
}

.mapa .list .in .region * {
    transition: 300ms;
}

.mapa .list .in .region.active *,
.mapa .list .in .region:hover * {
    color: #545456 !important;
}

.mapa .list .in .region:before {
    content: " ";
    display: block;
    width: 3px;
    height: 100%;
    background: #D7D7D7;
    position: absolute;
    top: 0;
    left: -42px;
    opacity: 0;
    transition: 300ms;
}

.mapa .list .in .region.active:before,
.mapa .list .in .region:hover:before {
    opacity: 1;
}

.mapa .list .in .region + .region {
    margin-top: 32px;
}

.mapa .list .in .region .title {
    color: #D7D7D7;
    margin: 0 auto 8px auto;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
}

.mapa .list .in .region .desc {
    color: #D7D7D7;
    margin: 0 auto;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
}

.mapa .list .in .region .desc strong {
    display: block;
}

.mapa .list .in .region .desc * {
    color: #D7D7D7;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
}
@media (max-width: 966px) {
    .mapa {
        padding: 20px 0;
    }
    .mapa .flex-container {
        flex-direction: column;
        align-items: flex-start; /* lub center, jeśli chcesz wyśrodkować */
        gap: 40px;
    }

    .mapa .map .map_container {
        padding: 20px;
    }

    .mapa .map {
        width: 100%;
        order: 2;
    }

    .mapa .list {
        order: 1;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: none;
        padding-top: 0;
    }

    .mapa .list h2 {
        margin-bottom: 30px;
        font-family: Inter;
        font-size: 39px !important;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; /* 46.8px */
        letter-spacing: -0.39px;
    }

    .mapa .list .in .region .title {
        font-size: 18px;
    }

    .mapa .list .in .region .desc,
    .mapa .list .in .region .desc * {
        font-size: 15px;
    }
}