/* ============================================
   MOBIELE RESPONSIVE FIX – ALLEEN VOOR CONTENT
   (NIET VOOR HEADER OF FOOTER)
   ============================================ */

@media (max-width: 768px) {

    /* Alle content-groepen krijgen volledige breedte */
    .entry-content .wp-block-group,
    .entry-content .wp-block-columns,
    .entry-content .wp-block-column,
    .entry-content .is-layout-flex,
    .entry-content .is-layout-grid {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    /* Flex layouts in content mogen stacken */
    .entry-content .is-layout-flex {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Columns netjes onder elkaar */
    .entry-content .wp-block-columns {
        display: block !important;
    }

    .entry-content .wp-block-column {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* Grids worden blokken */
    .entry-content .is-layout-grid {
        display: block !important;
    }

    /* Content padding zodat tekst niet tegen de rand zit */
    .entry-content .wp-block-group {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
/* ============================================
   MOBIEL: MEER RUIMTE TUSSEN CONTENT BLOKKEN
   ============================================ */

@media (max-width: 768px) {

    /* Extra ruimte tussen headings en paragrafen */
    .entry-content h2,
    .entry-content h3,
    .entry-content h4 {
        margin-top: 24px !important;
        margin-bottom: 8px !important;
    }

    /* Ruimte tussen paragrafen */
    .entry-content p {
        margin-bottom: 18px !important;
    }

    /* Ruimte tussen group blocks (zoals jouw OSINT-secties) */
    .entry-content .wp-block-group {
        margin-bottom: 28px !important;
    }

    /* Ruimte tussen lijst-items */
    .entry-content li {
        margin-bottom: 10px !important;
    }
}

