.lead {
  font-size: 1.15rem;
  line-height: 1.7;
}
.practice-hero {
  padding: 76px 0 0;
}
.practice-hero > .container > .eyebrow {
  color: var(--blue);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(220px, 0.8fr);
  gap: 76px;
  align-items: center;
}
.hero-layout h1 {
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 1.14;
}
.hero-layout .lead {
  max-width: 660px;
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  margin-top: 32px;
}
.hero-actions .text-link {
  font-size: 0.9rem;
}
.hero-practitioner {
  padding: 8px 0 8px 32px;
  border-left: 2px solid #a9568c;
}
.hero-practitioner .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}
.hero-practitioner h2 {
  font-size: 1.7rem;
}
.hero-practitioner .credential {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.9rem;
}
.hero-practitioner > p:last-child {
  margin-top: 24px;
  font-size: 0.9rem;
}
.specialty-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.specialty-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 20px;
  font-size: 0.9rem;
}
.specialty-nav a:first-child {
  padding-left: 0;
}
.specialty-nav a + a {
  border-left: 1px solid var(--line);
}
.specialty-nav a:hover {
  color: var(--blue);
  background: var(--surface);
}
.specialty-nav a > span {
  color: var(--blue);
}
.service-directory {
  border-top: 1px solid #cdd8df;
}
.service-row {
  display: grid;
  grid-template-columns: 28px minmax(180px, 0.9fr) minmax(0, 1.4fr) 24px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.service-index {
  align-self: start;
  padding-top: 5px;
  color: #71818e;
  font-size: 0.75rem;
}
.service-row h3 {
  font-size: 1.4rem;
}
.service-row p {
  font-size: 0.95rem;
}
.service-arrow {
  color: var(--blue);
  font-size: 1.3rem;
}
.service-row:hover h3 {
  color: var(--blue);
}
.clinician-section {
  background: #f3f6f8;
}
.reading-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.reading-layout > div > p + p {
  margin-top: 22px;
}
.reading-layout .lead {
  color: var(--ink);
  margin-bottom: 22px;
}
.reading-layout .text-link {
  margin-top: 22px;
}
.heading-subtitle {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 400;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  border-top: 1px solid #cdd8df;
  padding-top: 24px;
}
.process-list li > span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.8rem;
}
.process-list p {
  margin-top: 16px;
  font-size: 0.95rem;
}
.faq-section {
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.faq-layout .text-link {
  margin-top: 20px;
  font-size: 0.9rem;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 28px 22px 0;
  font-size: 0.95rem;
}
