.listado-posts {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.listado-posts:before,
.listado-posts:after {
    display: none;
}
.listado-posts .post {
    margin-bottom: 12rem;
}
.listado-posts .post a {  
    height: 100%;
    position: relative;
    display: block;
}
.listado-posts .post a:before {
    content: '';
    width: calc(100% - 13rem);
    height: 100%;
    background-color: rgba(10,59,97,0.7);
    background-image: url('../../../../images/iconos/search-white.svg');
    background-position: center top 35rem;
    background-repeat: no-repeat;
    position: absolute;
    left: 6.5rem;
    top: 0;    
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 1;
}
.listado-posts .post a:before,
.listado-posts .post a:active:before,
.mobile .listado-posts .post a:hover:before {
    opacity: 0;
}
.listado-posts .post a:hover:before,
.listado-posts .post a:focus:before {
    opacity: 1;
}
.listado-posts .post .post-tit {
    margin-bottom: 0;
    padding: 5rem 11.5rem;    
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 2;
}
.listado-posts .post a .post-tit,
.listado-posts .post a:active .post-tit,
.mobile .listado-posts .post a:hover .post-tit {
    color: #0a3b61;
}
.listado-posts .post a:hover .post-tit,
.listado-posts .post a:focus .post-tit {
    color: white;
}


@media (min-width: 768px) and (max-width: 991px) {    
    .listado-posts .post .post-tit {
        padding: 5rem 6rem;
    }
    .listado-posts .post a:before {
        width: calc(100% - 4rem);
        left: 2rem;
    }
}
@media (min-width: 768px) {
    .listado-posts .post:nth-child(3n + 1) {
        padding-right: 6.25rem;
    }
    .listado-posts .post:nth-child(3n + 2) {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .listado-posts .post:nth-child(3n + 3) {
        padding-left: 6.25rem;
    }
}
@media (max-width: 767px) {
    .listado-posts .post .post-tit {
        font-size: 4rem;
    }
    .listado-posts .post a .post-tit {
        padding: 3rem 1rem;
    }
    .listado-posts .post a:before {
        width: 100%;
        background-image: none;
        left: 0;
    }
        
}