.learning-section {
    margin-top: 80px;
}

.learning-section__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    margin: 0 0 40px;
    max-width: 840px;
    color: #000;
}

.learning-list {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.learning-list__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 30px;
    background: #fff;
    min-height: 160px;
    box-sizing: border-box;
}

.learning-list__img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.learning-list__text {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
    color: #000;
}

@media screen and (max-width: 1399px) {
    .learning-list {
        grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    }
}

@media screen and (max-width: 991px) {
    .learning-section__title {
        font-size: 26px;
    }
}

@media screen and (max-width: 767px) {
    .learning-list {
        grid-template-columns: 100%;
    }
}

@media screen and (max-width: 575px) {
    .learning-section__title {
        font-size: 22px;
    }

    .learning-list {
        gap: 14px;
    }
}