.ps-outcomes {
  padding: 3.5rem 0;
  background: #fff;
}

.ps-outcomes__intro {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.ps-outcomes__label {
  margin: 0 0 1rem;
  color: rgba(0, 0, 0, 0.45);
  font-family: "Season Serif", serif;
  font-size: 16px;
  line-height: 1;
}

.ps-outcomes__title {
  margin: 0;
  color: #000;
  font-family: "Season Sans", sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
}

.ps-outcomes__cards {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ps-outcomes__cards::-webkit-scrollbar {
  display: none;
}

.ps-outcomes__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: 260px;
  max-width: 300px;
  flex-shrink: 0;
  padding: 1.5rem;
  background: #f7f7f7;
  border-radius: 12px;
  scroll-snap-align: start;
}

.ps-outcomes__stat {
  flex-shrink: 0;
  color: #000;
  font-family: "Season Serif", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
}

.ps-outcomes__card-title {
  margin: 0 0 0.35rem;
  color: #000;
  font-family: "Season Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.ps-outcomes__card-copy {
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Season Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .ps-outcomes {
    padding: 2.5rem 0;
  }

  .ps-outcomes__intro {
    margin-bottom: 1.5rem;
  }

  .ps-outcomes__title {
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 1.08;
  }

  .ps-outcomes__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .ps-outcomes__card {
    min-width: 0;
    max-width: none;
    width: 100%;
    padding: 1.25rem;
    gap: 1rem;
  }

  .ps-outcomes__stat {
    font-size: 2.4rem;
  }
}

@media (min-width: 1024px) {
  .ps-outcomes__cards {
    overflow-x: visible;
  }

  .ps-outcomes__card {
    min-width: 0;
    max-width: none;
    flex: 1 1 0;
  }
}
