/* Angelskin Medical — Leadership / team page */

html.as-team {
  scroll-behavior: smooth;
}

html.as-team header.header-absolute + section.breadcrumbs-custom {
  padding-top: clamp(5.25rem, 11vw, 7rem);
}

html.as-team body {
  -webkit-font-smoothing: antialiased;
}

/* Gold CTA (same as About — not under .as-hero) */
html.as-team .btn.as-btn-gold {
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: var(--as-gold);
  border: none;
  color: #0c0f14;
  transition: transform 0.45s var(--as-ease-out), box-shadow 0.45s var(--as-ease-out);
}
html.as-team .btn.as-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--as-gold-soft);
  color: #0c0f14;
}

html.as-team .as-team-intro {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

html.as-team .as-team-tier {
  border-top: 1px solid rgba(12, 15, 20, 0.06);
}

html.as-team .as-team-role-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--as-gold);
  margin-bottom: 1rem;
}

html.as-team .as-team-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--as-text);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

html.as-team .as-team-name-note {
  font-size: 0.8rem;
  color: var(--as-muted);
  margin-bottom: 1rem;
}

html.as-team .as-team-duty {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--as-text);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(42, 147, 201, 0.55);
}

html.as-team .as-team-bio {
  font-size: 0.98rem;
  color: var(--as-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

html.as-team .as-team-photo-wrap {
  position: relative;
  border-radius: var(--as-radius);
  overflow: hidden;
  box-shadow: var(--as-shadow);
  aspect-ratio: 4 / 5;
  background: rgba(12, 15, 20, 0.06);
}

html.as-team .as-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html.as-team .as-team-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(transparent, rgba(12, 15, 20, 0.75));
}

html.as-team .as-team-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--as-ease-out), transform 0.75s var(--as-ease-out);
}

html.as-team .as-team-reveal.as-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.as-team .as-team-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Muted copy on pale bands */
html.as-team section.bg-default-liac p.text-gray-light,
html.as-team section.bg-default p.text-gray-light {
  color: var(--as-muted) !important;
}
