.cards__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cards-item {
    padding: 2rem;
    background: #fff;
    gap: 1rem;
}

.cards-item__icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 3rem;
}

.cards-item__image {
    display: flex;
    aspect-ratio: 415/205;
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
}

.cards-item__title {
    font-weight: 600;
    font-size: 2rem;
}

.cards .section-header__info {
    max-width: 70rem;
}

.cards.section-white .cards-item {
    background: var(--color-gray);
}

@media screen and (max-width: 767.9px) {
    .cards__list {
        grid-template-columns: repeat(1, 1fr);
    }
}