.section-maps {
    border-top: 1px solid #E6E6E6;
}
.maps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 32px;
    font-family: 'Inter Tight';
}
.maps-title{
    margin-top: 0;
}
.tab-item {
    display: none;
}

.tab-item.active {
    display: flex;
}
.maps-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

.maps-list {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}

.map-link {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    padding-left: 32px;
    cursor: pointer;
}

.map-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: transparent;
    transition: all .3s ease;
}

.map-link.active::before {
    background: var(--main-color);
}

.map-link:hover .map-link-title {
    opacity: 0.7;
}

.map-link-title {
    transition: all .3s ease;
}

.map-link-link {
    font-weight: 500;
    color: var(--text-main-color);
}

.maps {
    max-width: 640px;
    width: 100%;
}

.map {
    max-width: 640px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 480px) {
    .maps-wrapper {
        flex-direction: column;
        gap: 32px 0;
    }

    .maps-info-block {
        gap: 40px 0;
    }

    .maps-title {
        font-size: 28px;
    }

    .maps-title br {
        display: none;
    }

    .maps-list {
        gap: 24px 0;
    }

    .map-link {
        gap: 8px 0;
        padding-left: 16px;
    }

    .map-link-link {
        margin-top: 8px;
    }
}