/* CDFC — about.css */

/* WP editor content — was completely unstyled before (bare <p> tags),
   which combined with the missing section background made it unreadable. */
.article-body{ max-width:820px; margin:0 auto 56px; font-size:1rem; line-height:1.9; color:var(--ink-soft); }
.article-body p{ margin-bottom:20px; }
.article-body p:first-child{
  font-size:1.1rem; font-weight:600; color:var(--ink); line-height:1.7;
  padding-left:18px; border-left:3px solid var(--accent); margin-bottom:28px;
}
.article-body h2,.article-body h3{ color:var(--ink); margin:28px 0 12px; }
.article-body ul,.article-body ol{ padding-left:22px; margin-bottom:20px; }
.article-body li{ margin-bottom:8px; }
.article-body strong{ color:var(--accent-deep); }
.article-body a{ color:var(--accent); border-bottom:1px solid rgba(109,46,123,.25); }

/* Section rhythm — every content block below the article gets consistent
   bottom spacing now that it's no longer set ad hoc via inline styles. */
.leadership-grid,.about-video-grid,.accred-row,.about-profile-links{ margin-bottom:64px; }

/* Intro section, directly below the hero banner */
.about-intro{ max-width:760px; margin:0 auto; text-align:center; }
.about-intro h2{ font-size:clamp(1.6rem,3vw,2.1rem); margin-bottom:18px; }
.about-intro p{ font-size:1.02rem; color:var(--ink-soft); line-height:1.85; margin-bottom:30px; }
.about-intro-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.about-intro-actions .btn{ display:inline-flex; align-items:center; gap:8px; }
.about-intro-actions .btn svg{ width:16px; height:16px; }
@media (max-width:640px){ .about-intro-actions{ flex-direction:column; } .about-intro-actions .btn{ width:100%; justify-content:center; } }

/* Featured videos */
.about-video-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.about-video-embed{ position:relative; width:100%; padding-top:56.25%; border-radius:16px; overflow:hidden; background:var(--shuttle-deep); box-shadow:0 8px 24px -10px rgba(109,46,123,.3); }
.about-video-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.about-video-caption{ margin-top:10px; font-size:.88rem; font-weight:600; color:var(--ink); }

