.editor-styles-wrapper .wp-block.no-margin { margin-top: 0; margin-bottom: 0; } /* === FIX STICKY COLUMN FOR GUTENBERG / GUTENVERSE === */

/* Pastikan semua parent mengizinkan sticky */
.section-wrapper,
.guten-container,
.wp-block-columns,
.wp-block-column {
    overflow: visible !important;
}

/* Sticky column */
.sticky-column {
    position: sticky !important;
    top: 120px;
    z-index: 99;
}

/* Disable sticky on tablet */
@media (max-width: 1024px) {
    .sticky-column {
        position: static !important;
    }
}

/* Disable sticky on mobile */
@media (max-width: 768px) {
    .sticky-column {
        position: static !important;
    }
}
