/* ==========================================================================
   TB Hero  -  Clinician Panels (Spotlight + Roster)
   All colours use --tb-* tokens from TB_Style_Controller.
   Fallbacks match the soft-sage palette.

   Design direction: warm and light, not dark and corporate.
   Spotlight: photo-forward, lighter scrim, content floats naturally.
   Roster: frosted cream card, dark text, fits the light hero context.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shared: availability badge
   Semantic green/amber/muted. In spotlight these sit on a dark scrim area
   so the white-alpha variants are kept. Roster uses slightly adjusted tones.
   -------------------------------------------------------------------------- */
.tb-hero-clin-avail {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px 4px 8px;
  border-radius: 99px;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
  font-family: var(--tb-font-body, system-ui, sans-serif);
}
.tb-hero-clin-avail__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Open: on dark scrim (spotlight) */
.tb-hero-clin-avail--open {
  background: rgba(74, 222, 128, .16);
  color: #86efac;
  border: 1px solid rgba(74, 222, 128, .3);
}
.tb-hero-clin-avail--open .tb-hero-clin-avail__dot {
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .22);
}
/* Urgent: amber */
.tb-hero-clin-avail--urgent {
  background: rgba(250, 204, 21, .14);
  color: #fde047;
  border: 1px solid rgba(250, 204, 21, .28);
}
.tb-hero-clin-avail--urgent .tb-hero-clin-avail__dot {
  background: #facc15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, .2);
}
/* Waitlist: muted */
.tb-hero-clin-avail--waitlist {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .45);
  border: 1px solid rgba(255, 255, 255, .12);
}
.tb-hero-clin-avail--waitlist .tb-hero-clin-avail__dot {
  background: rgba(255, 255, 255, .3);
}

/* Roster variant - same badge on a light surface */
.tb-hero-clin-roster .tb-hero-clin-avail--open {
  background: rgba(34, 197, 94, .1);
  color: #15803d;
  border-color: rgba(34, 197, 94, .25);
}
.tb-hero-clin-roster .tb-hero-clin-avail--open .tb-hero-clin-avail__dot {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}
.tb-hero-clin-roster .tb-hero-clin-avail--urgent {
  background: rgba(234, 179, 8, .1);
  color: #a16207;
  border-color: rgba(234, 179, 8, .25);
}
.tb-hero-clin-roster .tb-hero-clin-avail--urgent .tb-hero-clin-avail__dot {
  background: #eab308;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, .15);
}
.tb-hero-clin-roster .tb-hero-clin-avail--waitlist {
  background: var(--tb-surface-2, #e8e4dc);
  color: var(--tb-text-muted, #6b7069);
  border-color: var(--tb-border, #d8d4cc);
}
.tb-hero-clin-roster .tb-hero-clin-avail--waitlist .tb-hero-clin-avail__dot {
  background: var(--tb-text-muted, #6b7069);
  box-shadow: none;
  opacity: .5;
}

/* ==========================================================================
   SPOTLIGHT PANEL  -  full-bleed portrait, lighter scrim, content at bottom
   The photo is the hero. Scrim is subtle at top, focused at bottom.
   Content zone floats on a soft gradient, not an opaque dark box.
   ========================================================================== */
.tb-hero-clin-spotlight {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--tb-primary, #5a7a5e);
}

/* Full-bleed portrait photo */
.tb-hero-clin-spotlight__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 7s ease;
}
.tb-hero-clin-spotlight:hover .tb-hero-clin-spotlight__photo {
  transform: scale(1.03);
}

/* Initials avatar fallback */
.tb-hero-clin-spotlight__avatar {
  position: absolute;
  inset: 0;
  background: var(--tb-primary, #5a7a5e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
  letter-spacing: -.02em;
  font-family: var(--tb-font-heading, system-ui, sans-serif);
}

/* Lighter scrim:
   Top: barely-there tint for eyebrow legibility, face stays clear.
   Middle: fully transparent -- show the photo.
   Bottom: warm fade into a comfortable reading zone, not black. */
.tb-hero-clin-spotlight__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .22)  0%,
    rgba(0, 0, 0, .04) 15%,
    transparent        32%,
    rgba(0, 0, 0, .08) 50%,
    rgba(0, 0, 0, .38) 66%,
    rgba(0, 0, 0, .62) 80%,
    rgba(0, 0, 0, .76) 100%
  );
  pointer-events: none;
}

/* Content column -- flex, fills panel, content anchored to bottom */
.tb-hero-clin-spotlight__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 20px 22px;
  gap: 8px;
  min-height: 0;
}

