.static-map-section {
    .static-map__inner {
        display: flex;
        align-items: center;
        gap: 100px;
        padding: 64px 24px;

        @media (max-width: 992px) {
            flex-direction: row;
            flex-wrap: wrap;
            width: 100%;
            gap: 24px;
            padding: 0 24px;
        }
    }

    .static-map__image {
        flex: 1 1 60%;

        img {
            width: 100%;
            height: auto;
        }
    }

    .static-map__content {
        flex: 1 1 40%;
    }

    .static-map__title {
        margin: 0;
        font-family: 'Outfit', sans-serif;
        font-size: clamp(64px, 2rem, 48px);
        font-weight: 800;
        color: #17407d;
        text-transform: uppercase;
        line-height: 1;
    }

    .static-map__separator {
        display: block;
        margin: 26px 0;
        width: 100%;
        height: 1px;
        background-color: #CBC4B5;
    }

    .static-map__description {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.2;
        color: #001E44;
        margin: 24px 0;
    }

    .static-map__link {
        display: inline-block;
        padding: 15px 30px;
        background: #377EE4;
        color: #fff;

        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.188px;
        text-transform: uppercase;
        text-decoration: none;
    }
}