.textwithmap {
    background: #fff;
    padding-bottom: 90px;
}

/* ───── разделительная линия ───── */
.textwithmap__divider {
    width: 1100px;
    max-width: calc(100% - 40px);
    height: 1px;
    background: #d9d9d9;
    margin: 80px auto 80px;
}

/* ───── текст ───── */
.textwithmap__content {
    max-width: 880px; /* УЗКО, КАК В TILDA */
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
}

.textwithmap__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.textwithmap__text {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

/* ───── карта ───── */
.textwithmap__map {
    width: 900px;              /* НЕ ВО ВСЮ ШИРИНУ */
    max-width: calc(100% - 40px);
    margin: 0 auto;
    opacity: 1;
}

.textwithmap__map svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ───── адаптив ───── */
@media (max-width: 768px) {
    .textwithmap__divider {
        margin-bottom: 50px;
    }

    .textwithmap__title {
        font-size: 20px;
    }

    .textwithmap__text {
        font-size: 14px;
    }

    .textwithmap__map {
        width: 100%;
        opacity: 1;
    }
}