/*************************************
 * Text Only Hero
 ************************************/

.text-only-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, white 0%, #f8ecec 30%, #f0cfcf 68%, #e6b3b3 100%);
}

.text-only-hero-inner {
  position: relative;
  min-height: clamp(520px, 68vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 88px;
}

.text-only-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  color: var(--blue);
}

.text-only-hero-heading {
  margin: 0 0 40px;
  color: var(--blue);
  font-size: clamp(2em, 8vw, 4.8em);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.text-only-hero-heading span {
  color: var(--red);
}

.text-only-hero-body {
  max-width: 550px;
  margin: 0 auto 30px;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.48;
  font-size: clamp(16px, 3.8vw, 20px);
}

.text-only-hero-body p {
  margin: 0 0 14px;
}

.text-only-hero-body p:last-child {
  margin-bottom: 0;
}

.text-only-hero-cta {
  justify-content: space-between;
}

.text-only-hero-down {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vh, 34px);
  z-index: 4;
  color: var(--blue);
  fill: var(--blue);
  transform: translateX(-50%);
  animation: text-only-hero-bob 2.4s ease-in-out infinite;
}

.text-only-hero-down:hover {
  color: var(--blue);
  fill: var(--blue);
}

@keyframes text-only-hero-bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

@media screen and (max-width: 30em) {
  .text-only-hero-inner {
    min-height: 520px;
    padding-top: 56px;
    padding-bottom: 76px;
  }

  .text-only-hero-heading {
    margin-bottom: 16px;
  }

  .text-only-hero-body {
    margin-bottom: 24px;
  }

  .text-only-hero-cta {
    width: 100%;
  }
}
