/* Kein Seitentitel auf Homepage */
.home .wp-block-post-title,
body.home .wp-block-post-title {
    display: none !important;
}
/* Datum und Meta ausblenden */
.wp-block-post-date,
.post-date,
.wp-block-post-author,
.post-author,
.wp-block-post-terms,
.post-terms {
    display: none !important;
}
/* Hide CS from language switcher */
option[value*="/cs/"] { display: none; }

/* ═══ MOBILE RESPONSIVE (added 13.08.2026) ═══ */
/* Tables: horizontal scroll on narrow screens */
@media (max-width: 782px) {
    figure.wp-block-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    figure.wp-block-table table {
        min-width: 480px;
    }
    /* Buttons full-width, tap-friendly */
    .wp-block-button__link {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    /* Stats/hero columns stack */
    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-basis: 100% !important;
        margin-left: 0 !important;
    }
}
