.therapists-hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.therapists-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.therapists-hero-text {
  max-width: 640px;
}

.therapists-hero-lead {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.therapists-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.therapists-hero-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section-accent {
  background: var(--color-primary-soft);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: var(--space-2);
  color: var(--gray-300);
}

.therapists-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.therapists-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.therapists-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: var(--space-4);
}

.therapists-list li {
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.link-more {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.therapists-section-card {
  max-width: 1000px;
  margin-inline: auto;
}

.therapists-profiles {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.therapists-profiles-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.therapists-profiles-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.therapists-grid-profiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.therapist-profile {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.therapist-profile h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.therapists-environment {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.therapists-environment-media figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.therapists-testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.therapists-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.therapists-testimonial-author {
  margin-top: var(--space-3);
  font-weight: 600;
}

.therapists-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 var(--space-4);
}

.therapists-steps li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: var(--space-4);
}

.therapists-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: var(--font-size-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapists-booking {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.therapists-booking-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .therapists-hero-inner,
  .therapists-profiles-header,
  .therapists-environment,
  .therapists-booking {
    grid-template-columns: 1fr;
  }

  .therapists-grid-3,
  .therapists-grid-profiles,
  .therapists-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .therapists-hero {
    padding-top: var(--space-8);
    padding-bottom: var(--space-10);
  }

  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .therapists-two-cols,
  .therapists-grid-3,
  .therapists-grid-profiles,
  .therapists-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .therapist-profile,
  .card,
  .card-soft {
    padding: var(--space-4);
  }

  .therapists-testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .therapists-booking-cta {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .therapists-booking-cta {
    flex-direction: column;
  }
}
