.about-intro__wrapper {
    display: flex;
    gap: 30px;
}
.about-intro__wrapper .redactor {
    max-width: 770px;
    width: 100%;
}

.about-intro__wrapper .image {
    max-width: 370px;
    width: 100%;
    max-height: 430px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.about-intro__wrapper .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .about-intro__wrapper {
        flex-direction: column-reverse;
    }
    .about-intro__wrapper .redactor {
        max-width: 100%;
        max-height: 300px;
    }
    .about-intro__wrapper .image {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .about-intro__wrapper .image {
        max-height: 200px;
    }
}