.img_grid{
    display: grid;
    grid-template-columns: 2.8fr 7.2fr;
    grid-template-rows: 1fr;
    grid-column-gap: 2px;
    padding-top: 2em;
}

.img_grid figure:first-child{
     grid-area: 1 / 1 / 3 / 2; 
    }
.img_grid figure:nth-of-type(2) {
     grid-area: 1 / 2 / 2 / 3; 
    }
.img_grid p {
     grid-area: 2 / 2 / 3 / 3;
}
#news .news_table.list_table td{
    text-align: left;
}

