/* ==========================================================================
   ZIVAH · DOCTOR PROFILE (reusable for every specialist)
   --------------------------------------------------------------------------
   Loaded by /doctor.php after core.css. Class prefix: .zc-doc-{section}__*
   The page is built from per-section "magazine spreads" so it shares the
   same premium grammar as meet-our-team.css (sharp 4px corners, monospace
   markers, dashed accents, two solid brand colors, no gradient text, no
   italic, no em-dashes) but without repeating any one section's pattern.
   --------------------------------------------------------------------------
   §1   Hero — editorial split (portrait + identity card)
   §2   About — drop-cap paragraph + side pull-quote
   §3   Expertise — numbered editorial cards
   §4   Credentials — vertical timeline + memberships list
   §5   Procedures — refined two-column check list
   §6   Schedule — premium dark booking card
   §7   Others — cross-link mini-card grid
   ========================================================================== */


/* §0 — kill the inherited content-wrap padding */
body .content-wrap.my-wrap-no-padding { padding: 0 !important; }


/* ==========================================================================
   §1   HERO
   ========================================================================== */
.zc-doc-hero {
  position: relative;
  padding: clamp(12px, 1.2vw, 18px) 0 clamp(28px, 3.5vw, 50px);
  background:
    radial-gradient(ellipse at 92% 8%, rgba(207, 138, 63, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 8% 92%, rgba(46, 75, 113, 0.06)  0%, transparent 55%),
    linear-gradient(180deg, var(--zc-snow) 0%, var(--zc-off-white) 100%);
  overflow: hidden;
}

/* Ambient pulse rings — top-right & bottom-left of hero */
.zc-doc-hero__ring {
  position: absolute;
  border: 1px solid var(--zc-amber-a25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.zc-doc-hero__ring::before,
.zc-doc-hero__ring::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
}
.zc-doc-hero__ring--1 {
  top: -120px; right: -100px;
  width: 320px; height: 320px;
  color: var(--zc-amber-a35);
  box-shadow: inset 0 0 0 50px transparent, inset 0 0 0 51px var(--zc-amber-a08);
  animation: zc-doc-ring-breathe 7s ease-in-out infinite;
}
.zc-doc-hero__ring--1::before { animation: zc-doc-ring-wave 5s ease-out infinite; }
.zc-doc-hero__ring--1::after  { animation: zc-doc-ring-wave 5s ease-out infinite -2.5s; }
.zc-doc-hero__ring--2 {
  bottom: -80px; left: 8%;
  width: 200px; height: 200px;
  border-color: var(--zc-navy-a15);
  color: rgba(46, 75, 113, 0.30);
  box-shadow: inset 0 0 0 30px transparent, inset 0 0 0 31px var(--zc-navy-a08);
  animation: zc-doc-ring-breathe 9s ease-in-out infinite reverse;
}
.zc-doc-hero__ring--2::before { animation: zc-doc-ring-wave 6s ease-out infinite -1s; }
.zc-doc-hero__ring--2::after  { animation: zc-doc-ring-wave 6s ease-out infinite -4s; }
@keyframes zc-doc-ring-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.05); opacity: 1;    }
}
@keyframes zc-doc-ring-wave {
  0%   { transform: scale(1);   opacity: 0.55; }
  60%  { opacity: 0.18; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Floating gold dots — ambient layer */
.zc-doc-hero__dots {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.zc-doc-hero__dots span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
  box-shadow: 0 0 12px var(--zc-amber-a45);
}
.zc-doc-hero__dots span:nth-child(1) { top: 14%;  right: 32%; animation: zc-doc-dot 4s ease-in-out infinite; }
.zc-doc-hero__dots span:nth-child(2) { bottom: 28%; left: 26%; animation: zc-doc-dot 5.5s ease-in-out infinite -1.5s; width: 4px; height: 4px; }
.zc-doc-hero__dots span:nth-child(3) { top: 62%;  right: 6%;  animation: zc-doc-dot 6s ease-in-out infinite -3s; width: 5px; height: 5px; }
.zc-doc-hero__dots span:nth-child(4) { top: 32%;  left: 4%;   animation: zc-doc-dot 5s ease-in-out infinite -2s; width: 4px; height: 4px; }
@keyframes zc-doc-dot {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.5); }
}

.zc-doc-hero__topline {
  display: flex; align-items: center; gap: 14px;
  padding: 0 var(--zc-pad-x);
  margin-bottom: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 991px) { .zc-doc-hero__topline { padding: 0 var(--zc-pad-x-mb); } }
.zc-doc-hero__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zc-charcoal), var(--zc-deep));
  border: 1px solid var(--zc-amber-a45);
  color: var(--zc-amber-lt);
  font-family: var(--zc-f-display); font-size: 18px; font-weight: 500;
  letter-spacing: -0.5px; flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(18, 12, 4, 0.18);
}
.zc-doc-hero__topline-text {
  font-family: var(--zc-f-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--zc-warm-dk); flex-shrink: 0;
}
.zc-doc-hero__topline-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
}
.zc-doc-hero__topline-stars {
  display: inline-flex; gap: 6px; color: var(--zc-amber);
  font-size: 8px; flex-shrink: 0; opacity: 0.6;
}

.zc-doc-hero__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-hero__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

/* Branded breadcrumb */
.zc-doc-hero__crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  font-family: var(--zc-f-heading); font-size: 11px;
  font-weight: 600; letter-spacing: 0.4px;
}
.zc-doc-hero__crumb-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--zc-warm-dk);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--zc-linen);
  transition: all 0.3s var(--zc-ease);
}
.zc-doc-hero__crumb-link:hover {
  color: var(--zc-amber-dk);
  border-color: var(--zc-amber-a35);
  background: rgba(255, 255, 255, 0.95);
}
.zc-doc-hero__crumb-sep { color: var(--zc-stone); font-size: 9px; }
.zc-doc-hero__crumb-current {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  border-radius: 999px;
  font-family: var(--zc-f-heading);
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 14px var(--zc-amber-a35);
}

/* Asymmetric layout — portrait left, identity right */
.zc-doc-hero__layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 991px) { .zc-doc-hero__layout { grid-template-columns: 1fr; gap: 32px; } }

/* ── Portrait — magazine framed photo ──────────────────────────── */
.zc-doc-hero__portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zc-charcoal), var(--zc-deep));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 30px 60px rgba(18, 12, 4, 0.18),
    0 8px 18px rgba(46, 75, 113, 0.10);
}
.zc-doc-hero__portrait-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 12s var(--zc-ease-out);
  filter: saturate(0.95) contrast(1.03);
}
.zc-doc-hero__portrait:hover .zc-doc-hero__portrait-img { transform: scale(1.04); }
.zc-doc-hero__portrait-tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 60%, rgba(18, 12, 4, 0.40) 100%),
    linear-gradient(135deg, rgba(46, 75, 113, 0.12) 0%, transparent 60%);
  mix-blend-mode: multiply;
}

/* Editorial corner brackets */
.zc-doc-hero__portrait-bracket {
  position: absolute;
  width: 26px; height: 26px;
  pointer-events: none;
  z-index: 3;
}
.zc-doc-hero__portrait-bracket::before,
.zc-doc-hero__portrait-bracket::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
}
.zc-doc-hero__portrait-bracket--tl { top: 14px; left: 14px; }
.zc-doc-hero__portrait-bracket--tl::before { top: 0; left: 0; width: 26px; height: 1px; }
.zc-doc-hero__portrait-bracket--tl::after  { top: 0; left: 0; width: 1px;  height: 26px; }
/* Bottom-right bracket hidden so it doesn't fight the rating chip */
.zc-doc-hero__portrait-bracket--br { display: none; }

/* "Lead Consultant" role badge — top-right */
.zc-doc-hero__portrait-role {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  border-radius: 999px;
  font-family: var(--zc-f-heading);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  box-shadow: 0 8px 18px var(--zc-amber-a45);
}
.zc-doc-hero__portrait-role i { font-size: 10px; }

