.peach-center-text-component {
  position: relative;
  width: 100%;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--section-radius, 36px);
  background: var(--orange-panel-background);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.peach-center-text--full-width {
  width: 100%;
  max-width: 100%;
}

.peach-center-text--centered {
  width: min(100%, var(--site-max-width, 1400px));
  max-width: var(--site-max-width, 1400px);
  margin-inline: auto;
}

.peach-center-text-shell {
  position: relative;
  display: flex;
  flex-direction: column;
}

.peach-center-text-shell--background {
  min-height: clamp(24rem, 48vw, 42rem);
  justify-content: center;
}

.peach-center-text-shell--stacked {
  gap: 0;
}

.peach-center-text-media {
  position: relative;
  background-color: color-mix(in srgb, var(--background-color) 84%, var(--primary-color) 16%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.peach-center-text-shell--background > .peach-center-text-media {
  position: absolute;
  inset: 0;
}

.peach-center-text-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.1), rgba(58, 35, 20, 0.18)),
    linear-gradient(90deg, rgba(255, 248, 240, 0.12), rgba(255, 248, 240, 0));
}

.peach-center-text--parallax .peach-center-text-shell--background > .peach-center-text-media {
  background-attachment: fixed;
}

.peach-center-text-media--stacked {
  width: 100%;
  min-height: clamp(15rem, 34vw, 27rem);
  order: 1;
}

.peach-center-text--reverse .peach-center-text-media--stacked {
  order: 3;
}

.peach-center-text-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
  justify-items: center;
  align-content: center;
  width: min(100%, 95rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 5vw, 5.5rem) clamp(1.5rem, 4vw, 3.25rem);
  text-align: center;
}

.peach-center-text-shell--stacked .peach-center-text-body {
  order: 2;
}

.peach-center-text-shell--background .peach-center-text-body {
  min-height: inherit;
}

.peach-title-block,
.peach-center-text-description {
  width: 100%;
}

.peach-title-block {
  max-width: 42rem;
}

.peach-center-text-description {
  max-width: 77rem;
}

.peach-center-text--minimal .peach-center-text-body,
.peach-center-text-minimal-body {
  width: min(100%, 102rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--background-color) 92%, white 8%);
  backdrop-filter: blur(12px);
}

.peach-center-text-media--minimal {
  position: absolute;
  inset: 0;
}

.peach-center-text-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--button-color);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.peach-center-text-title {
  margin: 0;
  color: var(--dark-background-color);
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-wrap: balance;
}

.peach-center-text-separator {
  width: 7rem;
  height: 3px;
  margin: 0.25rem auto 0.5rem;
  background: linear-gradient(90deg, var(--button-color), rgba(255, 139, 38, 0.12));
  border-radius: 999px;
}

.peach-center-text-description {
  color: var(--muted-text-color);
  line-height: 1.85;
  font-size: 1.02rem;
}

.peach-center-text-btn {
  margin-top: 0.4rem;
  justify-self: center;
}

.peach-center-text-component:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .peach-center-text-shell--background {
    min-height: clamp(20rem, 78vw, 32rem);
  }

  .peach-center-text-media--stacked {
    min-height: clamp(13rem, 48vw, 20rem);
  }

  .peach-center-text-body {
    width: min(100%, 44rem);
    padding: 2.75rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .peach-center-text-component {
    border-radius: var(--section-radius, 26px);
  }

  .peach-center-text-shell--background {
    min-height: clamp(18rem, 92vw, 26rem);
  }
}
