.locations-split-content {
    background-color: var(--background-color);
    padding: 80px 0;
}

.locations-split-content__row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.locations-split-content__content-side {
    flex: 1;
    min-width: 300px;
}

.locations-split-content__image-side {
    flex: 1;
    min-width: 300px;
}

.locations-split-content h2 {
    font-size: 56px !important;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 25px;
    line-height: 1;
    font-weight: 900;
}

.locations-split-content h2 span {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 5px 15px;
    display: inline-block;
}

.locations-split-content__content {
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 90%;
}

.locations-split-content__sub-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.locations-split-content__location-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(10, 10, 10, 0.1);
}

.locations-split-content__location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    transition: all 0.3s ease;
}

.locations-split-content__location-item:nth-child(odd) {
    border-right: 1px solid rgba(10, 10, 10, 0.1);
    padding-right: 30px;
}

.locations-split-content__location-item:nth-child(even) {
    padding-left: 30px;
}

.locations-split-content__location-item h3 {
    margin: 0;

    text-transform: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);

    transition: color 0.3s ease;
}

.locations-split-content__location-item__right {
    display: flex;
    align-items: center;
}

.locations-split-content__location-item__right svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.locations-split-content__location-item__right svg path {
    fill: var(--accent-color);
}

.locations-split-content__location-item--has-link:hover h3 {
    color: var(--accent-color);
}

.locations-split-content__location-item--has-link:hover .locations-split-content__location-item__right svg {
    transform: translateX(8px);
}

.locations-split-content__image {
    box-shadow: 0px 20px 50px rgba(10, 10, 10, 0.15);
}

.locations-split-content__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
}

@media (max-width: 991px) {
    .locations-split-content h2 {
        font-size: 40px !important;
    }

    .locations-split-content__location-items {
        grid-template-columns: 1fr;
    }
    .locations-split-content__location-item:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }
    .locations-split-content__location-item:nth-child(even) {
        padding-left: 0;
    }

    .locations-split-content__location-item:nth-child(odd) {
        padding-right: 15px;
    }
    .locations-split-content__location-item:nth-child(even) {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .locations-split-content h2 {
        font-size: 36px !important;
    }
}
