.maps-block {
    display: flex;
    justify-content: space-between;
    background: var(--color-surface-light, #E6E6E6);
    border-radius: 32px;
    padding-left: var(--spacing-xl);
}

.maps-block .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 534px;
}

.map-wrapper {
    display: flex;
    max-width: 816px;
    width: 100%;
}

.map-wrapper iframe {
    border-radius: 24px;
    height: 498px;
    width: 100%;
}

@media (max-width: 992px) {

    .maps-block {
        flex-direction: column;
        padding-left: 0;
    }

    .maps-block .text-wrapper {
        padding: 24px;
    }

}