.about {
    background-color: #f0ebe3;
}

.about_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 40px;
}

.about__content,
.about__image-container {
    flex: 1 1 0;
    min-width: 0;
}

.about__heading{
    margin: 0 0 16px;
    color: #121212;
    font-size: 32px;
    line-height: 1.2;
}

.about__image {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Mobile: stack content above image ------------------------------------ */
@media (max-width: 749px) {
    .about_container {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 20px;
        gap: 24px;
    }

    .about__heading {
        font-size: 26px;
    }
}