.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 4.5rem 1.25rem;
  background-image: var(--klv-gradient-closing-band);
  overflow: clip;
}

@media (min-width: 810px) {
  .closing {
    min-height: 460px;
    padding: 5.75rem 1.75rem;
  }
}

@media (min-width: 1200px) {
  .closing {
    min-height: 520px;
    padding: 1.25rem 2.125rem;
  }
}
.closing__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
  width: 100%;
  overflow: clip;
  text-align: center;
}

@media (min-width: 810px) {
  .closing__content {
    gap: 1.375rem;
    max-width: 40rem;
  }
}

@media (min-width: 1200px) {
  .closing__content {
    max-width: 47.5rem;
  }
}
.closing__heading {
  width: 100%;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9em;
  text-wrap: balance;
  color: var(--klv-color-text-bright);
}

@media (min-width: 810px) {
  .closing__heading {
    font-size: 5.125rem;
  }
}

@media (min-width: 1200px) {
  .closing__heading {
    font-size: 6.875rem;
  }
}
.closing__word {
  display: inline-block;
}

.closing__tagline {
  width: 100%;
  font-size: 1.625rem;
  line-height: 1.4em;
  text-wrap: balance;
  color: var(--klv-color-text-warm);
}

@media (min-width: 810px) {
  .closing__tagline {
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .closing__tagline {
    font-size: 2.0625rem;
  }
}
.js-reveal .closing__content {
  opacity: 0;
  transform: translateY(52px) scale(0.982);
}

.js-reveal .closing__word {
  opacity: 0.001;
  filter: blur(6px);
  transform: translateY(18px);
}

.js-reveal .closing__tagline {
  opacity: 0;
  transform: translateY(20px);
}
@keyframes closing-reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes closing-word-reveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

.js-reveal .closing__content.is-revealed {
  animation: closing-reveal 940ms both;
  animation-timing-function: var(--klv-ease-reveal);
}

.js-reveal .closing__content.is-revealed .closing__word {
  animation: closing-word-reveal 670ms both;
  animation-timing-function: var(--klv-ease-reveal);
}
.js-reveal .closing__content.is-revealed .closing__word:nth-child(1) {
  animation-delay: 50ms;
}

.js-reveal .closing__content.is-revealed .closing__word:nth-child(2) {
  animation-delay: 100ms;
}

.js-reveal .closing__content.is-revealed .closing__tagline {
  animation: closing-reveal 750ms both;
  animation-delay: 350ms;
  animation-timing-function: var(--klv-ease-reveal);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .closing__content,
  .js-reveal .closing__word,
  .js-reveal .closing__tagline {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}
