.section-strip {
    width: 100%;
    padding: clamp(40px, 5vw, 60px) 0;
}

.section-strip--light {
    background-color: #f9f2eb; /* как на скрине, сможешь подогнать точно */
}

.section-strip .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

.section-strip__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    column-gap: clamp(24px, 4vw, 48px);
    row-gap: clamp(24px, 4vw, 32px);
}

/* Title – Riel 96/100 (через clamp) */
.section-strip__title {
    margin: 0;
    font-family: "Riel", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(28px, 5vw, 64px);
    line-height: clamp(32px, 5.2vw, 72px);
    letter-spacing: 0;
    color: #292925;
    max-width: 662px;
}

/* Content – Riel 21/28 */
.section-strip__content p {
    margin: 0 0 clamp(6px, 1vw, 10px);
    font-family: "Riel", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 1.4vw, 21px);
    line-height: clamp(20px, 2vw, 28px);
    letter-spacing: 0;
    color: #292925;
}

/* Responsive */

@media (max-width: 992px) {
    .section-strip__inner {
        grid-template-columns: 1fr;
    }
}