html, 
body {
    font-family: "Helvetica", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
}

.news__title {
    font-family: "Helvetica", sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 96px;
}

.news__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 24px;
}

.news__container + .button {
    min-width: 208px;
    margin-top: 28px;
}

.news-card {
    display: flex;
    flex-direction: column;
    max-height: 429px;
    height: 100%;
}

.news-card:nth-child(15n - 14) {
    grid-column: 1/3;
}

.news-card:nth-child(10n) {
    grid-column: 3/5;
}

.wrap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    overflow: hidden;
    height: 270px;
    border-radius: 12px;
    position: relative;
    margin-bottom: 32px;
}

.wrap-img img {
    max-width: 100% !important;
    max-height: 100% !important;;
    width: 100% !important;;
    height: 100% !important;;
    object-fit: cover !important;;
    transition: transform 0.3s ease-in-out;
}

.wrap-img:hover img {
    transform: scale(1.02);
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color:#6C6C6C;
    font-size: 14px;
    line-height: 22.4px;
}

.badge {
    border-radius: 100px;
    border: 1px solid  #6C6C6C;
    padding: 2px 12px 3px 12px;
    white-space: nowrap;
}

.news-card__title {
    max-width: 260px;
    width: 100%;
    color: #fff;
}

.contacts {
    margin-top: 40px;
}

.blur-bg {
    position: absolute;
    top: 40px;
    right: -14%;
    left: unset;
    background: #5317FF;
}

@media only screen and (max-width: 1200px) {
    .news__container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .news-card:first-child {
        grid-column: 1/3;
    }

    .news-card:nth-child(10n) {
        grid-column: auto;
    }
}

@media only screen and (max-width: 992px) {
    .news__title {
        font-size: 56px;
        margin-bottom: 40px;
    }
    .wrap-img {
        height: 220px;
    }
    .contacts {
        margin-top: 0;
    }
}

@media only screen and (max-width: 768px) {
    .news__container {
        grid-template-columns: 1fr;
    }

    .news-card:first-child {
        grid-column: auto;
    }
}