.front-our-approach__top {
    margin-bottom: 52px;
}

.front-our-approach__subtitle {
    padding-block: 23px;
    border-top: 1px solid #E9EAEB;
    color: #615E5B;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.33px;
    text-transform: uppercase;
    margin-bottom: 52px;
}

.front-our-approach__title {
    margin-bottom: 30px;
}

.front-our-approach__description {
    font-size: 18px;
    line-height: 1.3;

    & > *:nth-child(2) {
        margin-bottom: 24px;
    }
}


@media screen and (max-width: 1024px) {
    .front-our-approach__list-container {
        padding-inline: 10px;
    }
}

@media screen and (min-width: 1300px) {
    .front-our-approach__list-container {
        margin-left: calc((100vw - 1300px) / 2);
    }
}

.front-our-approach__list {
    display: grid;
    margin-bottom: 52px;

    @media screen and (min-width: 1025px) {
        grid-template-columns: repeat(5, 292px);
        overflow: auto;
        gap: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
    }

    @media screen and (max-width: 1024px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;

        & > *:last-child {
            grid-column: 1 / -1;
        }
    }
}

.front-our-approach__list-item {
    padding: 26px 18px 24px 28px;
    border-radius: 32px;
    border: 1px solid var(--color-grey-92);
    background: var(--color-white-solid);
    min-height: 198px;
    transition: var(--transition);

    &:hover {
        background: var(--color-grey-94);
        @media screen and (min-width: 1025px) {
            box-shadow: 0 67px 19px 0 rgba(0, 0, 0, 0.00), 0 43px 17px 0 rgba(0, 0, 0, 0.01), 0 24px 15px 0 rgba(0, 0, 0, 0.05), 0 11px 11px 0 rgba(0, 0, 0, 0.09), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
        }
    }
}

.front-our-approach__list-item-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: var(--letter-spacing--0_48);
    color: var(--color-grey-37);

    @media screen and (max-width: 1024px) {
        font-size: 20px;
    }
}

.front-our-approach__description--bottom {
    margin-bottom: 24px;
}