
.news-block {
    padding: 100px 260px;
    background-color: #E2E3F8;
}

.news-block__icon-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
}

.news-circle {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.news-block__icon-title h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: black;
    text-transform: uppercase;
}

.news-block__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.news-block__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 60px;
    text-decoration: none;
}

.news-block__link img {
    width: 100%;
    border-radius: 10px;
}

.news-block__link-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: black;
    text-decoration: underline;
}

@media (min-width: 1200px) and (max-width: 1670px) {
    .news-block {
        padding: 100px 99px;
    }

    .news-block__icon-title h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .news-circle {
        width: 14px;
        height: 14px;
    }

    .news-block__link-title {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .news-block {
        padding: 40px 20px;
    }

    .news-block__icon-title {
        margin-bottom: 20px;
    }

    .news-block__icon-title h5 {
        font-size: 18px;
    }

    .news-circle {
        width: 12px;
        height: 12px;
        margin-top: 5px;
    }

    .news-block__cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .news-block__link-title {
        font-size: 18px;
    }

    .news-block__link {
        gap: 20px;
    }
}