/*
Theme Name: bloghash Child
Theme URI: https://reta.comun.red/
Description: Child theme de RETA
Author: comun.red
Author URI: https://comun.red
Template: bloghash
Version: 1.0.0
*/

ul.tweets.wp-block-latest-posts .wp-block-latest-posts__post-title {
    display: none;
}

/* Aplica masonry con CSS Columns a tu UL de tweets */
ul.tweets.wp-block-latest-posts {
    column-count: 5 !important;
    column-gap: 1.5rem !important;
    /* Elimina cualquier display grid o flex */
    display: block !important;
}

/* Cada tweet (li) no se rompe entre columnas */
ul.tweets.wp-block-latest-posts li {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    margin-bottom: 1.5rem !important;
    display: inline-block !important;
    width: 100% !important;
    /* Elimina floats o posicionamientos previos */
    float: none !important;
}

/* Responsive igual que Twenty Fifteen */
@media screen and (max-width: 768px) {
    ul.tweets.wp-block-latest-posts {
        column-count: 2 !important;
    }
}

@media screen and (max-width: 480px) {
    ul.tweets.wp-block-latest-posts {
        column-count: 1 !important;
    }
}
