/*
Archivo: estilos-blog.css
Descripción: Estilos personalizados para "Blog".
Autor: Nexbu
Fecha: 31 Enero 2025
*/
/**** BLOG ****/
/* FILTRO */
select#ordenar-blog {
    background-color: #ffffff00;
    border: 0;
    text-align: right;
    font-weight: 500;
    padding-right: 5px;
}
/* LOOP POST FILTRO */
article.post-item {
    background-color: #fff;
    padding: 10px 10px 15px;
}
.loop-post {
    display: flex;
    flex-direction: column;
    height: 98px!important;
    justify-content: space-between;
}
img.lopp-post-img, .filtro-articulo .img-articulo {
    height: 142px!important;
    object-fit: cover;
    width: 100%!important;
}
article.post-item h2 {
    display: -webkit-box;
    font-size: var(--e-global-typography-275b3db-font-size)!important;
    font-weight: var(--e-global-typography-275b3db-font-weight);
    line-height: var(--e-global-typography-275b3db-line-height);
    margin: 6px 0 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
p.post-autor, p.post-fecha {
    font-size: var(--e-global-typography-0d554b3-font-size);
    font-weight: var(--e-global-typography-0d554b3-font-weight);
    line-height: var(--e-global-typography-0d554b3-line-height);
    color: var(--e-global-color-text);
}
p.post-fecha {
    color: var(--e-global-color-secondary);
}
/* PÁGINA INTERNA BLOG */
blockquote.wp-block-quote, .p-cita {
    background-color: #f6f6f6;
    display: block;
    font-weight: 500;
    margin: 20px 0 0;
    padding: 20px;
}
span.elementor-post-info__terms-list {
    font-size: 0;
}
span.elementor-post-info__terms-list-item {
    border: 1px solid;
    border-radius: 20px;
    font-size: var( --e-global-typography-text-font-size );
    margin-right: 10px;
    padding: 5px 15px;
}
/*** RESPONSIVE ***/
/* MOBILE */
@media only screen and (max-width: 600px) {
    /* LOOP POST FILTRO */
    .loop-post, .filtro-articulo .loop-articulo {
        min-height: auto!important;
        height: auto!important;
    }
    img.lopp-post-img, .filtro-articulo .img-articulo {
        height: 130px!important;
    }
    .loop-post div {
        padding-top: 10px;
    }
}
/*** FIN: RESPONSIVE ***/
/**** FIN: BLOG ****/