/* Section title load-in animation */
.section-title {
  overflow: hidden;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title p {
  opacity: 0;
  transform: translateY(14px);
  animation: sectionFadeUp 600ms ease-out forwards;
}

/* Stagger common children a bit for a polished look */
.section-title h1 {
  animation-delay: 0ms;
}

.section-title h2 {
  animation-delay: 0ms;
}

.section-title h3 {
  animation-delay: 60ms;
}

.section-title p {
  animation-delay: 120ms;
}

@keyframes sectionFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {

  .section-title h1,
  .section-title h2,
  .section-title h3,
  .section-title h4,
  .section-title p {
    animation: none;
    opacity: 1;
    transform: none;
  }
}