.news {
    margin: 120px 0 100px;
}

.news__title {
    font-weight: 800;
    font-size: 58px;
    line-height: 120%;
    text-align: center;
}

.news__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin: 30px 0 0;
}

.news__blocks {
    margin: 50px 0 0;
    display: flex;
    align-items: stretch;
    column-gap: 30px;
}

.news__item {
    padding: 30px;
    background: #222222;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: space-between;
    aspect-ratio: 1 / 1;
}

.news__item-category {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    text-decoration: none;
    color: #ABA6F2;
}

.news__item-date {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #F5F5F5;
    font-style: italic;
}

.news__item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
}

.news__item-title a {
    color: #F5F5F5;
    text-decoration: none;
}

.news__item-thumb a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__item-thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.news__blocks-main {
    width: calc(50% - 15px);
}

.news__blocks-main .news__item {
    padding: 40px;
}

.news__blocks-main .news__item-title {
    font-size: 36px;
}

.news__blocks-secondary {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 30px;
    row-gap: 30px;
}

.news__blocks-secondary .news__item {
    width: calc(50% - 15px);
}

@media (max-width: 1100px) {
    .news {
        margin: 40px 10px;
    }

    .news__title {
        font-weight: 700;
        font-size: 24px;
    }

    .news__description {
        font-size: 14px;
    }

    .news__blocks {
        flex-direction: column;
        row-gap: 10px;
        margin: 30px -10px 0;
    }

    .news__blocks-main {
        width: 100%;
    }

    .news__blocks-secondary {
        width: 100%;
        row-gap: 10px;
    }

    .news__blocks-main .news__item,
    .news__blocks-secondary .news__item {
        width: 100%;
        padding: 40px 20px;
        aspect-ratio: unset;
        border-radius: unset;
        row-gap: 20px;
    }

    .news__blocks-main .news__item-title,
    .news__blocks-secondary .news__item-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .news__description {
        margin: 20px 0 0;
    }
    .news__item-thumb img {
        height: 240px;
    }
}