.about__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.about__card-icon{
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 16px;
    opacity: 0.7;
}
.about__card-title {
    margin-bottom: 10px;
}

.about__img {
    background-color: var(--white-bg);
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .about__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .about__cards {
        margin-bottom: 70px;
    }

    .about__img {
        aspect-ratio: 16/8;
    }
}