/* BridgeWell — About Us page
   Mission, Values, Pillars, Team, Board.
   Re-uses .problem-layout / .finalcta from the rest of the site.
*/

/* ===== Hero — editorial split: manifesto + brand-swoop photo mask ===== */
.ab-hero{
  position:relative;overflow:hidden;
  background:var(--forest);
  color:var(--on-dark);
  padding:var(--hero-pad-top) 0 var(--section-pad);
  isolation:isolate;
}
.ab-hero-tex{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  background:url('../assets/texture-darkgreen.png') center/600px 600px;
}

/* Oversized background swoop, anchored bottom-right, scaled beyond the section */
.ab-hero-bgswoop{
  position:absolute;
  right:-22%;bottom:-30%;
  width:130%;height:170%;
  z-index:1;pointer-events:none;
  opacity:.22;
  stroke-dasharray:6200;stroke-dashoffset:6200;
  animation:abHeroBgSwoop 2.6s var(--ease-out) .15s forwards;
}
@keyframes abHeroBgSwoop{ to{stroke-dashoffset:0;} }

/* Two short accent curves emerging from the photo edges */
.ab-hero-trail{
  position:absolute;inset:0;
  width:100%;height:100%;
  z-index:1;pointer-events:none;
  opacity:.7;
}
.ab-hero-trail-path{
  stroke-dasharray:1200;stroke-dashoffset:1200;
  animation:abHeroTrail 1.6s var(--ease-out) .6s forwards;
}
.ab-hero-trail-dot{
  opacity:0;
  animation:abHeroTrailDot .4s var(--ease-out) 2.1s forwards;
}
@keyframes abHeroTrail{ to{stroke-dashoffset:0;} }
@keyframes abHeroTrailDot{ to{opacity:1;} }

/* Dotted stitch line, editorial accent in the lower-left, extending from off-screen */
.ab-hero-stitch{
  position:absolute;
  left:-20px;bottom:96px;
  width:180px;height:8px;
  z-index:1;pointer-events:none;
  opacity:0;
  animation:abHeroStitch .6s var(--ease-out) 1.6s forwards;
}
@keyframes abHeroStitch{ to{opacity:1;} }

.ab-hero-wrap{
  position:relative;z-index:2;
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.08fr);
  gap:72px;align-items:stretch;
  min-height:clamp(640px,82vh,820px);
}

/* ---------- Left column: editorial copy ---------- */
.ab-hero-copy{
  display:flex;flex-direction:column;gap:30px;
  max-width:620px;
  align-self:center;
  padding:24px 0;
}

/* Mono eyebrow strip — replaces the lone capsule pill */
.ab-hero-eyebrow{
  display:inline-flex;align-self:flex-start;align-items:center;gap:12px;
  padding:9px 18px 9px 14px;
  border-radius:var(--radius-pill);
  background:rgba(177,214,117,.08);
  box-shadow:inset 0 0 0 1px rgba(177,214,117,.32);
  color:var(--lime);
  font-family:'JetBrains Mono','SF Mono',ui-monospace,monospace;
  font-size:11.5px;letter-spacing:.16em;text-transform:uppercase;font-weight:600;line-height:1;
}
.ab-hero-eyebrow-dot{
  width:7px;height:7px;border-radius:50%;background:var(--lime);
  box-shadow:0 0 0 3px rgba(177,214,117,.22);flex:0 0 auto;
}
.ab-hero-eyebrow-sep{opacity:.45;font-weight:400;}
.ab-hero-eyebrow-mute{color:var(--on-dark-mute);font-weight:500;}

/* Manifesto headline — light DM Sans, signature BridgeWell big-light move */
.ab-hero-title{
  margin:0;color:var(--on-dark);
  font-weight:200;
  font-size:clamp(38px,4.2vw,58px);
  line-height:1;letter-spacing:-.038em;
  display:flex;flex-direction:column;gap:.08em;
}
.ab-hero-line{display:block;white-space:nowrap;}