/* Top row: eyebrow pill + optional video button */
.tb-hero-clin-spotlight__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
}

/* Eyebrow pill - frosted white glass, works across all palettes */
.tb-hero-clin-spotlight__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 4px 10px 4px 8px;
  border-radius: 99px;
  align-self: flex-start;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Watch intro pill - refined frosted glass */
.tb-hero-clin-spotlight__video-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 8px;
  border-radius: 99px;
  font-size: .6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .18s ease, border-color .18s ease;
  flex-shrink: 0;
  letter-spacing: .03em;
}
.tb-hero-clin-spotlight__video-btn svg {
  flex-shrink: 0;
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  padding: 2px;
  width: 13px;
  height: 13px;
  box-sizing: content-box;
}
.tb-hero-clin-spotlight__video-btn:hover,
.tb-hero-clin-spotlight__video-btn:focus-visible {
  background: rgba(0, 0, 0, .45);
  border-color: rgba(255, 255, 255, .4);
  outline: none;
}

/* Spacer pushes identity to the bottom */
.tb-hero-clin-spotlight__spacer {
  flex: 1;
  min-height: 0;
}

/* Identity block */
.tb-hero-clin-spotlight__identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.tb-hero-clin-spotlight__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  display: block;
  font-family: var(--tb-font-heading, system-ui, sans-serif);
  letter-spacing: -.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .4);
}
.tb-hero-clin-spotlight__name-link {
  color: #fff !important;
  text-decoration-color: rgba(255, 255, 255, .3) !important;
}
.tb-hero-clin-spotlight__name-link:hover {
  color: #fff !important;
  text-decoration-color: rgba(255, 255, 255, .75) !important;
}
.tb-hero-clin-spotlight__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  font-family: var(--tb-font-body, system-ui, sans-serif);
}
.tb-hero-clin-spotlight__sep { opacity: .4; }
.tb-hero-clin-spotlight__pronouns {
  font-style: italic;
  font-weight: 400;
  opacity: .75;
}
.tb-hero-clin-spotlight__role {
  font-size: .64rem;
  color: rgba(255, 255, 255, .52);
  display: block;
  font-family: var(--tb-font-body, system-ui, sans-serif);
}

/* Bio - 2-line clamp, readable but not loud */
.tb-hero-clin-spotlight__bio {
  font-size: .76rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  flex-shrink: 0;
}

/* Specialty tags - subtle glass pills */
.tb-hero-clin-spotlight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex-shrink: 0;
}
.tb-hero-clin-spotlight__tag {
  font-size: .58rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .18);
  letter-spacing: .01em;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.tb-hero-clin-spotlight__tag:hover,
.tb-hero-clin-spotlight__tag:focus-visible {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  text-decoration: none;
}
.tb-hero-clin-spotlight__tag--more {
  opacity: .65;
  font-style: italic;
}
.tb-hero-clin-spotlight__tag--more:hover { opacity: 1; }

/* Actions: CTA button + profile link */
.tb-hero-clin-spotlight__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tb-hero-clin-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--tb-radius, 8px);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, .95);
  color: var(--tb-primary-dark, #3f5941);
  border: none;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .22);
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  letter-spacing: .01em;
  white-space: nowrap;
}
.tb-hero-clin-spotlight__cta svg {
  flex-shrink: 0;
  transition: transform .18s ease;
}
.tb-hero-clin-spotlight__cta:hover,
.tb-hero-clin-spotlight__cta:focus-visible {
  background: #fff;
  color: var(--tb-primary-dark, #3f5941);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
  text-decoration: none;
}
.tb-hero-clin-spotlight__cta:hover svg { transform: translateX(3px); }

.tb-hero-clin-spotlight__profile-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .15s ease;
}
.tb-hero-clin-spotlight__profile-link svg {
  flex-shrink: 0;
  opacity: .6;
  transition: transform .15s ease, opacity .15s ease;
}
.tb-hero-clin-spotlight__profile-link:hover,
.tb-hero-clin-spotlight__profile-link:focus-visible {
  color: #fff;
  text-decoration: none;
}
.tb-hero-clin-spotlight__profile-link:hover svg {
  transform: translateX(3px);
  opacity: 1;
}