/* Bottom italic-free caption */
.zc-doc-hero__portrait-caption {
  position: absolute;
  bottom: 18px; left: 24px;
  z-index: 3;
  font-family: var(--zc-f-heading);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Rating chip — sits FULLY INSIDE the portrait at bottom-right (above the
   bottom-right corner bracket). The portrait has overflow:hidden, so the
   chip must live within the figure bounds. */
.zc-doc-hero__rating {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 4;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 11px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: 1px solid var(--zc-amber-a25);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 24px rgba(18, 12, 4, 0.20),
    0 4px 10px rgba(207, 138, 63, 0.18);
  animation: zc-doc-rating-float 7s ease-in-out infinite;
}
@keyframes zc-doc-rating-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.zc-doc-hero__rating-stars {
  display: inline-flex;
  gap: 1px;
  font-size: 12px;
  color: var(--zc-amber);
  text-shadow: 0 0 8px var(--zc-amber-a35);
}
.zc-doc-hero__rating-text { display: flex; flex-direction: column; gap: 0; line-height: 1.05; }
.zc-doc-hero__rating-text b {
  font-family: var(--zc-f-display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--zc-charcoal);
}
.zc-doc-hero__rating-text small {
  font-family: var(--zc-f-accent);
  font-size: 9.5px;
  letter-spacing: 0.3px;
  color: var(--zc-warm-mid);
  margin-top: 2px;
}

/* Highlights chips — quick reasons to choose */
.zc-doc-hero__highlights {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.zc-doc-hero__highlight {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  background: var(--zc-white);
  border: 1px solid var(--zc-amber-a18);
  border-radius: 999px;
  font-family: var(--zc-f-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--zc-warm-dk);
  cursor: default;
  transition: all 0.35s var(--zc-ease-spring);
}
.zc-doc-hero__highlight:hover {
  transform: translateY(-2px);
  border-color: var(--zc-amber-a45);
  color: var(--zc-amber-dk);
  box-shadow: 0 8px 18px rgba(207, 138, 63, 0.14);
}
.zc-doc-hero__highlight i { color: var(--zc-amber-dk); font-size: 12px; }

/* ── Identity column ─────────────────────────────────────────── */
.zc-doc-hero__identity { display: flex; flex-direction: column; }
.zc-doc-hero__specialty {
  display: inline-flex; align-self: flex-start;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--zc-amber-a08);
  border: 1px solid var(--zc-amber-a25);
  color: var(--zc-amber-dk);
  font-family: var(--zc-f-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
}
.zc-doc-hero--navy .zc-doc-hero__specialty {
  background: rgba(46, 75, 113, 0.06);
  border-color: var(--zc-navy-a15);
  color: var(--zc-navy);
}
.zc-doc-hero__name {
  font-family: var(--zc-f-display);
  font-size: clamp(36px, 3.4vw + 12px, 64px);
  font-weight: 400; line-height: 1.02; letter-spacing: -1.8px;
  color: var(--zc-charcoal);
  margin: 0 0 14px 0;
}
.zc-doc-hero__short {
  font-family: var(--zc-f-body);
  font-size: 15px; line-height: 1.65;
  color: var(--zc-warm-dk);
  margin: 0 0 24px 0;
}

/* Quick metrics strip — icon pill + number + label */
.zc-doc-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 18px;
  background: var(--zc-white);
  border: 1px solid var(--zc-linen);
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 14px 30px rgba(18, 12, 4, 0.04);
}
@media (max-width: 600px) {
  .zc-doc-hero__metrics { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
}
.zc-doc-hero__metric {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  row-gap: 1px;
  min-width: 0;
}
.zc-doc-hero__metric:not(:last-child) {
  position: relative;
}
.zc-doc-hero__metric:not(:last-child)::after {
  /* Vertical divider between metrics */
  content: '';
  position: absolute;
  top: 8px; bottom: 8px; right: -5px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--zc-linen), transparent);
}
@media (max-width: 600px) {
  .zc-doc-hero__metric:not(:last-child)::after { display: none; }
}

.zc-doc-hero__metric-ic {
  grid-row: 1 / span 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  font-size: 15px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.20) inset,
    0 6px 14px var(--zc-amber-a35);
  transition: transform 0.4s var(--zc-ease-spring);
}
.zc-doc-hero__metric:hover .zc-doc-hero__metric-ic {
  transform: scale(1.08) rotate(-6deg);
}

.zc-doc-hero__metric-num {
  font-family: var(--zc-f-display);
  font-size: clamp(20px, 1.4vw + 10px, 26px);
  font-weight: 500;
  letter-spacing: -0.6px; line-height: 1;
  color: var(--zc-amber-dk);
  display: inline-flex; align-items: baseline;
  align-self: end;
}
.zc-doc-hero__metric-num sup {
  font-size: 0.5em;
  margin-left: 1px;
  color: var(--zc-amber-dk);
}
.zc-doc-hero__metric-lbl {
  font-family: var(--zc-f-heading);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--zc-warm-mid);
  align-self: start;
  line-height: 1.2;
}

/* Languages line */
.zc-doc-hero__langs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.zc-doc-hero__langs-label {
  font-family: var(--zc-f-heading);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--zc-warm-mid);
  margin-right: 4px;
}
.zc-doc-hero__lang {
  display: inline-flex; align-items: center;
  padding: 4px 11px;
  background: var(--zc-pearl);
  border: 1px solid var(--zc-linen);
  border-radius: 999px;
  font-family: var(--zc-f-accent);
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--zc-warm-dk);
}

/* Action row */
.zc-doc-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.zc-doc-hero__btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--zc-f-heading);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--zc-ease-spring);
  white-space: nowrap;
}
.zc-doc-hero__btn--primary {
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.20) inset, 0 12px 26px var(--zc-amber-a45);
}
.zc-doc-hero__btn--primary:hover { transform: translateY(-2px); color: var(--zc-white); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.20) inset, 0 18px 36px var(--zc-amber-a45); }
.zc-doc-hero__btn--ghost {
  background: var(--zc-white);
  color: var(--zc-charcoal);
  border: 1px solid var(--zc-linen);
}
.zc-doc-hero__btn--ghost:hover { transform: translateY(-2px); border-color: var(--zc-amber-a45); color: var(--zc-amber-dk); }
.zc-doc-hero__btn i { font-size: 13px; }


/* ==========================================================================
   §2   ABOUT — drop-cap editorial paragraph + side pull-quote
   ========================================================================== */
.zc-doc-about {
  position: relative;
  padding: clamp(34px, 4vw, 56px) 0;
  background: var(--zc-pearl);
}
.zc-doc-about__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-about__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

/* ── Header ───────────────────────────────────────────── */
.zc-doc-about__head { margin: 0 0 clamp(28px, 3vw, 44px); }
.zc-doc-about__head-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.zc-doc-about__overline {
  font-family: var(--zc-f-heading);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--zc-warm-mid);
  flex-shrink: 0;
}
.zc-doc-about__head-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
}
.zc-doc-about__head-meta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--zc-warm-mid);
}
.zc-doc-about__head-meta i { color: var(--zc-amber-dk); font-size: 11px; }
@media (max-width: 600px) { .zc-doc-about__head-top { flex-wrap: wrap; gap: 8px; } .zc-doc-about__head-rule { display: none; } }

.zc-doc-about__title {
  font-family: var(--zc-f-display);
  font-size: clamp(28px, 2.4vw + 12px, 46px);
  font-weight: 400; line-height: 1.1; letter-spacing: -1.2px;
  color: var(--zc-charcoal);
  margin: 0;
}
.zc-doc-about__title-accent { color: var(--zc-amber-dk); font-weight: 500; }

/* ── Body — split: editorial story left + sticky sidebar right ── */
.zc-doc-about__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(36px, 4vw, 56px);
}
@media (max-width: 991px) { .zc-doc-about__body { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; } }

/* Editorial story column */
.zc-doc-about__story { display: flex; flex-direction: column; gap: clamp(22px, 2.6vw, 30px); }

.zc-doc-about__lead {
  font-family: var(--zc-f-display);
  font-size: clamp(17px, 0.9vw + 12px, 22px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.4px;
  color: var(--zc-charcoal);
  margin: 0;
  padding-bottom: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px dashed var(--zc-linen);
}
.zc-doc-about__dropcap {
  float: left;
  font-family: var(--zc-f-display);
  font-size: clamp(56px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -2.5px;
  color: var(--zc-amber-dk);
  margin: -8px 10px 0 0;
}

/* Sub-section: numbered + heading + body */
.zc-doc-about__sub {
  position: relative;
  padding-left: clamp(0px, 1.5vw, 20px);
}
.zc-doc-about__sub-num {
  display: inline-block;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  color: var(--zc-amber-dk);
  margin-bottom: 6px;
  padding: 2px 0;
}
.zc-doc-about__sub-h {
  font-family: var(--zc-f-display);
  font-size: clamp(18px, 1vw + 10px, 24px);
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--zc-charcoal);
  margin: 0 0 10px 0;
  position: relative;
  padding-left: 20px;
}
.zc-doc-about__sub-h::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 12px; height: 1px;
  background: var(--zc-amber);
}
.zc-doc-about__sub-body {
  font-family: var(--zc-f-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--zc-warm-dk);
  margin: 0;
  padding-left: 20px;
}

/* Signature line — author flourish at the end of the story */
.zc-doc-about__sig {
  display: flex; align-items: center; gap: 16px;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--zc-linen);
}
.zc-doc-about__sig-rule {
  flex-shrink: 0;
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--zc-amber-dk), var(--zc-amber));
  position: relative;
}
.zc-doc-about__sig-rule::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--zc-amber);
}
.zc-doc-about__sig-block { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.zc-doc-about__sig-name {
  font-family: var(--zc-f-display);
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--zc-charcoal);
}
.zc-doc-about__sig-role {
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  letter-spacing: 0.2px;
  color: var(--zc-warm-mid);
}

/* ── Sidebar (sticky on desktop) ──────────────────────── */
.zc-doc-about__aside {
  display: flex; flex-direction: column;
  gap: clamp(16px, 2vw, 22px);
  position: sticky;
  top: clamp(20px, 4vh, 60px);
}
@media (max-width: 991px) { .zc-doc-about__aside { position: static; } }

/* "At a glance" panel */
.zc-doc-about__glance {
  position: relative;
  padding: clamp(20px, 2vw, 26px);
  background: var(--zc-white);
  border: 1px solid var(--zc-linen);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 18px 36px rgba(18, 12, 4, 0.04);
}
.zc-doc-about__glance::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(20px, 2vw, 26px);
  width: 32px; height: 2px;
  background: var(--zc-amber);
}
.zc-doc-about__glance-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--zc-amber-a08);
  border: 1px solid var(--zc-amber-a35);
  color: var(--zc-amber-dk);
  font-size: 13px;
  margin-bottom: 14px;
}
.zc-doc-about__glance-overline {
  display: block;
  font-family: var(--zc-f-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--zc-warm-mid);
  margin-bottom: 10px;
}
.zc-doc-about__glance-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.zc-doc-about__glance-list li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--zc-linen);
}
.zc-doc-about__glance-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.zc-doc-about__glance-list li:first-child { padding-top: 4px; }
.zc-doc-about__glance-lbl {
  font-family: var(--zc-f-heading);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--zc-warm-mid);
  flex-shrink: 0;
}
.zc-doc-about__glance-val {
  font-family: var(--zc-f-display);
  font-size: 13px; font-weight: 500;
  letter-spacing: -0.05px;
  color: var(--zc-charcoal);
  text-align: right;
}

