.location-section {
    padding: 60px 0;
}

.location-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.location-inner {
    display: flex;
    flex-wrap: wrap;
}

.location-map {
    flex: 1 1 300px;
    min-width: 0;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;
}

.location-info {
    flex: 1 1 300px;
    min-width: 0;
    padding: 40px;
}

.location-info h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.location-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.location-info a {
    color: inherit;
    text-decoration: none;
}

.location-nav-link {
    display: inline-block;
    margin-bottom: 30px;
    border-bottom: 1px solid currentColor;
    font-weight: 600;
    font-size: 0.9rem;
}

.location-contacts-title {
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 991px) {
    .location-wrapper {
        padding: 0 20px;
    }

    .location-inner {
        flex-direction: column;
    }

    .location-map iframe {
        min-height: 300px;
    }

    .location-info {
        padding: 30px 0;
    }
}