/*Читайте еще*/
.read-also {
    margin-top: 1.875rem;
}
.read-also__title {
    font-size: var(--s28);
    font-weight: 600;
    margin-bottom: 1.56rem;
}
.news-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 1.875rem;
}

.news-item {
    border-radius: .625rem;
    background: #F6F4F4;

    display: flex;
    flex-direction: column;
}
.news-item .img__container {
    aspect-ratio: 340/300;
    flex-shrink: 0;
    background-color: white;
}
.news-item__text-block {
    padding: 1.43rem 1.2rem 1.2rem 1.2rem;
    flex:1;
    display: flex;
    flex-direction: column;
}
.news-item__text-block h3 {
    font-size: var(--s18);
    font-weight: 700;

    margin-bottom: 1.5rem;
}
.news-item__text-block .news-item__preview-text {
    font-size: var(--s15);
    color: var(--cl-greenish-wet-asphalt);

    margin-bottom: 1.5rem;
}
.news-item__bottom-info p{
    font-size: var(--s16);
    font-weight: 800;
}
.news-item__bottom-info{
    display: flex;
    justify-content: space-between;

    margin-top:auto;
}
.news-item__views {
    font-size: var(--s15);
    color: var(--cl-greenish-wet-asphalt);
    display: flex;
    align-items: center;
}
.news-item__views svg {
    margin-right: .7rem;
    width: 1.25rem;
    height: auto;
}