/* ==========================================================================
   Therapist page
   - Image opposite text
   - Image height reduced by ~2cm
   - Full image always visible (no cropping)
   ========================================================================== */

.page-therapist .page-header{
  margin: 1.25rem 0 1.5rem;
}

/* Two-column hero */
.page-therapist .therapist-hero{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

/* LEFT COLUMN */
.page-therapist .therapist-hero__left h1{
  margin: 0;
}

.page-therapist .page-lead{
  margin: 0.4rem 0 0.8rem;
  max-width: 60ch;
}

.page-therapist .therapist-intro{
  margin: 0;
}

.page-therapist .therapist-intro > *:first-child{
  margin-top: 0;
}

/* RIGHT COLUMN IMAGE
   Height reduced by ~2cm (~75px) while keeping full image visible */
.page-therapist .therapist-hero__media{
  width: 100%;
  height: calc(520px - 75px); /* reduced by ~2cm */
  max-height: 445px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(47, 58, 63, 0.08);
}

.page-therapist .therapist-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* FULL image, no cropping */
  display: block;
}

/* Under-image content */
.page-therapist .therapist-underimage{
  margin-top: 1rem;
}

/* Actions */
.page-therapist .therapist-actions{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 2rem;
}

/* Responsive */
@media (max-width: 900px){
  .page-therapist .therapist-hero{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-therapist .therapist-hero__media{
    height: calc(460px - 75px);
    max-height: 385px;
  }
}
