.peach-itemlist {
  position: relative;
  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-itemlist.centered {
  width: min(100%, var(--site-max-width, 1400px));
  max-width: var(--site-max-width, 1400px);
  margin-inline: auto;
}

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

.peach-itemlist__stack {
  position: relative;
  display: flex;
  flex-direction: column;
}

.peach-itemlist__media--background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.peach-itemlist__media--background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.08), rgba(58, 35, 20, 0.18)),
    linear-gradient(90deg, rgba(255, 248, 240, 0.14), rgba(255, 248, 240, 0));
}

.peach-itemlist--parallax .peach-itemlist__media--background {
  background-attachment: fixed;
}

.peach-inner {
  position: relative;
  z-index: 1;
  max-width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.peach-itemlist--background-media .peach-inner {
  min-height: clamp(24rem, 46vw, 40rem);
  display: grid;
  align-content: center;
}

.peach-head {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.peach-itemlist--background-media .peach-head,
.peach-itemlist--minimal .peach-head {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: min(var(--section-radius, 36px), 28px);
  background: color-mix(in srgb, var(--background-color) 90%, white 10%);
  backdrop-filter: blur(12px);
}

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

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

.peach-subtitle,
.peach-feature-desc {
  color: var(--muted-text-color);
  line-height: 1.82;
}

.peach-image--stacked {
  order: 1;
  margin: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--section-media-radius, 28px);
  box-shadow: 0 18px 40px rgba(86, 43, 16, 0.1);
}

.peach-itemlist--reverse .peach-image--stacked {
  order: 2;
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.peach-image__asset {
  width: 100%;
  min-height: clamp(16rem, 34vw, 28rem);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.peach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.peach-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: 24px;
  background: var(--orange-card-background);
  box-shadow: 0 12px 28px rgba(86, 43, 16, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.peach-feature-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--button-color) 16%, var(--background-color) 84%),
    color-mix(in srgb, var(--button-color) 8%, var(--background-color) 92%)
  );
  color: var(--button-color);
}

.peach-feature-icon img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
}

.peach-feature-title {
  color: var(--dark-background-color);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.peach-itemlist:hover {
  transform: translateY(-2px);
}

.peach-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(86, 43, 16, 0.12);
}

@media (max-width: 1100px) {
  .peach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .peach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .peach-itemlist {
    border-radius: var(--section-radius, 24px);
  }

  .peach-inner {
    padding: 1rem;
  }

  .peach-image--stacked {
    margin: 1rem;
    margin-bottom: 0;
  }
}
