/* Add padding to elements with background color */
.has-background:not(.wp-block-button__link),
[class*="is-style-section-"] {
    padding: var(--wp--custom--global--spacing--padding--background);
}

.wp-site-blocks {
    & > * {
        margin-top: 0;
    }
}

/* Animations */
.inner-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

/* Eindtoestand (zichtbaar) */
.inner-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Voor gebruikers met ‘reduce motion’ aan */
@media (prefers-reduced-motion: reduce) {
  .inner-animate {
    transition: none;
    transform: none;
    opacity: 1;
  }
}