/* Highlighted phrase — solid lime word, no underline */
.ab-hero-mark{
  font-style:normal;font-weight:300;color:var(--lime);
}

.ab-hero-lede{
  margin:0;max-width:54ch;
  font-size:clamp(16.5px,1.25vw,19px);line-height:1.6;
  color:var(--on-dark-mute);font-weight:400;
}

.ab-hero-actions{
  display:flex;flex-wrap:wrap;gap:12px;align-items:center;
  margin-top:2px;
}

/* Metadata strip — three small mono cells with a hairline divider above */
.ab-hero-meta{
  margin:8px 0 0;padding:24px 0 0;
  display:grid;grid-template-columns:repeat(3,minmax(0,auto));gap:32px;
  border-top:1px solid rgba(177,214,117,.20);
}
.ab-hero-meta-cell{display:flex;flex-direction:column;gap:6px;min-width:0;}
.ab-hero-meta-cell dt{
  font-family:'JetBrains Mono','SF Mono',ui-monospace,monospace;
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  color:var(--lime);opacity:.85;line-height:1;
}
.ab-hero-meta-cell dd{
  margin:0;
  font-size:14px;line-height:1.35;color:var(--on-dark);font-weight:500;
  letter-spacing:-.005em;
}

/* ---------- Right column: tall portrait photo with swoop frame ---------- */
.ab-hero-feature{
  position:relative;margin:0;
  width:100%;height:100%;
  min-height:clamp(560px,72vh,760px);
  justify-self:end;
  max-width:600px;
  display:flex;align-items:stretch;
}

/* Photo container — brand swoop asymmetric corners: big TL + big BR, small TR + small BL */
.ab-hero-photo{
  position:relative;
  flex:1;
  overflow:hidden;
  background:var(--forest-deep);
  box-shadow:0 32px 64px rgba(0,0,0,.42),0 2px 8px rgba(0,0,0,.22);
  border-radius:46% 14px 46% 14px / 32% 14px 32% 14px;
  transition:transform .6s var(--ease-out);
  opacity:0;
  animation:abHeroPhotoIn .9s var(--ease-out) .25s forwards;
  isolation:isolate;
}

/* Echo outline — offset stroke tracing the same swoop shape, brand "doubled curve" rhythm */
.ab-hero-feature::before{
  content:"";
  position:absolute;
  inset:-18px;
  border:1.5px solid var(--lime);
  border-radius:48% 16px 48% 16px / 33% 16px 33% 16px;
  opacity:0;
  pointer-events:none;
  z-index:0;
  animation:abHeroEcho .8s var(--ease-out) .7s forwards;
}
@keyframes abHeroEcho{ to{opacity:.55;} }
@keyframes abHeroPhotoIn{ to{opacity:1;} }

.ab-hero-photo img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:left center;
  filter:saturate(.95) contrast(1.02);
}
.ab-hero-photo-veil{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(14,31,24,0) 55%, rgba(14,31,24,.55) 100%);
  pointer-events:none;
}

/* ---------- Responsive ---------- */
@media (max-width:1180px){
  .ab-hero-wrap{gap:56px;}
  .ab-hero-feature{max-width:520px;}
}
@media (max-width:980px){
  .ab-hero{padding:var(--hero-pad-top) 0 var(--section-pad);}
  .ab-hero-wrap{grid-template-columns:1fr;gap:56px;min-height:0;}
  .ab-hero-feature{
    justify-self:stretch;max-width:none;
    min-height:clamp(440px,60vh,560px);
  }
  .ab-hero-bgswoop{right:-40%;bottom:-12%;width:160%;height:120%;opacity:.22;}
}
@media (max-width:640px){
  .ab-hero{padding:var(--hero-pad-top) 0 var(--section-pad);}
  .ab-hero-wrap{gap:44px;}
  .ab-hero-title{font-size:clamp(34px,9vw,52px);letter-spacing:-.028em;}
  .ab-hero-line{white-space:normal;}
  .ab-hero-eyebrow{font-size:10.5px;padding:8px 14px 8px 12px;gap:10px;}
  .ab-hero-eyebrow-sep,.ab-hero-eyebrow-mute{display:none;}
  .ab-hero-meta{grid-template-columns:1fr;gap:18px;padding-top:20px;}
  .ab-hero-feature{min-height:clamp(380px,52vh,460px);}
  .ab-hero-photo{border-radius:36% 12px 36% 12px / 22% 12px 22% 12px;}
}