/* Pull quote — same as before but as a sidebar element */
.zc-doc-about__pull {
  position: relative;
  padding: clamp(24px, 2.6vw, 30px) clamp(22px, 2.4vw, 28px);
  background: linear-gradient(135deg, var(--zc-white), #fbf6eb);
  border: 1px solid var(--zc-amber-a18);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 18px 36px rgba(207, 138, 63, 0.10);
  overflow: hidden;
}
.zc-doc-about__pull::before {
  content: '';
  position: absolute; top: 14px; left: 14px;
  width: 22px; height: 22px;
  border-top: 1px solid var(--zc-amber);
  border-left: 1px solid var(--zc-amber);
}
.zc-doc-about__pull::after {
  content: '';
  position: absolute; bottom: 14px; right: 14px;
  width: 22px; height: 22px;
  border-bottom: 1px solid var(--zc-amber);
  border-right: 1px solid var(--zc-amber);
}
.zc-doc-about__pull-mark {
  position: absolute;
  top: 4px; right: 14px;
  font-family: var(--zc-f-display);
  font-size: clamp(60px, 5vw, 90px);
  line-height: 0.8;
  color: var(--zc-amber);
  opacity: 0.18;
  pointer-events: none;
}
.zc-doc-about__pull-quote {
  position: relative;
  margin: 0;
  font-family: var(--zc-f-display);
  font-size: clamp(15px, 0.6vw + 11px, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: var(--zc-charcoal);
  font-style: normal;
}
.zc-doc-about__pull-cite {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--zc-linen);
  font-family: var(--zc-f-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--zc-warm-mid);
}
.zc-doc-about__pull-rule {
  flex-shrink: 0;
  width: 22px; height: 1px;
  background: var(--zc-amber);
}

/* ── Principles — 4 numbered values below the body ─────── */
.zc-doc-about__principles { padding-top: clamp(20px, 2.4vw, 28px); border-top: 1px solid var(--zc-linen); }
.zc-doc-about__principles-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(20px, 2vw, 26px);
}
.zc-doc-about__principles-overline {
  font-family: var(--zc-f-heading);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--zc-amber-dk);
  flex-shrink: 0;
}
.zc-doc-about__principles-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
}
.zc-doc-about__principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 991px) { .zc-doc-about__principles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .zc-doc-about__principles-grid { grid-template-columns: 1fr; } }

.zc-doc-about__principle {
  position: relative;
  padding: clamp(20px, 2vw, 26px) clamp(18px, 1.8vw, 24px);
  background: var(--zc-white);
  border: 1px solid var(--zc-linen);
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--zc-ease-spring), border-color 0.45s var(--zc-ease), box-shadow 0.45s var(--zc-ease);
}
.zc-doc-about__principle::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--zc-amber);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--zc-ease-spring);
}
.zc-doc-about__principle:hover {
  transform: translateY(-3px);
  border-color: var(--zc-amber-a35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 18px 36px rgba(207, 138, 63, 0.10);
}
.zc-doc-about__principle:hover::before { transform: scaleY(1); }
.zc-doc-about__principle-num {
  display: inline-block;
  font-family: var(--zc-f-display);
  font-size: clamp(36px, 2.6vw + 8px, 52px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 0.85;
  color: var(--zc-amber-dk);
  margin-bottom: 12px;
  position: relative;
}
.zc-doc-about__principle-num::after {
  content: '';
  position: absolute;
  left: 2px; right: 30%;
  bottom: -6px;
  height: 1px;
  background: var(--zc-amber);
}
.zc-doc-about__principle-title {
  font-family: var(--zc-f-display);
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--zc-charcoal);
  margin: 0 0 6px 0;
}
.zc-doc-about__principle-desc {
  font-family: var(--zc-f-body);
  font-size: 12.5px; line-height: 1.55;
  color: var(--zc-warm-dk);
  margin: 0;
}


/* ==========================================================================
   §3   AREAS OF EXPERTISE — numbered editorial cards
   ========================================================================== */
.zc-doc-exp {
  position: relative;
  padding: clamp(28px, 3.2vw, 44px) 0;
  background: var(--zc-off-white);
}
.zc-doc-exp__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-exp__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

.zc-doc-exp__head { margin: 0 0 clamp(28px, 3vw, 44px); max-width: 760px; }
.zc-doc-exp__head-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.zc-doc-exp__overline {
  font-family: var(--zc-f-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--zc-amber-dk);
  flex-shrink: 0;
}
.zc-doc-exp__head-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--zc-amber-a45), transparent); }
.zc-doc-exp__head-meta {
  flex-shrink: 0;
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  color: var(--zc-warm-mid);
}
.zc-doc-exp__head-meta b {
  font-family: var(--zc-f-display); font-weight: 500; font-size: 14px;
  color: var(--zc-amber-dk); margin-right: 1px;
}
@media (max-width: 600px) { .zc-doc-exp__head-top { flex-wrap: wrap; gap: 8px; } .zc-doc-exp__head-rule { display: none; } }

.zc-doc-exp__title {
  font-family: var(--zc-f-display);
  font-size: clamp(26px, 2vw + 10px, 38px);
  font-weight: 400; line-height: 1.15; letter-spacing: -1px;
  color: var(--zc-charcoal);
  margin: 0;
}
.zc-doc-exp__title-accent { color: var(--zc-amber-dk); font-weight: 500; }

/* Compact uniform grid — equal-height cards (default grid stretch),
   horizontal layout per card (icon-left + body-right) so heights align
   regardless of description length. */
.zc-doc-exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.2vw, 16px);
}
@media (max-width: 991px) { .zc-doc-exp__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .zc-doc-exp__grid { grid-template-columns: 1fr; } }

.zc-doc-exp__card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 18px 18px 16px;
  background: var(--zc-white);
  border: 1px solid var(--zc-linen);
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--zc-ease-spring), box-shadow 0.5s var(--zc-ease), border-color 0.5s var(--zc-ease);
}

/* LEFT — icon + small numeric marker stack */
.zc-doc-exp__lhs {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative; z-index: 1;
}

/* RIGHT — name + description + bottom rule (anchored bottom for alignment) */
.zc-doc-exp__rhs {
  display: flex; flex-direction: column;
  min-width: 0;
  position: relative; z-index: 1;
}
.zc-doc-exp__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--zc-amber-dk), var(--zc-amber-lt), var(--zc-amber));
  transform: scaleX(0.2); transform-origin: left;
  transition: transform 0.5s var(--zc-ease-spring);
}
.zc-doc-exp__card:hover {
  transform: translateY(-4px);
  border-color: var(--zc-amber-a35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 18px 38px rgba(207, 138, 63, 0.10);
}
.zc-doc-exp__card:hover::before { transform: scaleX(1); }

/* Small numeric marker BELOW the icon */
.zc-doc-exp__num {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 1.4px;
  color: var(--zc-amber-dk);
  opacity: 0.75;
}
.zc-doc-exp__seal {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--zc-amber-a18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.6s var(--zc-ease-spring);
}
.zc-doc-exp__card:hover .zc-doc-exp__seal { transform: scale(1.15); }

.zc-doc-exp__ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  font-size: 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.20) inset, 0 6px 14px var(--zc-amber-a35);
  transition: transform 0.4s var(--zc-ease-spring);
}
.zc-doc-exp__card:hover .zc-doc-exp__ic { transform: scale(1.08) rotate(-6deg); }

.zc-doc-exp__name {
  font-family: var(--zc-f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--zc-charcoal);
  margin: 0 0 6px 0;
}
.zc-doc-exp__desc {
  font-family: var(--zc-f-body);
  font-size: 12px; line-height: 1.5;
  color: var(--zc-warm-dk);
  margin: 0 0 10px 0;
}

/* Bottom thin amber rule — anchored to bottom via margin-top:auto so all
   cards visually finish at the same line regardless of description length. */
.zc-doc-exp__rule {
  display: block;
  margin-top: auto;
  width: 28px; height: 1px;
  background: var(--zc-amber);
  position: relative;
}
.zc-doc-exp__rule::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--zc-amber);
}

/* ── Feature card — same size as others, just visually emphasised ── */
.zc-doc-exp__card--feature {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(207, 138, 63, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--zc-white), #fbf6eb);
  border-color: var(--zc-amber-a25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 14px 28px rgba(207, 138, 63, 0.08);
}
.zc-doc-exp__card--feature::before {
  /* Top stripe always visible on the feature card */
  transform: scaleX(1);
  opacity: 1;
}

/* "Lead" tag — top-right, compact */
.zc-doc-exp__feature-tag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  display: inline-flex; align-items: center;
  padding: 3px 9px;
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  border-radius: 999px;
  font-family: var(--zc-f-heading);
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  box-shadow: 0 4px 10px var(--zc-amber-a35);
}


/* ==========================================================================
   §4   EDUCATION & MEMBERSHIPS — premium credential spread
   --------------------------------------------------------------------------
   Top row : overline + thin amber rule + degrees/memberships count
   Title   : two-line solid-color (no gradient text)
   Body    : Education timeline (left) + Membership badges (right, 2x2)
   ========================================================================== */
.zc-doc-cred {
  position: relative;
  padding: clamp(28px, 3.2vw, 44px) 0;
  background: var(--zc-pearl);
}
.zc-doc-cred__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-cred__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

