.news-page {
    display: grid;
    grid-template-columns: 72px auto 72px;
    grid-template-rows: 216px auto 72px;
    row-gap: 24px;
}

.news-page .main-image {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-column-end: 4;
    overflow: hidden;
    position: relative;
}

.news-page .news {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid;
    border-bottom-color: #00000059;
    grid-column-start: 2;
    grid-row-start: 2;
}

.news-page .news .title-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 24px;
    border-bottom: 1px solid;
    border-bottom-color: #00000059;
    margin-bottom: 24px;
}

.news-page .news .title-wrapper .date {
    font-weight: 700;
    margin-right: 24px;
}

.news-page .news .title-wrapper .title {
    font-weight: 400;
}

.news-page .news .document-wrapper .document img {
    height: 24px;
}

.news-page .news .document-wrapper {
    display: flex;
    flex-direction: column;
    margin: 36px 0px;
}

.news-page .news .content .title {
    font-size: 18px;
    font-weight: 500;
}

.news-page .news .content {
    margin-bottom: 24px;
}

@media(min-width: 600px) {
    .news-page .news .content {
        width: 85%;
    }
}