/* Contextual patient voice for non-treatment and directory V2 pages.
   Deliberately quiet: one rule, one verified excerpt, no card or score treatment. */
.odv2-patient-voice {
  --odv2-voice-bg: #ece7de;
  --odv2-voice-ink: #18231f;
  --odv2-voice-copy: #34413d;
  --odv2-voice-meta: #75654f;
  --odv2-voice-rule: rgba(24, 35, 31, .16);
  position: relative;
  margin: 0;
  padding: clamp(74px, 8vw, 118px) max(22px, calc((100% - 1240px) / 2));
  background: var(--odv2-voice-bg);
  color: var(--odv2-voice-copy);
}

.odv2-patient-voice--paper {
  --odv2-voice-bg: #ece7de;
  --odv2-voice-ink: #18231f;
  --odv2-voice-copy: #34413d;
  --odv2-voice-meta: #75654f;
  --odv2-voice-rule: rgba(24, 35, 31, .16);
}

.odv2-patient-voice--ink {
  --odv2-voice-bg: #09141d;
  --odv2-voice-ink: #f0ede7;
  --odv2-voice-copy: #d7dde0;
  --odv2-voice-meta: #c9ad7c;
  --odv2-voice-rule: rgba(220, 229, 233, .18);
}

.odv2-patient-voice__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--odv2-voice-rule);
}

.odv2-patient-voice__label {
  grid-column: 1 / 4;
  margin: 3px 0 0;
  color: var(--odv2-voice-meta);
  font: 400 10px / 1.45 var(--font-mono, "IBM Plex Mono", monospace);
  letter-spacing: .17em;
  text-transform: uppercase;
}

.odv2-patient-voice figure {
  grid-column: 5 / -1;
  margin: 0;
}

.odv2-patient-voice blockquote {
  max-width: 24ch;
  margin: 0;
  color: var(--odv2-voice-ink);
  font: 300 clamp(29px, 3.7vw, 52px) / 1.08 var(--font-serif, "Newsreader", serif);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.odv2-patient-voice figcaption {
  margin-top: clamp(24px, 3vw, 34px);
  color: var(--odv2-voice-meta);
  font: 400 9px / 1.5 var(--font-mono, "IBM Plex Mono", monospace);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Used inside a page section that already owns its dark surface and outer grid. */
.odv2-patient-voice--embedded {
  grid-column: 1 / -1;
  width: 100%;
  padding: clamp(18px, 2vw, 30px) 0 clamp(42px, 5vw, 66px);
  background: transparent;
}

@media (max-width: 700px) {
  .odv2-patient-voice {
    padding: 64px 22px 72px;
  }

  .odv2-patient-voice__inner {
    display: block;
    padding-top: 23px;
  }

  .odv2-patient-voice__label {
    margin-bottom: 35px;
  }

  .odv2-patient-voice blockquote {
    max-width: 18ch;
    font-size: clamp(28px, 9.2vw, 36px);
    line-height: 1.1;
  }

  .odv2-patient-voice figcaption {
    margin-top: 25px;
  }

  .odv2-patient-voice--embedded {
    padding: 16px 0 42px;
  }
}