/* ── Section header ────────────────────────────────────────── */
.zc-doc-cred__top {
  margin: 0 0 clamp(28px, 3vw, 40px);
  max-width: 760px;
}
.zc-doc-cred__top-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.zc-doc-cred__overline {
  font-family: var(--zc-f-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--zc-amber-dk);
  flex-shrink: 0;
}
.zc-doc-cred__top-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--zc-amber-a45), transparent);
}
.zc-doc-cred__top-meta {
  flex-shrink: 0;
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  color: var(--zc-warm-mid);
}
.zc-doc-cred__top-meta b {
  font-family: var(--zc-f-display); font-weight: 500; font-size: 14px;
  color: var(--zc-amber-dk); margin-right: 1px;
}
@media (max-width: 600px) {
  .zc-doc-cred__top-row  { flex-wrap: wrap; gap: 8px; }
  .zc-doc-cred__top-rule { display: none; }
}

.zc-doc-cred__title {
  font-family: var(--zc-f-display);
  font-size: clamp(24px, 1.8vw + 10px, 36px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.8px;
  color: var(--zc-charcoal);
  margin: 0;
}
.zc-doc-cred__title-accent { color: var(--zc-amber-dk); font-weight: 500; }

/* ── Body layout — 1.2fr education + 1fr memberships ───────── */
.zc-doc-cred__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
@media (max-width: 991px) { .zc-doc-cred__layout { grid-template-columns: 1fr; gap: 28px; } }

.zc-doc-cred__col-overline {
  display: block;
  font-family: var(--zc-f-heading);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--zc-warm-mid);
  margin-bottom: 16px;
}

/* ── Education timeline — Roman markers + amber spine ──────── */
.zc-doc-cred__timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 6px 0 6px 44px;
}
.zc-doc-cred__timeline-spine {
  position: absolute;
  top: 18px; bottom: 18px;
  left: 16px;
  width: 1px;
  background: linear-gradient(180deg, var(--zc-amber-dk), var(--zc-amber-a45) 60%, var(--zc-amber-a18));
}
.zc-doc-cred__step {
  position: relative;
  padding: 16px 18px 16px 18px;
  background: var(--zc-white);
  border: 1px solid var(--zc-linen);
  border-radius: 4px;
  margin-bottom: 10px;
  transition: transform 0.4s var(--zc-ease-spring), border-color 0.4s var(--zc-ease), box-shadow 0.4s var(--zc-ease);
}
.zc-doc-cred__step:last-child { margin-bottom: 0; }
.zc-doc-cred__step:hover {
  transform: translateX(3px);
  border-color: var(--zc-amber-a35);
  box-shadow: 0 14px 28px rgba(207, 138, 63, 0.10);
}

/* The amber-bordered dot sits ON the spine — continuous outward pulse rings */
.zc-doc-cred__step-dot {
  position: absolute;
  left: -34px; top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--zc-white);
  border: 2px solid var(--zc-amber);
  box-shadow: 0 0 0 4px var(--zc-pearl), 0 4px 10px var(--zc-amber-a45);
  z-index: 1;
  transition: transform 0.3s var(--zc-ease-spring);
}
/* Two ripple rings emanating outward from each dot — staggered for continuous pulse */
.zc-doc-cred__step-dot::before,
.zc-doc-cred__step-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--zc-amber);
  opacity: 0;
  animation: zc-doc-cred-pulse 3s ease-out infinite;
  pointer-events: none;
}
.zc-doc-cred__step-dot::after { animation-delay: 1.5s; }
@keyframes zc-doc-cred-pulse {
  0%   { transform: scale(1);    opacity: 0.7; border-width: 2px; }
  60%  { opacity: 0.2; }
  100% { transform: scale(2.6);  opacity: 0;   border-width: 1px; }
}
/* Stagger the start of each step's pulse so they don't all fire in unison */
.zc-doc-cred__step:nth-child(2) .zc-doc-cred__step-dot::before { animation-delay: 0.5s; }
.zc-doc-cred__step:nth-child(2) .zc-doc-cred__step-dot::after  { animation-delay: 2.0s; }
.zc-doc-cred__step:nth-child(3) .zc-doc-cred__step-dot::before { animation-delay: 1.0s; }
.zc-doc-cred__step:nth-child(3) .zc-doc-cred__step-dot::after  { animation-delay: 2.5s; }

.zc-doc-cred__step:hover .zc-doc-cred__step-dot {
  transform: scale(1.15);
  background: var(--zc-amber);
}

/* Roman numeral marker — top-right of each step */
.zc-doc-cred__step-roman {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--zc-f-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1;
  color: var(--zc-amber-dk);
  opacity: 0.55;
}

.zc-doc-cred__step-degree {
  display: block;
  font-family: var(--zc-f-display);
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--zc-charcoal);
  margin: 0 30px 6px 0;
  line-height: 1.25;
}
.zc-doc-cred__step-institute {
  display: inline-flex; align-items: flex-start; gap: 7px;
  font-family: var(--zc-f-body);
  font-size: 12px;
  line-height: 1.45;
  color: var(--zc-warm-dk);
  letter-spacing: 0.1px;
}
.zc-doc-cred__step-institute i {
  flex-shrink: 0;
  margin-top: -1px;
  font-size: 12px;
  color: var(--zc-amber-dk);
}

/* ── Memberships — 2x2 premium badge grid ──────────────────── */
.zc-doc-cred__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) { .zc-doc-cred__badges { grid-template-columns: 1fr; } }

.zc-doc-cred__badge {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: 18px 16px 16px;
  background: var(--zc-white);
  border: 1px solid var(--zc-linen);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--zc-ease-spring), border-color 0.4s var(--zc-ease), box-shadow 0.4s var(--zc-ease);
  isolation: isolate;
}
/* SPLIT-COLOR LIGHT SPOT — amber + navy radial gradient blobs at top-right */
.zc-doc-cred__badge::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 30%, var(--zc-amber-a35) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(46, 75, 113, 0.25) 0%, transparent 60%);
  filter: blur(12px);
  opacity: 0.5;
  transition: opacity 0.5s var(--zc-ease), transform 0.6s var(--zc-ease-spring);
}
.zc-doc-cred__badge--navy::after {
  background:
    radial-gradient(circle at 30% 30%, rgba(46, 75, 113, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, var(--zc-amber-a25) 0%, transparent 60%);
}
.zc-doc-cred__badge:hover::after {
  opacity: 0.85;
  transform: scale(1.25);
}

.zc-doc-cred__badge::before {
  /* Top hairline that scales in on hover */
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transform: scaleX(0.3); transform-origin: left;
  transition: opacity 0.4s var(--zc-ease), transform 0.5s var(--zc-ease-spring);
  z-index: 1;
}
.zc-doc-cred__badge--amber::before { background: linear-gradient(90deg, var(--zc-amber-dk), var(--zc-amber-lt), var(--zc-amber)); }
.zc-doc-cred__badge--navy::before  { background: linear-gradient(90deg, var(--zc-navy-deep), var(--zc-navy-soft), var(--zc-amber)); }
.zc-doc-cred__badge:hover {
  transform: translateY(-3px);
  border-color: var(--zc-amber-a35);
  box-shadow: 0 14px 28px rgba(207, 138, 63, 0.10);
}
.zc-doc-cred__badge:hover::before { opacity: 1; transform: scaleX(1); }

/* Seal disc — emits network-wave ripples on card hover */
.zc-doc-cred__badge-seal {
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  font-size: 16px;
  margin-bottom: 10px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.20) inset, 0 6px 14px var(--zc-amber-a35);
  transition: transform 0.4s var(--zc-ease-spring);
}
.zc-doc-cred__badge--navy .zc-doc-cred__badge-seal {
  background: linear-gradient(135deg, var(--zc-navy-soft), var(--zc-navy));
  color: var(--zc-amber-lt);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 6px 14px rgba(46, 75, 113, 0.30);
}
.zc-doc-cred__badge:hover .zc-doc-cred__badge-seal { transform: rotate(-12deg) scale(1.08); }

/* The .__badge-ring lives INSIDE the seal disc; spawns 2 wave rings on hover */
.zc-doc-cred__badge-ring,
.zc-doc-cred__badge-seal::before,
.zc-doc-cred__badge-seal::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--zc-amber);
  opacity: 0;
  pointer-events: none;
}
.zc-doc-cred__badge--navy .zc-doc-cred__badge-ring,
.zc-doc-cred__badge--navy .zc-doc-cred__badge-seal::before,
.zc-doc-cred__badge--navy .zc-doc-cred__badge-seal::after {
  border-color: var(--zc-navy);
}
/* Trigger the ripples on card hover — staggered for a network-wave effect */
.zc-doc-cred__badge:hover .zc-doc-cred__badge-ring   { animation: zc-doc-cred-network 1.6s ease-out infinite;       }
.zc-doc-cred__badge:hover .zc-doc-cred__badge-seal::before { animation: zc-doc-cred-network 1.6s ease-out infinite -0.4s; }
.zc-doc-cred__badge:hover .zc-doc-cred__badge-seal::after  { animation: zc-doc-cred-network 1.6s ease-out infinite -0.8s; }

@keyframes zc-doc-cred-network {
  0%   { transform: scale(1);    opacity: 0.7; border-width: 1.5px; }
  60%  { opacity: 0.18; }
  100% { transform: scale(3.4);  opacity: 0;   border-width: 0.5px; }
}

.zc-doc-cred__badge-name {
  font-family: var(--zc-f-display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--zc-charcoal);
  margin: 0 0 4px 0;
}
.zc-doc-cred__badge-sub {
  font-family: var(--zc-f-accent);
  font-size: 11px;
  line-height: 1.4;
  color: var(--zc-warm-mid);
  letter-spacing: 0.1px;
  margin: 0;
}
.zc-doc-cred__badge-mark {
  position: absolute;
  bottom: 12px; right: 14px;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 1.2px;
  color: var(--zc-stone);
  opacity: 0.85;
}


