.site_header{
    text-align: center;
    margin: 40px 0px;
}

.site_header h1{
    font-family: var(--fontTema);
    font-size: 2em;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 30px;
}

.site_header b{
    font-family: var(--fontTema);
    color: var(--colorSecondary);
    font-weight: 400;
}

.site_header p{
    font-size: 0.8em;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}

.noticias{
    margin: 40px 0;
}

.noticias .noticias_top{
    display: inline-block;
    width: 68%;
    padding-right: 20px;
    vertical-align: top;
}

.noticias .post_list{
    margin: 0;
    padding: 0;
    position: relative;
}

.noticias .post_list .tagline{
    display: none;
}

.noticias .post_list .link{
    position: absolute;
    right: 15px;
    top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.875em;
    transition-duration: 0.3s;
}

.noticias .post_list:hover .link,
.noticias .post_list p .link:hover{
    background: var(--colorSecondaryGradient);
}

.noticias .noticias_more{
    display: inline-block;
    width: 31.6%;
    vertical-align: top;
}

.noticias .noticias_more .post_list:last-of-type{
    margin-top: 26px;
}

.noticias .post_list h1{
    position: absolute;
    width: 1px;
    text-indent: -9999px;
}

.img-responsive-16by9 {
    display: block;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.img-responsive-16by9 img {
    width: 100%;
}

@media (max-width: 48em){
    .noticias .noticias_top,
    .noticias .noticias_more{
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .noticias .noticias_more .post_list,
    .noticias .noticias_more .post_list:last-of-type{
        width: 50%;
        margin: 0;
        padding: 0;
        vertical-align: top;
    }
}