.hero-slides { position: absolute; inset: 0; }
.hero-photo .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; object-position: var(--photo-position, 50% 65%); }
.hero-photo .hero-slide.is-active { opacity: 1; }
.hero .hero-copy { padding-bottom: 112px; }
.hero-carousel-controls { position: absolute; left: var(--pad); bottom: 22px; display: flex; gap: 4px; align-items: center; padding: 4px 8px; border: 1px solid #ffffff60; border-radius: 40px; background: #141214bb; backdrop-filter: blur(10px); }
.hero-carousel-controls button { display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #fff; font: 26px/1 Arial, sans-serif; }
.hero-carousel-controls button:hover { background: #da8cab; color: #141214; }
.hero-carousel-controls button:focus-visible { outline-offset: 1px; }
.hero-carousel-controls button[data-hero-pause] { font-size: 17px; }
.hero-carousel-count { color: #fff; font: 12px/1 Arial, sans-serif; font-variant-numeric: tabular-nums; min-width: 48px; text-align: center; }
@keyframes hero-copy-enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > :not(h1), .hero h1 > span { animation: hero-copy-enter .8s cubic-bezier(.2,.7,.2,1) both; }
  .hero h1 > span:nth-child(1) { animation-delay: .1s; }
  .hero h1 > span:nth-child(2) { animation-delay: .2s; }
  .hero h1 > span:nth-child(3) { animation-delay: .3s; }
  .hero-copy > .pink-dash { animation-delay: .4s; }
  .hero-copy > p { animation-delay: .5s; }
  .hero-copy > .hero-actions { animation-delay: .6s; }
  .hero-copy > .hero-status { animation-delay: .7s; }
}
@media (max-width: 760px) {
  .hero-photo .hero-slide { object-position: var(--photo-position-mobile, 70% 60%); }
  .hero .hero-copy { padding-bottom: 102px; }
  .hero .hero-status { position: static; }
  .hero .hero-cause { margin-top: 0; }
  .hero-carousel-controls { bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo .hero-slide { transition: none; }
}