/* ==========================================================================
   §5   PROCEDURES — numbered editorial manifesto (no cards)
   --------------------------------------------------------------------------
   Two-column flow of numbered lines: monospace `01` + thin amber rule +
   procedure name. Compact, editorial, scannable.
   ========================================================================== */
.zc-doc-proc {
  position: relative;
  padding: clamp(28px, 3.2vw, 44px) 0;
  background: var(--zc-off-white);
}
.zc-doc-proc__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-proc__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

.zc-doc-proc__head { margin: 0 0 clamp(24px, 2.6vw, 36px); max-width: 760px; }
.zc-doc-proc__head-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.zc-doc-proc__overline {
  font-family: var(--zc-f-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--zc-amber-dk);
  flex-shrink: 0;
}
.zc-doc-proc__head-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--zc-amber-a45), transparent); }
.zc-doc-proc__head-meta {
  flex-shrink: 0;
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  color: var(--zc-warm-mid);
}
.zc-doc-proc__head-meta b {
  font-family: var(--zc-f-display); font-weight: 500; font-size: 14px;
  color: var(--zc-amber-dk); margin-right: 1px;
}
@media (max-width: 600px) { .zc-doc-proc__head-row { flex-wrap: wrap; gap: 8px; } .zc-doc-proc__head-rule { display: none; } }

.zc-doc-proc__title {
  font-family: var(--zc-f-display);
  font-size: clamp(24px, 1.8vw + 10px, 36px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.8px;
  color: var(--zc-charcoal);
  margin: 0;
}
.zc-doc-proc__title-accent { color: var(--zc-amber-dk); font-weight: 500; }

.zc-doc-proc__manifesto {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 0;
}
@media (max-width: 600px) { .zc-doc-proc__manifesto { grid-template-columns: 1fr; column-gap: 0; } }

.zc-doc-proc__line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--zc-linen);
  cursor: default;
  transition: padding 0.3s var(--zc-ease);
}
.zc-doc-proc__line:hover { padding-left: 8px; }
.zc-doc-proc__line:hover .zc-doc-proc__line-num { color: var(--zc-amber-dk); opacity: 1; }
.zc-doc-proc__line:hover .zc-doc-proc__line-rule { background: var(--zc-amber); transform: scaleX(1.1); }
.zc-doc-proc__line:hover .zc-doc-proc__line-name { color: var(--zc-charcoal); }
@media (min-width: 601px) {
  .zc-doc-proc__line:last-child,
  .zc-doc-proc__line:nth-last-child(2):not(:last-child) { border-bottom: 0; }
}
@media (max-width: 600px) { .zc-doc-proc__line:last-child { border-bottom: 0; } }

.zc-doc-proc__line-num {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  color: var(--zc-amber-dk);
  opacity: 0.55;
  transition: color 0.3s var(--zc-ease), opacity 0.3s var(--zc-ease);
}
.zc-doc-proc__line-rule {
  width: 14px; height: 1px;
  background: var(--zc-amber-a45);
  transition: background 0.3s var(--zc-ease), transform 0.3s var(--zc-ease-spring);
  transform-origin: left;
}
.zc-doc-proc__line-name {
  font-family: var(--zc-f-display);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: 1.3;
  color: var(--zc-warm-dk);
  transition: color 0.3s var(--zc-ease);
}


/* ==========================================================================
   §6   SCHEDULE — minimal concierge band (linear week + focused CTA)
   ========================================================================== */
.zc-doc-sched {
  position: relative;
  padding: clamp(28px, 3.2vw, 44px) 0;
  background: var(--zc-snow);
}
.zc-doc-sched__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-sched__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

.zc-doc-sched__band {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 48px);
  background: linear-gradient(135deg, var(--zc-deep) 0%, var(--zc-charcoal) 50%, var(--zc-navy-deep) 100%);
  border-radius: 6px;
  overflow: hidden;
  color: var(--zc-white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 22px 48px rgba(18, 12, 4, 0.22);
  isolation: isolate;
}
@media (max-width: 991px) { .zc-doc-sched__band { grid-template-columns: 1fr; gap: 26px; } }

.zc-doc-sched__glow {
  position: absolute;
  bottom: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--zc-amber-a45), transparent 70%);
  filter: blur(50px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.zc-doc-sched__l { position: relative; z-index: 1; display: flex; flex-direction: column; }
.zc-doc-sched__overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--zc-f-heading);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--zc-amber-lt);
  margin-bottom: 10px;
}
.zc-doc-sched__live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--zc-success);
  box-shadow: 0 0 10px var(--zc-success);
  animation: zc-doc-blink 2s ease-in-out infinite;
}
@keyframes zc-doc-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.zc-doc-sched__title {
  font-family: var(--zc-f-display);
  font-size: clamp(22px, 1.8vw + 8px, 32px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.8px;
  color: var(--zc-white);
  margin: 0 0 18px 0;
}
.zc-doc-sched__title-accent { color: var(--zc-amber-lt); font-weight: 500; }

.zc-doc-sched__week {
  list-style: none; padding: 0; margin: 0 0 14px 0;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.zc-doc-sched__pip {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  padding: 8px 10px 7px;
  min-width: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  cursor: default;
  transition: all 0.35s var(--zc-ease);
}
.zc-doc-sched__pip:hover { background: rgba(207, 138, 63, 0.14); border-color: var(--zc-amber-a45); }
.zc-doc-sched__pip-day {
  font-family: var(--zc-f-heading);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--zc-amber-lt);
}
.zc-doc-sched__pip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--zc-amber);
  box-shadow: 0 0 6px var(--zc-amber-a45);
}
.zc-doc-sched__pip.is-closed .zc-doc-sched__pip-dot { background: rgba(255, 255, 255, 0.20); box-shadow: none; }
.zc-doc-sched__pip.is-closed { opacity: 0.55; }
.zc-doc-sched__pip.is-today {
  background: linear-gradient(135deg, var(--zc-amber-a35), rgba(207, 138, 63, 0.10));
  border-color: var(--zc-amber);
  box-shadow: 0 8px 16px rgba(207, 138, 63, 0.30);
}
.zc-doc-sched__pip.is-today .zc-doc-sched__pip-day { color: var(--zc-white); }
.zc-doc-sched__pip.is-today .zc-doc-sched__pip-dot { background: var(--zc-white); }

.zc-doc-sched__today {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0;
  padding: 8px 12px;
  background: rgba(207, 138, 63, 0.10);
  border: 1px solid var(--zc-amber-a35);
  border-radius: 999px;
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.2px;
  align-self: flex-start;
}
.zc-doc-sched__today b { font-family: var(--zc-f-display); font-weight: 500; color: var(--zc-amber-lt); }
.zc-doc-sched__today em { font-style: normal; color: var(--zc-amber-lt); font-weight: 500; }
.zc-doc-sched__today-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--zc-amber);
  box-shadow: 0 0 8px var(--zc-amber);
  flex-shrink: 0;
}

.zc-doc-sched__r { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.zc-doc-sched__btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.20) inset, 0 12px 26px var(--zc-amber-a45);
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--zc-ease-spring);
}
.zc-doc-sched__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-18deg);
  transition: left 0.85s var(--zc-ease);
}
.zc-doc-sched__btn:hover { transform: translateY(-2px); color: var(--zc-white); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.20) inset, 0 18px 36px var(--zc-amber-a45); }
.zc-doc-sched__btn:hover::before { left: 130%; }
.zc-doc-sched__btn-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; position: relative; z-index: 1; }
.zc-doc-sched__btn-text small {
  font-family: var(--zc-f-heading);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
}
.zc-doc-sched__btn-text b {
  font-family: var(--zc-f-display);
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--zc-white);
}
.zc-doc-sched__btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: var(--zc-white);
  font-size: 14px;
  position: relative; z-index: 1;
  transition: all 0.4s var(--zc-ease-spring);
}
.zc-doc-sched__btn:hover .zc-doc-sched__btn-arrow {
  transform: rotate(15deg);
  background: var(--zc-white);
  color: var(--zc-amber-dk);
}
.zc-doc-sched__sub-row { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 4px; }
.zc-doc-sched__sub-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--zc-f-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.3s var(--zc-ease);
}
.zc-doc-sched__sub-link:hover { color: var(--zc-amber-lt); }
.zc-doc-sched__sub-link i { font-size: 12px; color: var(--zc-amber-lt); }


/* ==========================================================================
   §7   TESTIMONIALS — magazine spread (featured + 2 voices, no cards)
   ========================================================================== */
.zc-doc-test {
  position: relative;
  padding: clamp(34px, 4vw, 56px) 0;
  background:
    radial-gradient(ellipse at 95% 5%, rgba(207, 138, 63, 0.06) 0%, transparent 50%),
    var(--zc-off-white);
}
.zc-doc-test__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-test__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

.zc-doc-test__head { margin: 0 0 clamp(28px, 3vw, 44px); max-width: 760px; }
.zc-doc-test__head-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.zc-doc-test__overline {
  font-family: var(--zc-f-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--zc-amber-dk);
  flex-shrink: 0;
}
.zc-doc-test__head-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--zc-amber-a45), transparent); }
.zc-doc-test__head-meta {
  flex-shrink: 0;
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  color: var(--zc-warm-mid);
}
.zc-doc-test__head-meta b {
  font-family: var(--zc-f-display); font-weight: 500; font-size: 14px;
  color: var(--zc-amber-dk); margin-right: 1px;
}
@media (max-width: 600px) { .zc-doc-test__head-row { flex-wrap: wrap; gap: 8px; } .zc-doc-test__head-rule { display: none; } }