/* ===== Stats bar (below hero) ===== */
.ab-stats{
  position:relative;
  background:var(--forest);color:var(--on-dark);
  padding:48px 0;overflow:hidden;
}
.ab-stats .tex-layer{
  position:absolute;inset:0;
  background:url('../assets/texture-darkgreen.png') center/600px 600px;
  pointer-events:none;z-index:0;
}
.ab-stats .container{position:relative;z-index:1;}
.ab-stats-row{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(4,1fr);
  align-items:stretch;
}
.ab-stat{
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  padding:14px 28px;text-align:center;
  border-left:1px solid rgba(177,214,117,.16);
}
.ab-stat:first-child{border-left:0;padding-left:0;}
.ab-stat:last-child{padding-right:0;}
.ab-stat-num{
  font-weight:300;color:var(--lime);
  font-size:clamp(34px,3.2vw,46px);line-height:1;
  letter-spacing:-.024em;
  display:flex;align-items:baseline;justify-content:center;gap:2px;
}
.ab-stat-plus{
  font-size:.65em;color:var(--lime);font-weight:300;
}
.ab-stat-label{
  margin-top:10px;
  font-size:13.5px;line-height:1.35;
  color:var(--on-dark-mute);font-weight:500;
  letter-spacing:.005em;
}
.ab-stat-credit{justify-content:center;}
.ab-stat-credit-label{
  font-family:'JetBrains Mono','SF Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--on-dark-mute);font-weight:600;
}
.ab-stat-credit-name{
  margin-top:10px;
  font-size:18px;line-height:1.2;
  font-weight:500;color:var(--on-dark);
  letter-spacing:-.012em;
  text-wrap:balance;
}

@media (max-width:1100px){
  .ab-stats-row{grid-template-columns:repeat(2,1fr);row-gap:24px;}
  .ab-stat{padding:14px 22px;}
  .ab-stat:nth-child(odd){border-left:0;padding-left:0;}
}
@media (max-width:680px){
  .ab-stats{padding:36px 0;}
  .ab-stats-row{grid-template-columns:repeat(2,1fr);row-gap:22px;}
  .ab-stat{padding:10px 16px;}
  .ab-stat:nth-child(odd){border-left:0;padding-left:0;}
}

/* ===== Section headers ===== */
.ab-section-head{
  display:flex;flex-direction:column;gap:18px;
  max-width:840px;margin-bottom:56px;
}
.ab-section-head h2{margin:0;color:var(--forest);}
.ab-section-head .eyebrow{align-self:flex-start;}

/* ===== Core Values — 4 cards ===== */
.ab-values{padding:var(--section-pad) 0;position:relative;overflow:hidden;}
.ab-values::before{
  content:"";position:absolute;inset:0;
  background:url('../assets/texture-sun.png') center/700px 700px;
  opacity:.05;mix-blend-mode:multiply;pointer-events:none;
}
.ab-values .container{position:relative;z-index:1;}
.ab-values-grid{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
}
.ab-value{
  --tone: var(--lime-deep);
  --tone-soft: rgba(140,181,68,.18);
  position:relative;
  background:var(--surface);
  border-radius:28px;
  padding:40px 40px 36px;
  display:flex;flex-direction:column;gap:18px;
  border:1px solid var(--line-soft);
  box-shadow:0 2px 8px rgba(24,48,37,.05), 0 1px 2px rgba(24,48,37,.04);
  overflow:hidden;
  transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.ab-value:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(24,48,37,.12), 0 2px 6px rgba(24,48,37,.05);
}
/* Decorative curved ring in top-right (matches problem-quote / hero-mark accent language) */
.ab-value::after{
  content:"";position:absolute;
  top:-46px;right:-46px;
  width:160px;height:160px;
  border-radius:50%;
  border:1.5px solid var(--tone-soft);
  pointer-events:none;
}
.ab-value::before{
  content:"";position:absolute;
  top:-90px;right:-90px;
  width:240px;height:240px;
  border-radius:50%;
  border:1px solid var(--tone-soft);
  opacity:.55;
  pointer-events:none;
}
/* Per-card tonal accent (subtle — corner rings + numeral only) */
.ab-value:nth-child(2){--tone: var(--purple-deep); --tone-soft: rgba(123,79,177,.18);}
.ab-value:nth-child(3){--tone: var(--yellow-deep); --tone-soft: rgba(156,106,26,.22);}
.ab-value:nth-child(4){--tone: var(--blue-deep);   --tone-soft: rgba(58,110,148,.22);}

