.peach-itemlist {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.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, color-mix(in srgb, var(--primary-color) 26%, transparent), color-mix(in srgb, var(--primary-color) 54%, transparent)),
    linear-gradient(90deg, color-mix(in srgb, white 12%, transparent), transparent);
}

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

.peach-inner {
  position: relative;
  z-index: 1;
  max-width: var(--peach-content-width);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

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

.peach-head {
  max-width: 52rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.peach-head .peach-title {
  order: -2;
}

.peach-head .peach-eyebrow {
  order: -1;
}

.peach-itemlist--background-media .peach-head,
.peach-itemlist--minimal .peach-head {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--primary-color) 88%, transparent);
  backdrop-filter: blur(10px);
}

.peach-eyebrow {
  margin-bottom: 0.75rem;
  color: var(--muted-text-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.peach-title {
  margin: 0 0 0.75rem;
  color: var(--text-color);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

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

.peach-image--stacked {
  order: 1;
  margin: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-color);
}

.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(15rem, 34vw, 26rem);
  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.25rem;
}

.peach-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--button-color) 12%, var(--line-color) 88%);
  box-shadow: 0 5px 14px rgba(86, 43, 16, 0.07);
}

.peach-feature-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color) 16%, #ffffff 84%);
  color: var(--accent-color);
  flex-shrink: 0;
}

.peach-feature-body {
  min-width: 0;
}

.peach-feature-glyph {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.peach-feature-title {
  color: var(--accent-color);
  font-size: 1.22rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.peach-feature-desc {
  color: var(--text-color);
}

@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(--radius-lg);
  }

  .peach-inner {
    padding: 1rem;
  }

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