.dp-info-band {
  --info-band-bg: var(--paper);
  position: relative;
  overflow: hidden;
  background: var(--info-band-bg);
  color: var(--club-copy);
  padding: 62px 0 60px;
  text-align: center;
}

.dp-info-band::before,
.dp-info-band::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 720px;
  aspect-ratio: 1424 / 821;
  background: url("../../images/waves.png") center / contain no-repeat;
  opacity: 0.82;
  pointer-events: none;
}

.dp-info-band::before {
  right: -310px;
  top: -225px;
}

.dp-info-band::after {
  left: -300px;
  bottom: -80px;
  transform: scaleX(-1);
}

.dp-info-band__inner {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  max-width: 1130px;
  margin-inline: auto;
}

.dp-info-band__heading {
  margin: auto auto 18px;
  color: var(--club-ink);
  font-family: var(--font-semibold);
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.18;
  max-width: 900px;
}

.dp-info-band__content {
  line-height: 1.5;
}

.dp-info-band__content > * {
  margin: 0 0 0.85em;
}

.dp-info-band__content > :last-child {
  margin-bottom: 0;
}

.dp-info-band__content strong {
  color: var(--club-ink);
  font-family: var(--font-semibold);
  font-weight: normal;
  /* text-transform: uppercase; */
}

@media (max-width: 767px) {
  .dp-info-band {
    padding-block: var(--section-padding-y-mobile);
  }

  .dp-info-band__heading {
    font-size: 40px;
  }
}
