.article {
    position: relative;
}

.article__read-more::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media screen and (max-width: 1024px){
    .news-container {
        grid-template-columns: repeat(1, 1fr);
        max-width: 800px;
    }
}

@media screen and (max-width: 768px){

}

@media screen and (max-width: 480px){

}