/* ==========================================================================
   SPOTLIGHT  -  compact horizontal card at tablet and below (900px)
   Photo hidden. Layout flips to row: circular avatar left, info right.
   Matches the roster card aesthetic -- light surface, dark text, no overlays.
   ========================================================================== */
@media (max-width: 900px) {

  /* Shell: white card, row layout, no overflow clip needed */
  .tb-hero-clin-spotlight {
    flex-direction: row;
    align-items: center;
    background: var(--tb-bg, #faf9f6);
    border-radius: 14px;
    padding: 20px;
    gap: 16px;
    height: auto;
    overflow: visible;
    position: relative;
  }

  /* Hide full-bleed photo and scrim -- not needed in card mode */
  .tb-hero-clin-spotlight__photo,
  .tb-hero-clin-spotlight__scrim,
  .tb-hero-clin-spotlight__avatar {
    display: none;
  }

  /* Content becomes a normal flow column, not absolutely positioned */
  .tb-hero-clin-spotlight__content {
    position: static;
    flex: 1;
    padding: 0;
    gap: 10px;
    min-height: 0;
  }

  /* Top row: eyebrow left, spacer gone */
  .tb-hero-clin-spotlight__top-row {
    justify-content: flex-start;
  }

  /* Eyebrow pill: switch to dark-on-light to match roster */
  .tb-hero-clin-spotlight__eyebrow {
    background: color-mix(in srgb, var(--tb-primary, #5a7a5e) 12%, transparent);
    border-color: color-mix(in srgb, var(--tb-primary, #5a7a5e) 20%, transparent);
    color: var(--tb-primary-dark, #3f5941);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Spacer collapses -- no need to push content down */
  .tb-hero-clin-spotlight__spacer { display: none; }

  /* Identity: dark text on light bg */
  .tb-hero-clin-spotlight__name {
    font-size: 1.05rem;
    color: var(--tb-heading, #2a2e2a);
    text-shadow: none;
  }
  .tb-hero-clin-spotlight__name-link {
    color: var(--tb-heading, #2a2e2a) !important;
    text-decoration-color: rgba(0,0,0,.15) !important;
  }
  .tb-hero-clin-spotlight__name-link:hover {
    color: var(--tb-primary-dark, #3f5941) !important;
    text-decoration-color: var(--tb-primary, #5a7a5e) !important;
  }
  .tb-hero-clin-spotlight__meta {
    color: var(--tb-text-muted, #6b7069);
  }
  .tb-hero-clin-spotlight__role {
    color: var(--tb-text-muted, #6b7069);
    opacity: .75;
  }

  /* Bio: dark text, 2-line clamp still applies */
  .tb-hero-clin-spotlight__bio {
    color: var(--tb-text-muted, #6b7069);
    font-size: .8rem;
  }

  /* Tags: match roster pill style */
  .tb-hero-clin-spotlight__tag {
    background: color-mix(in srgb, var(--tb-primary, #5a7a5e) 8%, transparent);
    border-color: color-mix(in srgb, var(--tb-primary, #5a7a5e) 18%, transparent);
    color: var(--tb-primary-dark, #3f5941);
  }

  /* CTA: solid brand button on light bg */
  .tb-hero-clin-spotlight__cta {
    background: var(--tb-primary, #5a7a5e);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.14);
    font-size: .8rem;
    padding: 9px 16px;
  }
  .tb-hero-clin-spotlight__cta:hover,
  .tb-hero-clin-spotlight__cta:focus-visible {
    background: var(--tb-primary-dark, #3f5941);
    color: #fff;
  }

  /* Profile link: dark muted */
  .tb-hero-clin-spotlight__profile-link {
    color: var(--tb-text-muted, #6b7069);
  }
  .tb-hero-clin-spotlight__profile-link:hover,
  .tb-hero-clin-spotlight__profile-link:focus-visible {
    color: var(--tb-primary-dark, #3f5941);
  }

  /* Bio and tags: hidden at tablet -- scan mode, name + availability + CTA is enough */
  .tb-hero-clin-spotlight__bio,
  .tb-hero-clin-spotlight__tags {
    display: none;
  }

  /* Actions: row, left-aligned */
  .tb-hero-clin-spotlight__actions {
    gap: 10px;
  }

}

/* ==========================================================================
   ROSTER PANEL  -  light frosted card, dark text
   Matches the cream left column rather than fighting against it.
   Rows use warm surface tones, availability badges shift to dark-on-light.
   ========================================================================== */
.tb-hero-clin-roster {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--tb-bg, #faf9f6);
}

/* Header */
.tb-hero-clin-roster__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--tb-border, #d8d4cc);
  flex-shrink: 0;
}
.tb-hero-clin-roster__header-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tb-hero-clin-roster__eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tb-primary, #5a7a5e);
  opacity: .8;
  font-family: var(--tb-font-body, system-ui, sans-serif);
}
.tb-hero-clin-roster__headline {
  font-size: .95rem;
  font-weight: 700;
  color: var(--tb-heading, #2a2e2a);
  line-height: 1.25;
  font-family: var(--tb-font-heading, system-ui, sans-serif);
  letter-spacing: -.01em;
}

/* Urgency signal - amber, dark-on-light */
.tb-hero-clin-roster__urgency {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .6rem;
  font-weight: 700;
  color: #92400e;
  white-space: nowrap;
  margin-top: 4px;
  font-family: var(--tb-font-body, system-ui, sans-serif);
}
.tb-hero-clin-roster__urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, .18);
  flex-shrink: 0;
  animation: tb-pulse 2s ease-in-out infinite;
}
@keyframes tb-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(217, 119, 6, .18); }
  50%       { box-shadow: 0 0 0 6px rgba(217, 119, 6, .06); }
}

/* Scrollable list wrapper */
.tb-hero-clin-roster__list-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
/* Bottom fade when list is truncated */
.tb-hero-clin-roster__list-wrap--fades::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent 0%, var(--tb-bg, #faf9f6) 100%);
  pointer-events: none;
}

/* Row list */
.tb-hero-clin-roster__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual row */
.tb-hero-clin-roster__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--tb-border, #d8d4cc);
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.tb-hero-clin-roster__list li:last-child .tb-hero-clin-roster__row {
  border-bottom: none;
}
.tb-hero-clin-roster__row:hover {
  background: var(--tb-surface, #f2efe9);
  text-decoration: none;
}

/* Avatar */
.tb-hero-clin-roster__avatar-wrap {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--tb-border, #d8d4cc);
}
.tb-hero-clin-roster__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .35s ease;
}
.tb-hero-clin-roster__row:hover .tb-hero-clin-roster__avatar-img {
  transform: scale(1.06);
}
.tb-hero-clin-roster__avatar-initials {
  width: 100%;
  height: 100%;
  background: var(--tb-primary-light, #d4e5d6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--tb-primary-dark, #3f5941);
  font-family: var(--tb-font-heading, system-ui, sans-serif);
}

/* Text body */
.tb-hero-clin-roster__row-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tb-hero-clin-roster__name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--tb-heading, #2a2e2a);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--tb-font-heading, system-ui, sans-serif);
  line-height: 1.2;
}
.tb-hero-clin-roster__role {
  font-size: .68rem;
  color: var(--tb-text-muted, #6b7069);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--tb-font-body, system-ui, sans-serif);
}
.tb-hero-clin-roster__specs {
  font-size: .64rem;
  color: var(--tb-text-muted, #6b7069);
  opacity: .65;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  margin-top: 1px;
}

/* Right column: badge + chevron */
.tb-hero-clin-roster__row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.tb-hero-clin-roster__chevron {
  color: var(--tb-border-dark, #b8b4ac);
  transition: color .15s ease, transform .15s ease;
}
.tb-hero-clin-roster__row:hover .tb-hero-clin-roster__chevron {
  color: var(--tb-primary, #5a7a5e);
  transform: translateX(2px);
}

/* Footer */
.tb-hero-clin-roster__footer {
  padding: 13px 18px 16px;
  border-top: 1px solid var(--tb-border, #d8d4cc);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: var(--tb-bg, #faf9f6);
}
.tb-hero-clin-roster__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  border-radius: var(--tb-radius, 8px);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--tb-primary, #5a7a5e);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  font-family: var(--tb-font-body, system-ui, sans-serif);
  letter-spacing: .01em;
}
.tb-hero-clin-roster__cta svg {
  flex-shrink: 0;
  transition: transform .18s ease;
}
.tb-hero-clin-roster__cta:hover,
.tb-hero-clin-roster__cta:focus-visible {
  background: var(--tb-primary-dark, #3f5941);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .18);
  text-decoration: none;
  color: #fff;
}
.tb-hero-clin-roster__cta:hover svg { transform: translateX(3px); }

.tb-hero-clin-roster__viewall {
  font-size: .7rem;
  font-weight: 600;
  color: var(--tb-text-muted, #6b7069);
  text-decoration: none;
  text-align: center;
  transition: color .18s ease;
  font-family: var(--tb-font-body, system-ui, sans-serif);
}
.tb-hero-clin-roster__viewall:hover {
  color: var(--tb-primary, #5a7a5e);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Accessibility: reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .tb-hero-clin-roster__urgency-dot   { animation: none; }
  .tb-hero-clin-spotlight__photo,
  .tb-hero-clin-roster__avatar-img    { transition: none; }
  .tb-hero-clin-spotlight__cta,
  .tb-hero-clin-spotlight__video-btn,
  .tb-hero-clin-roster__cta,
  .tb-hero-clin-roster__row,
  .tb-hero-clin-roster__chevron       { transition: none; }
}

/* ==========================================================================
   Other clinicians strip (single profile page)
   ========================================================================== */

.tb-clinician-profile__others {
  margin-top: clamp(40px,5vw,64px);
}

.tb-clinician-profile__others-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tb-clinician-profile__other-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--tb-radius, 10px);
  border: 1px solid var(--tb-border, #d8d4cc);
  background: var(--tb-bg, #faf9f6);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.tb-clinician-profile__other-card:hover {
  border-color: var(--tb-primary, #5a7a5e);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.tb-clinician-profile__other-photo-link {
  flex-shrink: 0;
  display: block;
}

.tb-clinician-profile__other-photo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tb-primary-light, #d4e5d6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-clinician-profile__other-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tb-clinician-profile__other-initials {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tb-primary, #5a7a5e);
  font-family: var(--tb-font-heading, system-ui, sans-serif);
}

.tb-clinician-profile__other-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tb-clinician-profile__other-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--tb-heading, #2a2e2a);
  text-decoration: none;
  font-family: var(--tb-font-heading, system-ui, sans-serif);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.3;
}

.tb-clinician-profile__other-name:hover {
  color: var(--tb-primary, #5a7a5e);
  text-decoration: none;
}

.tb-clinician-profile__other-creds {
  font-size: .72rem;
  font-weight: 500;
  color: var(--tb-text-muted, #6b7069);
  font-family: var(--tb-font-body, system-ui, sans-serif);
}

.tb-clinician-profile__other-title {
  font-size: .8rem;
  color: var(--tb-text-muted, #6b7069);
  margin: 0;
}

.tb-clinician-profile__other-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}

.tb-clinician-profile__other-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: var(--tb-radius, 8px);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--tb-primary, #5a7a5e);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
  font-family: var(--tb-font-body, system-ui, sans-serif);
}

.tb-clinician-profile__other-cta:hover,
.tb-clinician-profile__other-cta:focus-visible {
  background: var(--tb-primary-dark, #3f5941);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.tb-clinician-profile__other-card .tb-clinician-avail {
  font-size: .62rem;
  padding: 3px 8px;
}

@media (max-width: 580px) {
  .tb-clinician-profile__other-card {
    flex-wrap: wrap;
  }
  .tb-clinician-profile__other-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tb-clinician-profile__other-card,
  .tb-clinician-profile__other-cta { transition: none; }
}
