.expect-section__text-wrapper {
    width: 650px;
    flex-basis: 650px;
    max-width: 100%;
    margin-inline: auto;
}

.expect-section__text-wrapper h2 {
    width: 620px;
    margin-inline: auto;
}

.expect-section-columns {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-block: 54px;

    @media screen and (min-width: 767.8px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expect-column__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    max-width: 100%;
    margin-inline: auto;
}

.expect-image-wrapper {
    height: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-basis: 100%;
}

.expect-image-wrapper img {
    max-height: 200px;
    height: 200px;
    width: auto;
}

.expect-text-wrapper {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
}

.expect-text-wrapper .expect-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
}

.expect-text-wrapper .expect-text {
    font-size: 16px;
    font-weight: 400;
}

.stands-section__text-wrapper .title {
    font-style: italic;
    font-weight: 400;
    position: relative;
    width: fit-content;
    margin-inline: auto;
}

.stands-section__text-wrapper .title::before {
    display: none;
    @media screen and (min-width: 767.8px) {
        content: "";
        display: block;
        position: absolute;
        left: -110px;
        top: 0;
        width: 110px;
        height: 100px;
        background-image: url("./assets/images/orange-arrow.webp");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }


}

.stands-section-columns {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin-block: 54px;
    @media screen and (min-width: 767.8px) {
        grid-template-columns: repeat(2, 1fr);
    }


    @media screen and (min-width: 1024.8px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stand-column__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    max-width: 100%;
    margin-inline: auto;
}

.stand-image-wrapper {
    height: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-basis: 100%;
}

.stand-image-wrapper img {
    max-height: 200px;
    height: 200px;
    width: auto;
}

.stand-text-wrapper {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
}

.stand-text-wrapper .expect-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
}

.stand-text-wrapper .expect-text {
    font-size: 16px;
    font-weight: 400;
}

.expect-section__button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.expect-section__button-wrapper a {
    @media screen and (max-width: 575.8px) {
        width: 100%;
        text-align: center;
    }
}