
/* =========  BASE  ========= */
.wp-listcontent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* elementos solitarios a la izquierda */
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: solid 1px #eceff5;
    box-sizing: border-box;
}



.imgcircle {
    width: 90%;
    margin: 0 auto -4px;             /* ? -4px sube el texto que viene después */
    height: auto;
    border-radius: 10%;
    object-fit: cover;
    display: block;
    background-color: #000000a1;
    padding-bottom: 10px;
    margin-bottom: 0; /* quitar espacio extra */
    border: 1px solid rgba(0,0,0,0.2); /* borde fino y definido */
    box-shadow: 0 6px 10px rgba(0,0,0,0.25); /* sombra “hacia abajo” */
}


.information-cat > a {
    font-weight: 500;
    color: #fff;
    background: #000000ab;
    position: relative;
    border-radius: 0 0 5px 5px;
    width: 100%;
    padding: 3px 5px;
    text-align: center;
    font-size: 15px;
    line-height: 1.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: -35px;
    margin-top: -35px;
}


.break-mobile {
    display: inline;
}

.entry-pop {
    flex: 0 1 calc(100% / 3);
    max-width: calc(100% / 3);
    margin: 0;
    padding: 10px;
    position: relative;
    box-sizing: border-box;
}

/* ======= TABLET GRANDE ======= */
@media only screen and (max-width: 960px) {
    .entry-pop {
        flex: 0 1 calc(100% / 3);
        max-width: calc(100% / 3);
    }
    .break-mobile {
        display: none;
    }
}

/* ========= MÓVILES ========= */
@media only screen and (max-width: 600px) {
    .entry-pop {
        flex: 0 1 50%;
        max-width: 50%;
        padding: 10px;
        box-sizing: border-box;
    }

    /*  --- palabra abajo de la primera --- */
    .information-cat > a {
        margin-top: -35px;
    	margin-bottom: -35px;
        height: auto;
        min-height: 40px;
        display: flex;           /* flexbox en columna */
        flex-direction: column;
        align-items: center;     /* centra horizontalmente */
        line-height: 1.1;        /* ajusta el interlineado */
    }

    /* el span ya está en el HTML; con flex basta */
    .information-cat .second-word {
        display: inline;
    }
}

