.news__wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}
.news__about {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.news__about-title {
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 120%;
}
.news__about-text {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.news__block {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.news__block-title {
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 120%;
}
.news__block-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.news__list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.news__item {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.news__item:not(:last-child) {
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--grey3);
}
.news__item-image {
    width: 15.1rem;
    height: 10.1rem;
    flex: 0 0 auto;
}
.news__item-image img {
    object-fit: cover;
}
.news__item-content {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    flex: 1;
}
.news__item-date {
    font-size: 1.4rem;
    line-height: 115%;
    color: var(--grey4);
    padding-left: 1rem;
    border-left: 1px solid var(--primary);
}
.news__item-text {
    font-size: 1.6rem;
    line-height: 120%;
}

@media (min-width: 768px) and (max-width: 1280px) {

}

@media (max-width: 767px) {
    .news__wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 2.4rem;
    }
    .news__item {
        flex-direction: column;
    }
    .news__item-image {
        width: 100%;
        height: 23rem;
    }
}