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

.site_header h1{
    font-family: 'UniNeueLight', sans-serif;
    font-size: 2.4em;
    font-weight: 400;
    /*text-transform: uppercase;*/
    /*letter-spacing: 2px;*/
    margin-bottom: 15px;
    color: #444;
}

.site_header b{
    font-family: 'UniNeueLight', sans-serif;
    color: var(--colorSecondary);
    font-weight: 600;
}

.site_header p{
    font-size: 1.1em;
    font-weight: 600;
    color: #777;
}

.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;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticias .post_list:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.noticias .post_list .link{
    position: absolute;
    right: 20px;
    top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

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

.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;
    position: relative;
}
.img-responsive-16by9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

    .noticias .noticias_top {
        margin-bottom: 20px;
    }

    .noticias .noticias_more .post_list,
    .noticias .noticias_more .post_list:last-of-type{
        width: 48%;
        margin: 0;
        padding: 0;
        vertical-align: top;
        display: inline-block;
        margin-right: 2%;
    }

    .noticias .noticias_more .post_list:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 30em){
    .noticias .noticias_more .post_list,
    .noticias .noticias_more .post_list:last-of-type{
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}