.news-row{

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: relative;

    margin-bottom: 8rem;

    padding-top: 8rem;

    border-top: 1px solid rgba(232, 129, 0, 1);

}

.news-row:first-child{

    border-top: none;

    padding-top: 0;

}

.news-pic{

    position: relative;

    width: 50%;

    

}

.news-video div{

    position: relative;

    width: 100%;

    padding-top: 56.25%;

}

.news-video div iframe{position: absolute;width: 100%;height: 100%;top: 0;left: 0;}

.news-content{

    /*position: relative;*/

    width: 40%;

}

.news-content h3{

    color: #000;

    font-size: 3.6rem;

    font-weight: 700;

    line-height: 1.25em;

}



.news-date{

    color: #898989;

    font-size: 1.4rem;

    font-weight: 300;

    margin:1em 0;

    display: block;

}

.news-content p{

    color: #000;

    font-size: 1.8rem;

    font-weight: 400;

    line-height: 2em;

}

.news-content a{

    position: absolute;

    right: 0;

    bottom: 0;

    background: rgba(232, 129, 0, 1);

    flex-shrink: 0;

    color: #fff;

    font-size: 1.6rem;

    font-weight: 500;

    line-height: 3em;

    display: block;

    padding: 0 2em;

    border-radius: 3rem;

}



.news-content a:hover{

    background: rgba(232, 129, 0, .6);

}



@media (max-width: 767px){

    .news-content h3{font-size: 30px;}

    .news-row{flex-direction: column;}

    .news-pic{width: 100%;}

    .news-content{width: 100%;display: flex;flex-direction: column;margin-top: 5rem;}

    .news-content a{position: relative;display: block;align-self: flex-end;margin-top: 2rem;}

    .news-date{font-size: 2rem;}

    .news-content p,.news-content a{font-size: 16px;}

}