.ab-value-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  position:relative;z-index:1;
}
.ab-value-num{
  font-family:'DM Sans',sans-serif;
  font-weight:200;
  font-size:64px;line-height:.85;letter-spacing:-.045em;
  color:var(--tone);
}
.ab-value-tag{align-self:flex-start;}
.ab-value-title{
  margin:6px 0 0;font-weight:400;
  font-size:clamp(28px,2.4vw,34px);line-height:1.1;letter-spacing:-.022em;
  color:var(--forest);
  position:relative;z-index:1;
}
.ab-value-em{
  font-style:normal;font-weight:300;
  color:var(--tone);
}
.ab-value p{
  margin:0;font-size:15.5px;line-height:1.6;color:var(--ink-2);
  max-width:46ch;
  position:relative;z-index:1;
}

/* ===== Pillars — three-column editorial cards ===== */
.ab-pillars{background:var(--surface);padding:var(--section-pad) 0;}
.ab-pillars-list{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  counter-reset:pillar;
}
.ab-pillar{
  position:relative;
  display:flex;flex-direction:column;gap:18px;
  padding:28px 28px 30px;
  min-height:0;
  background:var(--surface-2);
  border-radius:var(--radius-card);
  border:1px solid var(--line-soft);
  overflow:hidden;
  isolation:isolate;
  transition:transform .35s var(--ease-out),box-shadow .35s var(--ease-out),background .35s var(--ease-out);
}
.ab-pillar::before{
  content:"";position:absolute;left:0;right:0;top:0;height:4px;
  background:var(--lime);
}
.ab-pillar:hover{
  transform:translateY(-3px);
  background:var(--surface);
  box-shadow:0 14px 36px rgba(24,48,37,.08),0 2px 6px rgba(24,48,37,.04);
}

.ab-pillar-tag{
  display:inline-flex;align-items:center;gap:10px;
  align-self:flex-start;
  font-family:'JetBrains Mono','SF Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  color:var(--ink-3);
  line-height:1;
}
.ab-pillar-tag-num{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:26px;height:26px;padding:0 8px;
  border-radius:var(--radius-pill);
  background:var(--lime);color:var(--forest);
  font-size:11px;letter-spacing:.06em;font-weight:700;
}
.ab-pillar-h{
  margin:0;font-weight:400;
  font-size:clamp(28px,2.6vw,38px);line-height:1.15;
  letter-spacing:-.02em;color:var(--forest);
  text-wrap:balance;
}
.ab-pillar-h em{
  font-style:normal;font-weight:500;color:var(--lime-deep);
}

/* ===== Team & Board ===== */
.ab-team{padding:var(--section-pad) 0;}

