/* 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; }

/* ===== カード内 セラピストアイコン(WORKER_IMAGE) ===== */
.therapist-card__icon { margin: 6px 0 10px; }

.therapist-card__icon ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.therapist-card__icon li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.08);
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  white-space: nowrap;
}

/* 先頭の小さな菱形マーク */
.therapist-card__icon li::before {
  content: "";
  width: 3px;
  height: 3px;
  flex: 0 0 3px;
  background: var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.85;
}

/* スマホ(1カラム=カード幅が広い)はやや大きめに */
@media (max-width: 639px) {
  .therapist-card__icon li { padding: 5px 12px; font-size: 0.7rem; }
}

/* タブレット〜PC(2〜3カラム=カード幅が狭い)はコンパクトに */
@media (min-width: 640px) {
  .therapist-card__icon { margin: 5px 0 9px; }
  .therapist-card__icon ul { gap: 5px; }
  .therapist-card__icon li { padding: 3px 9px; font-size: 0.62rem; letter-spacing: 0.04em; }
}
.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; }