/* Profile links */
.about-profile-links{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.about-profile-link{ display:flex; align-items:center; gap:12px; padding:16px 18px; background:#fff; border:1px solid var(--line); border-radius:14px; transition:transform .3s var(--ease),box-shadow .3s,border-color .3s; }
.about-profile-link:hover{ transform:translateY(-3px); box-shadow:0 10px 24px -10px rgba(109,46,123,.25); border-color:rgba(109,46,123,.25); }
.about-profile-link-icon{ width:38px; height:38px; border-radius:10px; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; flex:none; }
.about-profile-link-icon svg{ width:18px; height:18px; }
.about-profile-link-label{ font-size:.9rem; font-weight:600; color:var(--ink); }

/* CTA band */
.about-cta-band{ background:linear-gradient(120deg,var(--accent-deep),var(--accent)); border-radius:22px; padding:48px 44px; display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; margin-bottom:20px; }
.about-cta-band h3{ color:#fff; font-size:1.6rem; max-width:460px; }
.about-cta-outline{ border:1.5px solid rgba(255,255,255,.5); color:#fff; }

.leadership-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.leader-card{background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;text-align:center;display:block;color:inherit;text-decoration:none;transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s var(--ease);}
.leader-card:hover{transform:translateY(-6px);box-shadow:0 14px 32px -12px rgba(109,46,123,.25);border-color:rgba(109,46,123,.25);}
.leader-card img{width:100%;height:200px;object-fit:cover;object-position:top;}
.leadership-grid.is-few{grid-template-columns:repeat(auto-fit,minmax(240px,280px));justify-content:center;}
.leadership-grid.is-few .leader-card{max-width:280px;}
.lc-info{padding:18px;}
.lc-info .role{font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--accent);margin-bottom:5px;}
.lc-info h4{font-size:.98rem;margin-bottom:5px;}
.lc-info p{font-size:.8rem;color:var(--ink-soft);}
.accred-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.accred-badge{display:flex;align-items:center;gap:12px;padding:16px 18px;background:#fff;border:1px solid var(--line);border-radius:13px;font-size:.88rem;font-weight:700;transition:border-color .3s,transform .3s;}
.accred-badge:hover{border-color:var(--accent);transform:translateX(4px);}
.accred-badge svg{width:18px;height:18px;color:var(--accent);flex:none;}
@media(max-width:960px){.leadership-grid{grid-template-columns:1fr 1fr;}.accred-row{grid-template-columns:1fr 1fr;}.about-video-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:640px){.leadership-grid,.accred-row,.about-video-grid,.about-profile-links{grid-template-columns:1fr;}}

/* ─── MOBILE RESPONSIVE ─── */

@media (max-width: 960px) {
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .accred-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .accred-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card img { height: 240px; }
}

/* Hero CTA banner */
.about-hero-cta{
  margin-top:22px; display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  padding:16px 22px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  border-radius:16px; backdrop-filter:blur(8px);
}
.about-hero-cta span{ color:rgba(255,255,255,.92); font-weight:600; font-size:.94rem; }
.about-hero-cta .btn{ display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }
.about-hero-cta .btn svg{ width:15px; height:15px; }

/* Brand Story & Mission */
.about-story{ max-width:820px; margin:0 auto 64px; text-align:left; }
.about-story h2{ font-size:1.9rem; margin-bottom:16px; letter-spacing:-.01em; }
.about-story > p{ font-size:1.02rem; color:var(--ink-soft); line-height:1.9; margin-bottom:32px; max-width:700px; }
.about-story-bh{
  display:flex; align-items:center; gap:10px; font-size:.78rem; font-weight:800;
  text-transform:uppercase; letter-spacing:.08em; color:var(--accent); margin-bottom:16px;
}
.about-story-bh::before{ content:''; width:22px; height:2px; background:var(--accent); border-radius:2px; }
.about-story-bullets{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.about-story-bullets li{
  display:flex; align-items:flex-start; gap:14px;
  background:#fff; border:1px solid var(--line); border-radius:14px; padding:16px 18px;
  font-size:.93rem; color:var(--ink); line-height:1.65;
  transition:border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about-story-bullets li:hover{ border-color:rgba(109,46,123,.28); transform:translateX(4px); box-shadow:0 8px 20px -12px rgba(109,46,123,.25); }
.about-story-bullet-ic{
  flex:none; width:28px; height:28px; border-radius:8px; background:var(--accent-soft); color:var(--accent);
  display:flex; align-items:center; justify-content:center;
}
.about-story-bullet-ic svg{ width:15px; height:15px; }
.about-story-bullets li strong{ color:var(--accent-deep); font-weight:700; }

/* Real Patient Outcomes — card grid */
.about-outcomes-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.about-outcome-card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px 28px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.about-outcome-card:hover{ transform:translateY(-5px); box-shadow:0 14px 30px -14px rgba(109,46,123,.28); border-color:rgba(109,46,123,.25); }
.about-outcome-card svg{ width:26px; height:26px; color:var(--accent); margin-bottom:14px; }
.about-outcome-card h4{ font-size:1.02rem; margin-bottom:10px; }
.about-outcome-card p{ font-size:.88rem; color:var(--ink-soft); line-height:1.75; margin:0; }
@media (max-width:900px){ .about-outcomes-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .about-outcomes-grid{ grid-template-columns:1fr; } }

/* Integrated Divisions & Specialty — card grid */
.about-div-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.about-div-card{
  display:block; color:inherit; text-decoration:none;
  position:relative; background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:26px 28px; overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.about-div-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent-light));
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.about-div-card:hover{ transform:translateY(-5px); box-shadow:0 14px 30px -14px rgba(109,46,123,.28); border-color:rgba(109,46,123,.25); }
.about-div-card:hover::before{ transform:scaleX(1); }
.about-div-card h4{ font-size:1.05rem; margin-bottom:10px; }
.about-div-card p{ font-size:.9rem; color:var(--ink-soft); line-height:1.75; margin:0; }
@media (max-width:640px){ .about-div-grid{ grid-template-columns:1fr; } }

/* Institutional Timeline — elevated cards with a connecting progress line */
.about-timeline{ position:relative; margin-bottom:64px; padding-left:48px; }
.about-tl-track{ position:absolute; left:15px; top:6px; bottom:6px; width:3px; background:var(--line); border-radius:3px; overflow:hidden; }
.about-tl-fill{ position:absolute; left:0; top:0; width:100%; height:0%; background:linear-gradient(180deg,var(--accent),var(--accent-deep)); border-radius:3px; transition:height .25s linear; }
.about-tl-item{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:22px 26px; margin-bottom:20px;
  box-shadow:0 4px 18px -12px rgba(109,46,123,.18);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.about-tl-item:last-child{ margin-bottom:0; }
.about-tl-item:hover{ transform:translateX(8px); box-shadow:0 16px 34px -14px rgba(109,46,123,.32); border-color:rgba(109,46,123,.3); }
/* Notch connecting the card back to the dot on the track */
.about-tl-item::before{
  content:''; position:absolute; left:-9px; top:28px; width:16px; height:16px;
  background:#fff; border-left:1px solid var(--line); border-bottom:1px solid var(--line);
  border-radius:0 0 0 4px; transform:rotate(45deg);
  transition:border-color .35s var(--ease);
}
.about-tl-item:hover::before{ border-color:rgba(109,46,123,.3); }
.about-tl-dot{
  position:absolute; left:-48px; top:20px; width:32px; height:32px; border-radius:50%;
  background:#fff; border:3px solid var(--line); display:flex; align-items:center; justify-content:center;
  font-size:.78rem; font-weight:800; color:var(--ink-soft); z-index:2;
  transition:background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease), transform .3s var(--ease);
}
.about-tl-item.in .about-tl-dot{ background:var(--accent); border-color:var(--accent); color:#fff; box-shadow:0 0 0 5px var(--accent-soft); }
.about-tl-item:hover .about-tl-dot{ transform:scale(1.12); }
.about-tl-milestone{
  display:inline-block; padding:4px 13px; border-radius:50px; margin-bottom:12px;
  background:var(--accent-soft); color:var(--accent-deep);
  font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.05em;
}
.about-tl-body h4{ font-size:1.08rem; margin-bottom:8px; }
.about-tl-body p{ font-size:.9rem; color:var(--ink-soft); line-height:1.75; max-width:600px; }

.about-faq-list{ margin-bottom:64px; }

@media (max-width: 640px) {
  .about-hero-cta{ flex-direction:column; align-items:flex-start; }
  .about-timeline{ padding-left:34px; }
  .about-tl-track{ left:9px; }
  .about-tl-dot{ left:-34px; width:24px; height:24px; font-size:.68rem; }
  .about-tl-item{ padding:18px 20px; }
  .about-tl-item::before{ left:-7px; top:22px; width:12px; height:12px; }
  .about-tl-item:hover{ transform:none; }
}
