/* Therapists page (therapists.html) — page-specific styles */

body.page-therapists { background: var(--color-black); }

/* ===== Grid ===== */
.therapists-content { padding-top: 56px; padding-bottom: 100px; }
.therapists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .therapists-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .therapists-grid { grid-template-columns: repeat(3, 1fr); }
}

.page-therapists .card--media__photo-wrap { aspect-ratio: 4 / 5; }
.therapist-card__name-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 2px; }
.therapist-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.06em; color: var(--color-text-white); }
.therapist-card__kana { font-size: 0.68rem; color: var(--color-text-muted); }
.therapist-card__meta { font-size: 0.72rem; color: var(--color-text-muted); margin-bottom: 10px; }
.therapist-card__tag { font-size: 0.78rem; color: var(--color-gold); font-weight: 400; margin-bottom: 14px; line-height: 1.7; }
.therapist-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.therapist-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

/* ===== CTA ===== */
.therapists-cta { margin-top: 56px; }