.zc-doc-test__title {
  font-family: var(--zc-f-display);
  font-size: clamp(26px, 2vw + 12px, 42px);
  font-weight: 400; line-height: 1.1; letter-spacing: -1.2px;
  color: var(--zc-charcoal);
  margin: 0 0 8px 0;
}
.zc-doc-test__title-accent { color: var(--zc-amber-dk); font-weight: 500; }
.zc-doc-test__sub {
  font-family: var(--zc-f-body);
  font-size: 13px;
  color: var(--zc-warm-mid);
  margin: 0;
}

.zc-doc-test__spread {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
}
@media (max-width: 991px) { .zc-doc-test__spread { grid-template-columns: 1fr; gap: 28px; } }

.zc-doc-test__featured {
  position: relative;
  margin: 0;
  padding: 24px 0 24px 36px;
  border-left: 2px solid var(--zc-amber);
}
.zc-doc-test__featured-mark {
  position: absolute;
  top: -10px; left: -8px;
  font-family: var(--zc-f-display);
  font-size: clamp(120px, 11vw, 180px);
  line-height: 0.7;
  font-weight: 400;
  color: var(--zc-amber);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}
.zc-doc-test__featured-num {
  display: block;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--zc-amber-dk);
  opacity: 0.7;
  margin-bottom: 14px;
}
.zc-doc-test__featured-quote {
  position: relative;
  margin: 0;
  font-family: var(--zc-f-display);
  font-size: clamp(20px, 1.4vw + 10px, 30px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.6px;
  color: var(--zc-charcoal);
  font-style: normal;
}
.zc-doc-test__featured-cite {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(20px, 2.4vw, 28px);
}
.zc-doc-test__featured-rule {
  flex-shrink: 0;
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--zc-amber-dk), var(--zc-amber));
}
.zc-doc-test__featured-cite > div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.zc-doc-test__featured-cite b {
  font-family: var(--zc-f-display);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.05px;
  color: var(--zc-charcoal);
}
.zc-doc-test__featured-cite small {
  font-family: var(--zc-f-accent);
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--zc-warm-mid);
}

.zc-doc-test__voices {
  display: flex; flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}
.zc-doc-test__voice {
  position: relative;
  margin: 0;
  padding: 0 0 18px 0;
  border-bottom: 1px dashed var(--zc-linen);
}
.zc-doc-test__voice:last-child { border-bottom: 0; padding-bottom: 0; }
.zc-doc-test__voice-num {
  display: block;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  color: var(--zc-amber-dk);
  opacity: 0.7;
  margin-bottom: 8px;
}
.zc-doc-test__voice-quote {
  margin: 0 0 10px 0;
  font-family: var(--zc-f-display);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: var(--zc-warm-dk);
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zc-doc-test__voice-cite {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--zc-f-heading);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--zc-warm-mid);
}
.zc-doc-test__voice-rule {
  flex-shrink: 0;
  width: 18px; height: 1px;
  background: var(--zc-amber);
}


/* ==========================================================================
   §8   RECOGNITION — horizontal year-anchored timeline (no boxes)
   ========================================================================== */
.zc-doc-awards {
  position: relative;
  padding: clamp(28px, 3.2vw, 44px) 0;
  background: var(--zc-pearl);
}
.zc-doc-awards__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-awards__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

.zc-doc-awards__head { margin: 0 0 clamp(28px, 3vw, 44px); max-width: 760px; }
.zc-doc-awards__head-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.zc-doc-awards__overline {
  font-family: var(--zc-f-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--zc-amber-dk);
  flex-shrink: 0;
}
.zc-doc-awards__head-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--zc-amber-a45), transparent); }
.zc-doc-awards__head-meta {
  flex-shrink: 0;
  font-family: var(--zc-f-accent);
  font-size: 11.5px;
  color: var(--zc-warm-mid);
}
.zc-doc-awards__head-meta b {
  font-family: var(--zc-f-display); font-weight: 500; font-size: 14px;
  color: var(--zc-amber-dk); margin-right: 1px;
}
@media (max-width: 600px) { .zc-doc-awards__head-top { flex-wrap: wrap; gap: 8px; } .zc-doc-awards__head-rule { display: none; } }

.zc-doc-awards__title {
  font-family: var(--zc-f-display);
  font-size: clamp(24px, 1.8vw + 10px, 36px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.8px;
  color: var(--zc-charcoal);
  margin: 0;
}
.zc-doc-awards__title-accent { color: var(--zc-amber-dk); font-weight: 500; }

.zc-doc-awards__rail {
  position: relative;
  padding: 28px 0 8px;
}
.zc-doc-awards__rail-line {
  position: absolute;
  top: 78px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--zc-amber-a25), var(--zc-amber-a45) 30%, var(--zc-amber-a45) 70%, var(--zc-amber-a25));
  z-index: 0;
}
.zc-doc-awards__rail-list {
  position: relative;
  z-index: 1;
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
@media (max-width: 991px) { .zc-doc-awards__rail-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .zc-doc-awards__rail-list { grid-template-columns: 1fr; } .zc-doc-awards__rail-line { display: none; } }

.zc-doc-awards__node {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}
.zc-doc-awards__node-year {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--zc-amber-dk);
  margin-bottom: 8px;
  background: var(--zc-pearl);
  padding: 0 10px;
}
/* SEAL — circular pedestal with award icon at the centre, decorative orbit
   ring + ambient glow pulse + twinkling sparkles + hover network ripple */
.zc-doc-awards__node-seal {
  position: relative;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.30), transparent 55%),
    linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
  color: var(--zc-white);
  font-size: 22px;
  margin-bottom: 18px;
  border: 3px solid var(--zc-pearl);
  box-shadow:
    0 0 0 1px var(--zc-amber-a45),
    0 1px 0 rgba(255, 255, 255, 0.30) inset,
    0 8px 18px var(--zc-amber-a45);
  transition: transform 0.5s var(--zc-ease-spring), box-shadow 0.4s var(--zc-ease);
  z-index: 1;
}
.zc-doc-awards__node-seal i {
  position: relative; z-index: 2;
  transition: transform 0.5s var(--zc-ease-spring);
  filter: drop-shadow(0 1px 2px rgba(18, 12, 4, 0.20));
}

/* Continuous orbital ring — slowly rotates around the seal with 2 chasing dots */
.zc-doc-awards__node-orbit {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--zc-amber-a45);
  pointer-events: none;
  animation: zc-doc-awards-orbit 16s linear infinite;
}
.zc-doc-awards__node-orbit::before,
.zc-doc-awards__node-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--zc-amber);
  box-shadow: 0 0 8px var(--zc-amber-a45);
}
.zc-doc-awards__node-orbit::before { width: 5px; height: 5px; top: -3px;    left: 50%; transform: translateX(-50%); }
.zc-doc-awards__node-orbit::after  { width: 3px; height: 3px; bottom: -2px; left: 50%; transform: translateX(-50%); opacity: 0.7; }
@keyframes zc-doc-awards-orbit {
  to { transform: rotate(360deg); }
}

/* Ambient glow halo — soft radial behind the seal, breathing */
.zc-doc-awards__node-glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--zc-amber-a35) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: zc-doc-awards-glow 3.6s ease-in-out infinite;
  filter: blur(6px);
}
@keyframes zc-doc-awards-glow {
  0%, 100% { transform: scale(1);    opacity: 0.55; }
  50%      { transform: scale(1.18); opacity: 1;    }
}

/* Three small sparkle dots — twinkle around the seal */
.zc-doc-awards__node-spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--zc-amber-lt);
  box-shadow: 0 0 8px var(--zc-amber);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: zc-doc-awards-spark 4s ease-in-out infinite;
}
.zc-doc-awards__node-spark--1 { top: 6px;     right: 0;    animation-delay: 0s;   }
.zc-doc-awards__node-spark--2 { bottom: 6px;  left: 0;     animation-delay: 1.3s; width: 4px; height: 4px; }
.zc-doc-awards__node-spark--3 { top: 50%;     right: -4px; animation-delay: 2.6s; width: 2px; height: 2px; }
@keyframes zc-doc-awards-spark {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* Network-wave ripples on hover — 2 expanding rings from the seal */
.zc-doc-awards__node-seal::before,
.zc-doc-awards__node-seal::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--zc-amber);
  opacity: 0;
  pointer-events: none;
}
.zc-doc-awards__node:hover .zc-doc-awards__node-seal {
  transform: scale(1.10) translateY(-3px);
  box-shadow:
    0 0 0 1px var(--zc-amber-dk),
    0 1px 0 rgba(255, 255, 255, 0.30) inset,
    0 18px 36px var(--zc-amber-a45);
}
.zc-doc-awards__node:hover .zc-doc-awards__node-seal i {
  transform: rotate(-12deg) scale(1.10);
}
.zc-doc-awards__node:hover .zc-doc-awards__node-orbit { animation-duration: 6s; }
.zc-doc-awards__node:hover .zc-doc-awards__node-seal::before { animation: zc-doc-awards-ping 1.4s ease-out infinite; }
.zc-doc-awards__node:hover .zc-doc-awards__node-seal::after  { animation: zc-doc-awards-ping 1.4s ease-out infinite -0.7s; }
@keyframes zc-doc-awards-ping {
  0%   { transform: scale(1);   opacity: 0.7; border-width: 1.5px; }
  100% { transform: scale(2.8); opacity: 0;   border-width: 0.5px; }
}

