.news__content{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.news__title{
    margin-bottom: 50px;
}


.news__last-post{
    display: flex;
    
    border: 2px solid #dfe2e9;
    
    padding: 20px;
    box-sizing: border-box;

    transition: .2s transform ;
}
.news__last-post:hover{
    transform: scale(1.03);
}
@media screen and (max-width: 768px) {
    .news__last-post{
        display: block;
    }
    .news__last-post-content{
        margin: 18px 0 3px;
    }
}

.news__last-post-img{
    flex: 0 0 50%;

    height: 300px;
    
    margin-right: 20px;
    
    border: 2px solid #dfe2e9;
    background-color: #fff;
}
.news__last-post-img-inner{
    width: 100%;
    height: 100%;

    object-fit: contain;
    /* object-fit: cover; */
}


.news__last-post-subtitle{
    margin-bottom: 10px;
}
.news__last-post-description{
    margin: 28px 0 auto;

    text-align: justify;
}
@media screen and (max-width: 992px ) {
    .news__last-post-description{
        margin: 8px 0 auto;
    }
}
@media screen and (max-width: 992px ) {
    .news__last-post-description{
        margin: 24px 0 0;
    }
}

.news__last-post-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 28px 0 auto;
}


