@keyframes mana-band-drift {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.18);
  }
}
.layout__band {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.layout__band.is-short {
  min-height: clamp(19.0909090909rem, 62vh, 29.0909090909rem);
}
.layout__band.is-tall {
  min-height: clamp(20.9090909091rem, 84vh, 40.9090909091rem);
}
.layout__band .band__media {
  position: absolute;
  inset: -14% 0;
  z-index: 0;
  will-change: transform;
}
.layout__band .band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: mana-band-drift 18s ease-in-out infinite alternate;
}
.layout__band .band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.layout__band.is-left .band__scrim {
  background: linear-gradient(to right, rgba(22, 56, 61, 0.82) 0%, rgba(22, 56, 61, 0.34) 55%, rgba(22, 56, 61, 0) 100%);
}
.layout__band.is-centre .band__scrim {
  background: rgba(22, 56, 61, 0.62);
}
.layout__band .band__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--container);
  padding-block: clamp(1.8181818182rem, 6vh, 3.6363636364rem);
}
.layout__band.is-centre {
  align-items: center;
  text-align: center;
}
.layout__band.is-centre .band__text {
  margin-inline: auto;
}
.layout__band .band__text {
  max-width: 34.5454545455rem;
}
.layout__band .band__eyebrow {
  color: var(--mana-teal-300);
  margin-bottom: 1.3em;
}
.layout__band .band__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.9090909091rem, 2.7vw, 1.8181818182rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(22, 56, 61, 0.5);
}
.layout__band .band__body {
  margin-top: 1.5em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 50ch;
}
.layout__band .band__body p {
  margin: 0 0 0.8em;
}
.layout__band .band__body p:last-child {
  margin-bottom: 0;
}
.layout__band.is-centre .band__body {
  margin-inline: auto;
}
.layout__band .band__actions {
  margin: clamp(1.1818181818rem, 3.4vw, 2rem) 0 0;
  display: flex;
  gap: 0.7272727273rem;
  flex-wrap: wrap;
}
.layout__band.is-centre .band__actions {
  justify-content: center;
}
.layout__band .band__note {
  margin: 2.2em 0 0;
  font-family: var(--font-sans);
  font-size: 0.4318181818rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.layout__band .band__cite {
  margin: 1.6em 0 0;
  font-family: var(--font-sans);
  font-size: 0.4545454545rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.82;
}
.layout__band .band__foot {
  display: flex;
  justify-content: space-between;
  gap: 0.9090909091rem;
  font-family: var(--font-sans);
  font-size: 0.4545454545rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .layout__band .band__media {
    transform: none !important;
    inset: 0;
  }
  .layout__band .band__media img {
    animation: none !important;
    transform: none !important;
  }
}