/* Stagger continuous animations across the 4 nodes so they don't pulse in unison */
.zc-doc-awards__node:nth-child(2) .zc-doc-awards__node-glow  { animation-delay: -0.9s; }
.zc-doc-awards__node:nth-child(3) .zc-doc-awards__node-glow  { animation-delay: -1.8s; }
.zc-doc-awards__node:nth-child(4) .zc-doc-awards__node-glow  { animation-delay: -2.7s; }
.zc-doc-awards__node:nth-child(2) .zc-doc-awards__node-orbit { animation-delay: -4s;   }
.zc-doc-awards__node:nth-child(3) .zc-doc-awards__node-orbit { animation-delay: -8s;   }
.zc-doc-awards__node:nth-child(4) .zc-doc-awards__node-orbit { animation-delay: -12s;  }

.zc-doc-awards__node-info { display: flex; flex-direction: column; gap: 3px; padding: 0 6px; }
.zc-doc-awards__node-info b {
  font-family: var(--zc-f-display);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 1.3;
  color: var(--zc-charcoal);
}
.zc-doc-awards__node-info small {
  font-family: var(--zc-f-accent);
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--zc-warm-mid);
  line-height: 1.35;
}


/* ==========================================================================
   §9   OTHER SPECIALISTS — cross-link mini-card grid
   ========================================================================== */
.zc-doc-others {
  position: relative;
  padding: clamp(34px, 4vw, 56px) 0;
  background: var(--zc-pearl);
}
.zc-doc-others__inner {
  width: 100%;
  padding-left: var(--zc-pad-x);
  padding-right: var(--zc-pad-x);
}
@media (max-width: 991px) { .zc-doc-others__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

.zc-doc-others__head { margin: 0 0 clamp(24px, 2.6vw, 36px); max-width: 720px; }
.zc-doc-others__overline {
  font-family: var(--zc-f-heading);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--zc-warm-mid);
  margin-bottom: 12px;
  display: block;
}
.zc-doc-others__title {
  font-family: var(--zc-f-display);
  font-size: clamp(24px, 1.8vw + 10px, 36px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.8px;
  color: var(--zc-charcoal);
  margin: 0;
}
.zc-doc-others__title-accent { color: var(--zc-amber-dk); font-weight: 500; }

.zc-doc-others__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.2vw, 18px);
}
@media (max-width: 1199px) { .zc-doc-others__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .zc-doc-others__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .zc-doc-others__grid { grid-template-columns: 1fr; } }

.zc-doc-others__card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--zc-white);
  border: 1px solid var(--zc-linen);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.45s var(--zc-ease-spring), box-shadow 0.45s var(--zc-ease), border-color 0.45s var(--zc-ease);
}
.zc-doc-others__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transform: scaleX(0.3); transform-origin: left;
  transition: opacity 0.4s var(--zc-ease), transform 0.5s var(--zc-ease-spring);
  z-index: 4;
}
.zc-doc-others__card--amber::before { background: var(--zc-amber); }
.zc-doc-others__card--navy::before  { background: var(--zc-navy); }
.zc-doc-others__card:hover {
  transform: translateY(-4px);
  border-color: var(--zc-amber-a35);
  box-shadow: 0 18px 36px rgba(18, 12, 4, 0.10);
}
.zc-doc-others__card:hover::before { opacity: 1; transform: scaleX(1); }

.zc-doc-others__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zc-charcoal), var(--zc-deep));
}
.zc-doc-others__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 6s var(--zc-ease-out);
}
.zc-doc-others__card:hover .zc-doc-others__photo img { transform: scale(1.06); }

.zc-doc-others__body {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.zc-doc-others__specialty {
  font-family: var(--zc-f-heading);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--zc-warm-mid);
}
.zc-doc-others__card--amber .zc-doc-others__specialty { color: var(--zc-amber-dk); }
.zc-doc-others__card--navy  .zc-doc-others__specialty { color: var(--zc-navy); }

.zc-doc-others__name {
  font-family: var(--zc-f-display);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--zc-charcoal);
  margin: 4px 0 8px 0;
}
.zc-doc-others__view {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--zc-f-heading);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--zc-amber-dk);
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid var(--zc-linen);
}
.zc-doc-others__view i { font-size: 11px; transition: transform 0.3s var(--zc-ease-spring); }
.zc-doc-others__card:hover .zc-doc-others__view i { transform: translateX(3px) translateY(-3px); }


/* ==========================================================================
   MOBILE OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
  .zc-doc-hero__name        { font-size: clamp(28px, 9vw, 42px); letter-spacing: -1.4px; }
  .zc-doc-hero__btn         { padding: 11px 18px; font-size: 10.5px; }
  .zc-doc-hero__topline-stars { display: none; }
  .zc-doc-exp__num          { font-size: 36px; }

  /* Keep all 3 counters in a single row on mobile, stacked vertically inside
     each cell (icon · number · label) so they fit a narrow column. */
  .zc-doc-hero__metrics {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 0 !important;
    padding: 12px 8px !important;
    border-radius: 10px;
  }
  .zc-doc-hero__metric {
    grid-template-columns: 1fr !important;     /* drop icon-left layout */
    justify-items: center;
    text-align: center;
    column-gap: 0; row-gap: 2px;
    padding: 4px 6px;
    min-width: 0;
  }
  .zc-doc-hero__metric-ic {
    grid-row: auto !important;
    width: 26px; height: 26px;
    font-size: 11px;
    border-radius: 7px;
    margin-bottom: 4px;
  }
  .zc-doc-hero__metric-num { font-size: 18px; letter-spacing: -0.6px; line-height: 1; }
  .zc-doc-hero__metric-num sup { font-size: 0.5em; }
  .zc-doc-hero__metric-lbl { font-size: 8px; letter-spacing: 0.8px; line-height: 1.2; }
  /* Re-show the vertical divider between cells, scaled to the shorter cell */
  .zc-doc-hero__metric:not(:last-child)::after { display: block !important; top: 14px; bottom: 14px; right: 0; }
}
/* ==========================================================================
   ACTIONS — mobile two-row layout (in-hero, not floating)
   --------------------------------------------------------------------------
   Row 1: full-width "Book a Consultation"
   Row 2: WhatsApp + Call side-by-side, 50/50
   ========================================================================== */
@media (max-width: 768px) {
  .zc-doc-hero__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .zc-doc-hero__btn--primary {
    grid-column: 1 / -1;            /* full width on row 1 */
    justify-content: center;
    padding: 12px 16px;
    font-size: 11px;
  }
  .zc-doc-hero__btn--ghost {
    justify-content: center;
    padding: 11px 14px;
    font-size: 10.5px;
  }
}


/* ==========================================================================
   MOBILE H-SCROLL & 2x2 OPTIMIZATIONS  (doctor profile page)
   --------------------------------------------------------------------------
   Same pattern as meet-our-team.css §11/§13:
     · highlights chips         single h-scroll row
     · principles grid          2x2
     · expertise cards          h-scroll, 1.4 visible
     · memberships badges       2x2 (was stacking 1-col under 480px)
     · other specialists grid   h-scroll, 1.6 visible
   First card aligned to section gutter, right edge bleeds.
   ========================================================================== */
