/* hsb_home_scrollpos.v14.css - place section content in upper area while scrolling */
html { scroll-padding-top: 90px; }

.fp-section { scroll-margin-top: 90px; }

/* Move content upward (less top padding than v14 original) */
.fp-section .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(36px, 6vh, 84px);
}

/* Override any vertical centering from legacy rules */
.fp-section .inner.center,
.fp-section.center .inner {
  justify-content: flex-start;
}

@media (max-width: 820px) {
  .fp-section .inner {
    padding-top: clamp(28px, 5vh, 64px);
  }
}