/* Tabs */
.ab-team-tabs{
  position:relative;
  display:inline-flex;align-items:center;gap:6px;
  background:var(--surface);border-radius:var(--radius-pill);
  padding:6px;margin:8px 0 40px;
  box-shadow:inset 0 0 0 1px var(--line-soft);
}
.ab-team-tab{
  position:relative;z-index:1;
  background:transparent;border:0;cursor:pointer;
  padding:11px 22px;border-radius:var(--radius-pill);
  font-family:inherit;font-size:14.5px;font-weight:500;letter-spacing:-.004em;
  color:var(--ink-2);
  transition:color .25s var(--ease-out);
}
.ab-team-tab:hover{color:var(--forest);}
.ab-team-tab.is-active{color:var(--lime);}
.ab-team-tab-indicator{
  position:absolute;z-index:0;top:6px;left:6px;
  height:calc(100% - 12px);
  background:var(--forest);border-radius:var(--radius-pill);
  transition:transform .35s var(--ease-out),width .35s var(--ease-out);
  pointer-events:none;
}

/* Compact people grid */
.ab-team-panel{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
}
.ab-team-panel[hidden]{display:none;}

.ab-person-card{
  background:var(--surface);border-radius:20px;
  padding:28px 24px 22px;
  display:flex;flex-direction:column;align-items:center;
  border:1px solid var(--line-soft);
  box-shadow:0 1px 2px rgba(24,48,37,.04);
  transition:transform .35s var(--ease-out),box-shadow .35s var(--ease-out);
  text-align:center;
}
.ab-person-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(24,48,37,.10),0 2px 4px rgba(24,48,37,.05);
}
.ab-person-card .ab-person-photo{
  width:128px;height:128px;border-radius:50%;
  overflow:hidden;background:var(--surface-2);
  box-shadow:0 2px 6px rgba(24,48,37,.08);
  margin-bottom:18px;
}
.ab-person-card .ab-person-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.ab-person-card .ab-person-photo-initials{
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
  color:var(--lime);
}
.ab-person-card .ab-person-photo-initials span{
  font-size:36px;font-weight:500;letter-spacing:-.02em;
  font-family:'DM Sans',system-ui,sans-serif;
}
.ab-person-card-meta{
  display:flex;flex-direction:column;gap:5px;
  margin-bottom:18px;flex:1 0 auto;width:100%;
}
.ab-person-card-meta h3,
.ab-person-card-meta h4{
  margin:0;font-size:17px;font-weight:600;line-height:1.2;
  color:var(--forest);letter-spacing:-.012em;
  text-wrap:balance;
}
.ab-person-card .ab-person-role{
  font-size:13px;font-weight:500;color:var(--ink-2);line-height:1.35;
  text-wrap:balance;
}
.ab-person-card .ab-person-creds{
  font-family:'JetBrains Mono','SF Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.08em;color:var(--ink-3);
  text-transform:uppercase;font-weight:500;
}
.ab-person-card-actions{
  display:flex;align-items:center;gap:8px;
  width:100%;justify-content:center;
}
.ab-person-bio-btn{
  background:transparent;border:0;cursor:pointer;
  padding:10px 16px;border-radius:var(--radius-pill);
  font-family:inherit;font-size:13px;font-weight:600;
  color:var(--forest);
  box-shadow:inset 0 0 0 1.5px var(--forest);
  transition:background .18s var(--ease-out),color .18s var(--ease-out);
}
.ab-person-bio-btn:hover{background:var(--forest);color:var(--lime);}
.ab-person-li{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  color:var(--ink-2);background:var(--surface-2);
  transition:background .18s var(--ease-out),color .18s var(--ease-out);
}
.ab-person-li:hover{background:var(--forest);color:var(--lime);}