@media (max-width: 768px) {

  /* Shared rail helpers */
  .zc-doc-hero__highlights,
  .zc-doc-exp__grid,
  .zc-doc-others__grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .zc-doc-hero__highlights::-webkit-scrollbar,
  .zc-doc-exp__grid::-webkit-scrollbar,
  .zc-doc-others__grid::-webkit-scrollbar { display: none; }

  /* CRITICAL: grid-track items default to min-width: auto and let nowrap rails
     blow out the column past viewport, so overflow-x: auto never fires.
     Force shrink — same trap as meet-our-team hero. */
  .zc-doc-hero__layout,
  .zc-doc-hero__identity { min-width: 0; }

  /* Hero highlight chips → single h-scroll row, no wrap */
  .zc-doc-hero__highlights {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    padding: 2px 0 4px;
  }
  .zc-doc-hero__highlight {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 9.5px;
    padding: 6px 10px;
  }

  /* Principles → 2x2 grid (was 1-col below 600px) */
  .zc-doc-about__principles-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  /* Expertise → h-scroll, ~1.4 cards visible, first aligned to gutter */
  .zc-doc-exp__grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    grid-template-columns: none !important;
    scroll-snap-type: x proximity;
    scroll-padding-left: var(--zc-pad-x-mb);
    -webkit-overflow-scrolling: touch;
    gap: 10px !important;
    margin-left: 0;
    margin-right: calc(-1 * var(--zc-pad-x-mb));
    padding: 4px var(--zc-pad-x-mb) 12px 0;
  }
  .zc-doc-exp__card {
    flex: 0 0 calc((100% - 10px) / 1.4);   /* ~1.4 cards visible */
    scroll-snap-align: start;
    min-width: 0;
    border-radius: 8px;
  }

  /* Memberships → keep 2x2 even on phones */
  .zc-doc-cred__badges {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  /* ── §2 About / At a Glance / Pull quote, compact mobile ───────────── */
  /* Header tighten */
  .zc-doc-about__head { margin-bottom: 16px; }
  .zc-doc-about__title { font-size: clamp(22px, 6.6vw, 30px); letter-spacing: -0.6px; }
  .zc-doc-about__head-meta { font-size: 9.5px; letter-spacing: 1.2px; }

  /* Lead + dropcap, smaller dropcap so it doesn't dominate the column */
  .zc-doc-about__lead {
    font-size: 14.5px;
    line-height: 1.55;
    padding-bottom: 16px;
  }
  .zc-doc-about__dropcap {
    font-size: 42px;
    margin: 2px 8px 0 0;
    letter-spacing: -1.5px;
  }

  /* Sub-sections: tighter padding and smaller fonts */
  .zc-doc-about__story { gap: 18px; }
  .zc-doc-about__sub      { padding-left: 0; }
  .zc-doc-about__sub-num  { font-size: 9.5px; letter-spacing: 1.2px; margin-bottom: 4px; }
  .zc-doc-about__sub-h    { font-size: 16px; padding-left: 16px; margin-bottom: 6px; }
  .zc-doc-about__sub-h::before { width: 10px; }
  .zc-doc-about__sub-body { font-size: 13px; line-height: 1.55; padding-left: 16px; }

  /* Signature line */
  .zc-doc-about__sig       { gap: 12px; padding-top: 14px; }
  .zc-doc-about__sig-name  { font-size: 13px; }
  .zc-doc-about__sig-role  { font-size: 10px; line-height: 1.3; }

  /* At-a-Glance panel: compact rows, smaller padding */
  .zc-doc-about__glance         { padding: 14px 14px 12px; border-radius: 8px; }
  .zc-doc-about__glance::before { left: 14px; width: 24px; }
  .zc-doc-about__glance-mark    { width: 26px; height: 26px; font-size: 11px; margin-bottom: 8px; }
  .zc-doc-about__glance-overline{ font-size: 9px; letter-spacing: 1.4px; margin-bottom: 6px; }
  .zc-doc-about__glance-list li { padding: 7px 0; gap: 10px; }
  .zc-doc-about__glance-lbl     { font-size: 8.5px; letter-spacing: 1px; }
  .zc-doc-about__glance-val     { font-size: 12px; }

  /* Pull quote sidebar, compact */
  .zc-doc-about__pull           { padding: 18px 16px; border-radius: 8px; }
  .zc-doc-about__pull::before,
  .zc-doc-about__pull::after    { width: 16px; height: 16px; }
  .zc-doc-about__pull-mark      { font-size: 36px; }
  .zc-doc-about__pull-quote     { font-size: 13.5px; line-height: 1.45; }
  .zc-doc-about__pull-cite      { font-size: 9.5px; letter-spacing: 1.2px; gap: 10px; }
  .zc-doc-about__pull-rule      { width: 20px; }

  /* Principles cards, tighter on mobile inside the 2x2 grid */
  .zc-doc-about__principle      { padding: 14px 12px; border-radius: 8px; }
  .zc-doc-about__principle-num  { font-size: 22px; margin-bottom: 6px; }
  .zc-doc-about__principle-title{ font-size: 13px; line-height: 1.2; margin-bottom: 4px; }
  .zc-doc-about__principle-desc { font-size: 10.5px; line-height: 1.45; }

  /* Sub-row under "Schedule consultation": Call + WhatsApp pills, 50/50 */
  .zc-doc-sched__sub-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 8px;
  }
  .zc-doc-sched__sub-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 10.5px;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.3s var(--zc-ease), border-color 0.3s var(--zc-ease);
  }
  .zc-doc-sched__sub-link:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--zc-amber-a45);
  }
  .zc-doc-sched__sub-link i { font-size: 14px; }

  /* ── §7 Voices (testimonials) — h-scroll cards on mobile ──────────── */
  .zc-doc-test__voices {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-left: var(--zc-pad-x-mb);
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    margin-left: 0;
    margin-right: calc(-1 * var(--zc-pad-x-mb));
    padding: 4px var(--zc-pad-x-mb) 14px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .zc-doc-test__voices::-webkit-scrollbar { display: none; }
  .zc-doc-test__voice {
    flex: 0 0 calc((100% - 10px) / 1.4);   /* ~1.4 cards visible */
    scroll-snap-align: start;
    padding: 16px 14px 14px !important;
    border: 1px solid var(--zc-linen) !important;
    border-radius: 10px;
    background: var(--zc-white);
    min-width: 0;
  }
  .zc-doc-test__voice-num   { font-size: 9px; letter-spacing: 1.2px; margin-bottom: 6px; }
  .zc-doc-test__voice-quote { font-size: 12.5px; line-height: 1.45; margin-bottom: 10px; -webkit-line-clamp: 5; }
  .zc-doc-test__voice-cite  { font-size: 9px; letter-spacing: 1.2px; gap: 8px; }
  .zc-doc-test__voice-rule  { width: 14px; }

  /* Featured testimonial above the voices, compact on mobile */
  .zc-doc-test__featured       { padding: 22px 18px !important; border-radius: 10px; }
  .zc-doc-test__featured-mark  { font-size: 56px !important; top: 8px !important; left: 14px !important; }
  .zc-doc-test__featured-num   { font-size: 9.5px; letter-spacing: 1.2px; }
  .zc-doc-test__featured-quote { font-size: 14.5px !important; line-height: 1.45 !important; letter-spacing: -0.2px !important; }
  .zc-doc-test__featured-cite  { gap: 10px; font-size: 9px; }
  .zc-doc-test__featured-rule  { width: 18px; }
  .zc-doc-test__head { margin-bottom: 18px; }
  .zc-doc-test__title { font-size: clamp(22px, 6.6vw, 30px); letter-spacing: -0.6px; }

  /* ── §8 Recognition — horizontal timeline scroll on mobile ───────── */
  .zc-doc-awards__head { margin-bottom: 16px; }
  .zc-doc-awards__title { font-size: clamp(22px, 6.6vw, 30px); letter-spacing: -0.6px; }
  .zc-doc-awards__rail {
    padding: 18px 0 8px;
    margin-left: 0;
    margin-right: calc(-1 * var(--zc-pad-x-mb));
  }
  .zc-doc-awards__rail-line {
    display: block !important;             /* re-show the timeline (was hidden ≤600) */
    top: 60px;                              /* match smaller seal vertical offset */
    left: 0; right: var(--zc-pad-x-mb);
  }
  .zc-doc-awards__rail-list {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    grid-template-columns: none !important;
    scroll-snap-type: x proximity;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    gap: 14px !important;
    padding: 0 var(--zc-pad-x-mb) 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .zc-doc-awards__rail-list::-webkit-scrollbar { display: none; }
  .zc-doc-awards__node {
    flex: 0 0 calc((100% - 14px) / 2.4);   /* ~2.4 nodes visible */
    scroll-snap-align: start;
    min-width: 0;
  }
  .zc-doc-awards__node-year { font-size: 9.5px; margin-bottom: 8px; padding: 0 8px; }
  .zc-doc-awards__node-seal { width: 56px !important; height: 56px !important; margin-bottom: 12px; }
  .zc-doc-awards__node-seal i { font-size: 18px !important; }
  .zc-doc-awards__node-info b     { font-size: 11.5px; line-height: 1.25; }
  .zc-doc-awards__node-info small { font-size: 9.5px; line-height: 1.3; }

  /* ── §6 Schedule band, week stretches edge-to-edge, today pill full-width ── */
  .zc-doc-sched__week {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }
  .zc-doc-sched__pip {
    flex: 1 1 0;       /* every pip claims an equal slice → ends at start + end */
    min-width: 0;
    padding: 8px 4px 7px;
  }
  .zc-doc-sched__today {
    display: flex !important;
    align-self: stretch !important;     /* fill the column instead of inline-flex shrink */
    width: 100%;
    box-sizing: border-box;
    justify-content: center;            /* "Today · Wednesday | Slots · 3-7 PM" centered */
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 9px 14px;
    border-radius: 999px;
  }
  .zc-doc-sched__today-pip { margin-right: 2px; }
  .zc-doc-sched__today-when,
  .zc-doc-sched__today-slot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .zc-doc-sched__today-sep {
    opacity: 0.55;
    font-weight: 400;
  }
  /* Vertical hairline divider between "when" and "slot" groups */
  .zc-doc-sched__today-divider {
    width: 1px; height: 12px;
    background: rgba(255, 255, 255, 0.30);
    flex-shrink: 0;
  }

  /* ── §5 Procedures, compact mobile ─────────────────────────────────── */
  .zc-doc-proc__head { margin-bottom: 16px; }
  .zc-doc-proc__title { font-size: clamp(22px, 6.6vw, 30px); letter-spacing: -0.6px; }
  .zc-doc-proc__head-meta { font-size: 10px; letter-spacing: 0.4px; }
  .zc-doc-proc__head-meta b { font-size: 12px; }

  /* Tight 1-col list with smaller rows so it doesn't run long */
  .zc-doc-proc__manifesto {
    grid-template-columns: 1fr !important;
    row-gap: 0;
  }
  .zc-doc-proc__line {
    grid-template-columns: 26px 12px 1fr;
    gap: 8px;
    padding: 9px 0;
  }
  .zc-doc-proc__line:hover { padding-left: 0; }   /* drop the desktop hover shift */
  .zc-doc-proc__line-num  { font-size: 9.5px; letter-spacing: 1.2px; opacity: 0.7; }
  .zc-doc-proc__line-rule { width: 10px; }
  .zc-doc-proc__line-name { font-size: 13px; line-height: 1.35; letter-spacing: -0.05px; }

  /* Other specialists → h-scroll, ~1.6 cards visible */
  .zc-doc-others__grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    grid-template-columns: none !important;
    scroll-snap-type: x proximity;
    scroll-padding-left: var(--zc-pad-x-mb);
    -webkit-overflow-scrolling: touch;
    gap: 10px !important;
    margin-left: 0;
    margin-right: calc(-1 * var(--zc-pad-x-mb));
    padding: 4px var(--zc-pad-x-mb) 12px 0;
  }
  .zc-doc-others__card {
    flex: 0 0 calc((100% - 10px) / 1.6);   /* ~1.6 cards visible */
    scroll-snap-align: start;
    min-width: 0;
    border-radius: 8px;
  }
}


/* ==========================================================================
   LAZY-LOAD IMAGE SIZE OVERRIDES  (doctor page)
   --------------------------------------------------------------------------
   Global .lazy rules cap images at max-width: 40% / height: auto, breaking
   card-fill images. The "Other specialists" card on this page uses .lazy.
   ========================================================================== */
.zc-doc-others__photo .lazy {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block !important;
}
