.approach-therapy {
  width: var(--vw);
  margin-left: var(--bleed-margin);
  margin-right: var(--bleed-margin);
  padding: 96px 0;
  background: #fff;
  font-family: "Nunito", sans-serif;
}

.approach-therapy__inner {
  width: min(1290px, calc(var(--vw) - 48px));
  margin: 0 auto;
}

.approach-therapy__layout {
  display: grid;
  grid-template-columns: 520px 740px;
  gap: 30px;
  align-items: start;
}

.approach-therapy__copy {
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach-therapy__eyebrow {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4a5565;
}

.approach-therapy__title {
  width: 520px;
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 47px);
  line-height: 1.1;
  font-weight: 400;
  color: #4a5565;
  text-wrap: balance;
}

.approach-therapy__body {
  width: 520px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #101828;
}

.approach-therapy__body p {
  margin: 0 0 1em;
}

.approach-therapy__body p:last-child {
  margin-bottom: 0;
}

.approach-therapy__accordion {
  width: 740px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-therapy__item {
  width: 100%;
  background: #fff;
  border: 2px solid #d1d5dc;
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.approach-therapy__item:hover {
  border-color: #c5ccd8;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.045);
  transform: translateY(-1px);
}

.approach-therapy__item.is-open {
  border-color: #d1d5dc;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.045);
}

.approach-therapy__trigger {
  width: 100%;
  min-height: 84px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
}

.approach-therapy__item-title {
  width: 624px;
  max-width: calc(100% - 56px);
  font-size: clamp(1.125rem, 2.6vw, 27px);
  line-height: 1.2;
  font-weight: 400;
  color: #101828;
}

.approach-therapy__icon {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff4f6;
  transition: background 0.2s ease, transform 0.2s ease;
}

.approach-therapy__icon::before,
.approach-therapy__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #667085;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.approach-therapy__icon::before {
  width: 12px;
  height: 2px;
}

.approach-therapy__icon::after {
  width: 2px;
  height: 12px;
}

.approach-therapy__item.is-open .approach-therapy__icon {
  background: #ffe8ed;
  transform: rotate(180deg);
}

.approach-therapy__item.is-open .approach-therapy__icon::after {
  opacity: 0;
}

.approach-therapy__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.approach-therapy__panel-inner {
  overflow: hidden;
  padding: 0 32px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #101828;
}

.approach-therapy__item.is-open .approach-therapy__panel-inner {
  padding-bottom: 32px;
}

.approach-therapy__panel-inner p {
  margin: 0 0 1em;
}

.approach-therapy__panel-inner p:last-child {
  margin-bottom: 0;
}

.approach-therapy__panel-inner a {
  color: #007893;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Tablet landscape / mid-size ─────────────────────── */
@media (max-width: 1024px) {
  .approach-therapy__inner {
    width: min(920px, calc(100% - 48px));
  }
}

@media (max-width: 900px) {
  .approach-therapy__inner {
    width: min(860px, calc(100% - 48px));
  }
}

/* ── Tablet landscape / mid-size ─────────────────────── */
@media (max-width: 1024px) {
  .approach-therapy__inner {
    width: min(920px, calc(100% - 48px));
  }
}

@media (max-width: 900px) {
  .approach-therapy__inner {
    width: min(860px, calc(100% - 48px));
  }
}

@media (max-width: 1180px) {
  .approach-therapy__inner {
    width: min(860px, calc(100% - 48px));
  }

  .approach-therapy__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-therapy__copy,
  .approach-therapy__title,
  .approach-therapy__body,
  .approach-therapy__accordion {
    width: 100%;
  }
}

/* ── Tablet / medium mobile ──────────────────────────── */
@media (max-width: 768px) {
  .approach-therapy {
    padding: 64px 0;
  }

  .approach-therapy__inner {
    width: calc(100% - 32px);
  }

  .approach-therapy__title,
  .approach-therapy__body,
  .approach-therapy__copy {
    width: 100%;
  }

  .approach-therapy__eyebrow {
    font-size: 14px;
    letter-spacing: 0.96px;
  }

  .approach-therapy__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .approach-therapy__body {
    font-size: 15px;
  }

  .approach-therapy__accordion {
    gap: 12px;
  }

  .approach-therapy__trigger {
    min-height: 0;
    padding: 18px 24px;
    gap: 12px;
  }

  .approach-therapy__item-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    width: 100%;
  }

  .approach-therapy__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .approach-therapy__panel-inner {
    padding: 0 20px;
    font-size: 14px;
  }

  .approach-therapy__item.is-open .approach-therapy__panel-inner {
    padding-bottom: 20px;
  }
}

/* ── Small phones ───────────────────────────────────── */
@media (max-width: 480px) {
  .approach-therapy {
    padding: 48px 0;
  }

  .approach-therapy__inner {
    width: calc(100% - 24px);
  }

  .approach-therapy__eyebrow {
    font-size: 12px;
    letter-spacing: 0.72px;
  }

  .approach-therapy__title {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }

  .approach-therapy__body {
    font-size: 14px;
  }

  .approach-therapy__trigger {
    min-height: 0;
    padding: 16px 18px;
    gap: 10px;
  }

  .approach-therapy__item-title {
    font-size: clamp(0.95rem, 2vw, 1rem);
  }

  .approach-therapy__icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .approach-therapy__panel-inner {
    padding: 0 16px;
    font-size: 13px;
    line-height: 1.6;
  }

  .approach-therapy__item.is-open .approach-therapy__panel-inner {
    padding-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .approach-therapy {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 64px 0;
  }

  .approach-therapy__inner {
    width: calc(100% - 32px);
  }

  .approach-therapy__eyebrow {
    font-size: 14px;
    letter-spacing: 0.96px;
  }

  .approach-therapy__body,
  .approach-therapy__panel-inner {
    font-size: 15px;
  }

  .approach-therapy__trigger {
    min-height: 0;
    padding: 20px;
    gap: 14px;
  }

  .approach-therapy__icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .approach-therapy__panel-inner {
    padding: 0 20px;
  }

  .approach-therapy__item.is-open .approach-therapy__panel-inner {
    padding-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .approach-therapy__item,
  .approach-therapy__icon,
  .approach-therapy__icon::before,
  .approach-therapy__icon::after,
  .approach-therapy__panel {
    transition: none;
  }
}