/* Bio Modal */
.ab-modal{
  position:fixed;inset:0;z-index:100;
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  animation:abModalIn .22s var(--ease-out);
}
.ab-modal[hidden]{display:none;}
@keyframes abModalIn{
  from{opacity:0;}
  to{opacity:1;}
}
.ab-modal-backdrop{
  position:absolute;inset:0;
  background:rgba(8,24,17,.55);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.ab-modal-dialog{
  position:relative;
  background:var(--surface);border-radius:28px;
  width:min(640px,100%);max-height:calc(100vh - 48px);
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 32px 64px rgba(8,24,17,.4),0 4px 12px rgba(8,24,17,.18);
  animation:abModalDialogIn .35s var(--ease-out);
}
@keyframes abModalDialogIn{
  from{opacity:0;transform:translateY(12px) scale(.985);}
  to{opacity:1;transform:none;}
}
.ab-modal-close{
  position:absolute;top:18px;right:18px;z-index:2;
  width:36px;height:36px;border-radius:50%;
  background:var(--surface-2);border:0;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--ink-2);
  transition:background .18s var(--ease-out),color .18s var(--ease-out);
}
.ab-modal-close:hover{background:var(--forest);color:var(--lime);}
.ab-modal-header{
  display:flex;gap:24px;align-items:center;
  padding:40px 40px 24px;
}
.ab-modal-photo{
  flex:0 0 auto;width:110px;height:110px;border-radius:50%;
  background:var(--surface-2) center/cover no-repeat;
  box-shadow:0 2px 6px rgba(24,48,37,.08);
  position:relative;overflow:hidden;
}
.ab-modal-photo.is-initials{
  background:linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
  display:flex;align-items:center;justify-content:center;
  color:var(--lime);
  font-size:34px;font-weight:500;letter-spacing:-.02em;
}
.ab-modal-meta{display:flex;flex-direction:column;gap:5px;min-width:0;}
.ab-modal-meta h3{
  margin:0;font-size:24px;font-weight:600;line-height:1.15;
  color:var(--forest);letter-spacing:-.014em;
}
.ab-modal-role{font-size:14.5px;color:var(--ink-2);line-height:1.4;}
.ab-modal-creds{
  font-family:'JetBrains Mono','SF Mono',ui-monospace,monospace;
  font-size:11.5px;letter-spacing:.08em;color:var(--ink-3);
  text-transform:uppercase;font-weight:500;
}
.ab-modal-li{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;
  color:var(--ink-2);background:var(--surface-2);
  margin-top:6px;
  transition:background .18s var(--ease-out),color .18s var(--ease-out);
}
.ab-modal-li:hover{background:var(--forest);color:var(--lime);}
.ab-modal-bio{
  padding:8px 40px 40px;overflow-y:auto;
  display:flex;flex-direction:column;gap:14px;
}
.ab-modal-bio p{
  margin:0;font-size:15.5px;line-height:1.65;color:var(--ink-2);
}
body.ab-modal-open{overflow:hidden;}

@media (max-width:1100px){
  .ab-values-grid{grid-template-columns:repeat(2,1fr);}
  .ab-team-panel{grid-template-columns:repeat(3,1fr);}
}

@media (max-width:760px){
  .ab-section-head{margin-bottom:40px;}
  .ab-values{padding:var(--section-pad-sm) 0;}
  .ab-values-grid{grid-template-columns:1fr;gap:16px;}
  .ab-value{padding:32px 28px 28px;border-radius:24px;}
  .ab-value-num{font-size:54px;}
  .ab-value::after{top:-40px;right:-40px;width:130px;height:130px;}
  .ab-value::before{top:-78px;right:-78px;width:200px;height:200px;}
  .ab-pillars{padding:var(--section-pad-sm) 0;}
  .ab-pillars-list{grid-template-columns:1fr;gap:14px;}
  .ab-pillar{min-height:auto;padding:28px 26px 32px;gap:22px;}
  .ab-team{padding:var(--section-pad-sm) 0;}
  .ab-team-tabs{display:flex;width:100%;justify-content:stretch;}
  .ab-team-tab{flex:1;padding:11px 12px;}
  .ab-team-panel{grid-template-columns:repeat(2,1fr);gap:14px;}
  .ab-person-card{padding:22px 16px 18px;}
  .ab-person-card .ab-person-photo{width:96px;height:96px;margin-bottom:14px;}
  .ab-person-card .ab-person-photo-initials span{font-size:28px;}
  .ab-modal-header{padding:32px 24px 20px;gap:16px;flex-direction:column;text-align:center;}
  .ab-modal-photo{width:84px;height:84px;}
  .ab-modal-bio{padding:8px 24px 28px;}
}

@media (max-width:480px){
  .ab-team-panel{grid-template-columns:1fr;}
}

