*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.news-body {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    padding-top: 50px;
}

.news-post {
    width: 100%;
    max-width: 91rem;
    padding: 6.2rem;
    background-color: #ffffff;
    box-shadow: 0 1.4rem 8rem rgba(160, 160, 160, 0.2);
    display: flex;
    align-items: center;
    border-radius: .8rem;
    background-color: rgb(230, 247, 255);
}

.news-img img {
    min-width: 35rem;
    max-width: 35rem;
    height: 30rem;
    transform: translateX(-8rem);
    position: relative;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: .8rem;
}

.news-img::before {
    content: '';
    width: 100%;
    height: auto;
    position: absolute; 
    top: 0;
    left: 0;
}

.news-date span {
    display: block;
    color: rgba(0,0,0,.5);
    font-size: 1.6rem;
    font-weight: 600;
    margin: .5rem 0;
    text-align: left;
}



.news-title {
    text-align: left;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
}

.news-title p {
    text-transform: none;
    font-weight: normal;
    font-size: 15px;
    color: rgba(0,0,0,.5);
    margin-bottom: 3rem;
}

.news-title a {
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.4rem;
    background-color: rgb(39, 128, 212);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: .8rem;
    text-decoration: none;
}

.news-title a:hover{

    background-color: rgb(0, 0, 0);

}

@media screen and (max-width: 768px) {
    .news-post {
        max-width: 70rem;
        padding: 2.5rem;
        flex-direction: column;
    }
    .news-img img{
        min-width: 100%;
        max-width: 100%;
        transform: translate(0, -8rem);
        border: solid rgb(230, 247, 255) 4px;
    }
}