.rotating-tagline {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fixed slot — rotation swaps text without resizing the hero */
.home-hero__tagline.rotating-tagline {
  height: calc(3 * 1.45em);
  min-height: calc(3 * 1.45em);
  max-height: calc(3 * 1.45em);
}

.footer__tagline.rotating-tagline {
  height: calc(2 * 1.45em);
  min-height: calc(2 * 1.45em);
  max-height: calc(2 * 1.45em);
  line-height: 1.45;
  justify-content: flex-start;
}

.rotating-tagline__text {
  display: block;
  width: 100%;
  animation: tagline-fade-in 0.6s ease;
}

@keyframes tagline-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rotating-tagline__text {
    animation: none;
  }
}
