.introductory-remarks__section {
    background: radial-gradient(198.13% 90.64% at 12.47% 29.59%, #c3daf9 0%, #e8eaff 100%);
}

.introductory-remarks__wrapper {
    display: flex;
    gap: 30px;
}

.introductory-remarks__column {
    flex-basis: 393.33px;
}

.introductory-remarks__column--left,
.introductory-remarks__column--right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.introductory-remarks__column--center {
    border-radius: 32px;
    padding: 24px 24px 34px 24px;
    background: #FFF;
}

.introductory-remarks__column--center:has(.introductory-remarks__center-image) {
    background: none;
    padding: 0;
    overflow: hidden;
}


.introductory-remarks__center-image {
    height: 625px;
    object-fit: cover;
}
.introductory-remarks__center-title {
    border-radius: 32px;
    padding: 8px 15px;
    width: 100%;
    background: #f3da63;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}


.introductory-remarks__bottom-text {
    margin-top: 12px;
}

.introductory-remarks__center-title-dn {
    display: none;
}

@media screen and (max-width: 991.98px) {
    .introductory-remarks__wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .introductory-remarks__column {
        flex-basis: 100%;
    }

    .introductory-remarks__column--left {
        order: 1;
    }

    .introductory-remarks__column--center {
        order: 4;
    }

    .introductory-remarks__column--right {
        order: 2;
        margin-bottom: 20px;
    }

    .introductory-remarks__title * {
        margin-bottom: 12px;
    }

    .introductory-remarks__center-image {
        height: auto;
    }

    .introductory-remarks__center-title {
        display: none;
    }

    .introductory-remarks__center-title-dn {
        display: block;
        order: 3;
    }
}

@media screen and (max-width: 599.98px) {
    .introductory-remarks__center-image {
        max-height: 450px;
    }
}

