.page-news__content {
    max-width: 1470px;
    margin: 0 auto;
}

.page-news__title {
    margin-bottom: 16px;
}

.page-news__news {
    margin-bottom: 16px;
}

.page-news__show-more {
    text-align: center;
}

.news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.news__item {
    border-radius: 12px;
    padding: 8px 16px 16px 16px;
    border: 1px solid var(--blue-light-color-4);
    background-color: var(--blue-light-color-5);
}

.news__img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.news__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.news__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-light-color-3);
}

.news__calendar,
.news__text {
    font-size: 14px;
    line-height: 18.2px;
}

.news__calendar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news__calendar-text {
    padding-top: 4px;
}

.news__item:nth-of-type(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.news__item:nth-of-type(1) .news__title {
    font-size: 36px;
    line-height: 46.8px;
}

.news__item:nth-of-type(1) .news__text {
    font-size: 16px;
    line-height: 20.8px;
    font-weight: 700;
}

.news__additionally {
    margin-top: 16px;
}

@media (max-width: 1579px) { 
 
    .page-news__news {
        grid-template-columns: repeat(2, 1fr);
    }

    .news__item:nth-of-type(1) .news__title {
        font-size: 28px;
        line-height: 36.4px;
    }
} 
 
@media (max-width: 905px) { 
 
    .news__item:nth-of-type(1) .news__title {
        font-size: 18px;
        line-height: 23.4px;
    }
    
    .news__item:nth-of-type(1) .news__text {
        font-weight: 400;
    }
} 
 
@media (max-width: 719px) { 
     
    .page-news__news {
        grid-template-columns: repeat(1, 1fr);
    }

    .news__item:nth-of-type(1) {
        grid-column: initial;
        grid-row: initial;
    }
}