/* v170 — stronger alternating editorial profile chapters. */
.person-about-page .editorial-masthead {
  padding-bottom: clamp(1.35rem, 2.6vw, 2.2rem);
}
.person-about-back-cta .person-back-button {
  width: 100%;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.person-about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3.5vw, 3.2rem) 0 clamp(2.2rem, 4vw, 4rem);
  border-bottom: 1px solid color-mix(in srgb, var(--blue-2) 36%, var(--line));
  background:
    radial-gradient(circle at 72% 16%, color-mix(in srgb, var(--blue) 13%, transparent), transparent 30rem),
    linear-gradient(135deg, color-mix(in srgb, var(--panel) 92%, transparent), color-mix(in srgb, var(--bg) 98%, transparent));
}
.person-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120,190,230,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,190,230,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
}
.person-about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}
.person-about-profile-layout {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}
.person-about-portrait {
  display: block;
  min-height: clamp(340px, 33vw, 500px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--blue-2) 44%, var(--line));
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
}
.person-about-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}
.person-about-info-card {
  align-self: center;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border: 1px solid color-mix(in srgb, var(--blue-2) 30%, var(--line));
  border-radius: 20px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel) 95%, transparent), color-mix(in srgb, var(--panel-2) 88%, transparent));
  box-shadow: 0 22px 60px rgba(0,0,0,.20);
}
.person-about-info-card .person-name-line {
  margin: .4rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}
.person-about-info-card .person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}
.person-action-current {
  border-color: color-mix(in srgb, var(--blue-2) 70%, white);
  background: color-mix(in srgb, var(--blue) 24%, transparent);
  color: var(--text);
}
.person-profile-actions {
  display: flex;
  gap: .65rem;
  margin-top: 1.1rem;
}
.person-about-source-note {
  display: flex;
  justify-content: flex-end;
  padding-top: .7rem;
  padding-bottom: .7rem;
}
.person-about-draft {
  display: inline-flex;
  padding: .42rem .68rem;
  border: 1px dashed color-mix(in srgb, var(--blue-2) 66%, var(--line));
  border-radius: 999px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.person-about-story {
  position: relative;
  overflow: clip;
}
.person-about-chapter {
  --chapter-accent: #148bdb;
  --chapter-accent-rgb: 20,139,219;
  position: relative;
  min-height: clamp(720px, 88vh, 980px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(var(--chapter-accent-rgb), .34);
  background: #061426;
}
.person-about-chapter-joined {
  --chapter-accent: #18b79a;
  --chapter-accent-rgb: 24,183,154;
}
.person-about-chapter-share {
  --chapter-accent: #f17623;
  --chapter-accent-rgb: 241,118,35;
}
.person-about-chapter-bg {
  position: absolute;
  z-index: 0;
  inset: -18% -4%;
  transform: translate3d(0, var(--person-about-bg-y, 0px), 0) scale(1.10);
  will-change: transform;
}
.person-about-chapter-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.02) brightness(.54);
}
.person-about-chapter-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,10,20,.88) 0%, rgba(2,10,20,.42) 52%, rgba(2,10,20,.24) 100%),
    linear-gradient(180deg, rgba(var(--chapter-accent-rgb), .34), rgba(var(--chapter-accent-rgb), .06) 38%, rgba(2,10,20,.30) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.person-about-divider {
  position: relative;
  z-index: 3;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  border-top: 1px solid rgba(var(--chapter-accent-rgb), .78);
  border-bottom: 1px solid rgba(var(--chapter-accent-rgb), .62);
  background: rgba(3,13,25,.95);
  box-shadow: 0 20px 54px rgba(0,0,0,.28);
}
.person-about-divider::before,
.person-about-divider::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  max-width: 28rem;
  background: linear-gradient(90deg, transparent, rgba(var(--chapter-accent-rgb), .9));
}
.person-about-divider::after {
  transform: scaleX(-1);
}
.person-about-divider span {
  padding: 0 clamp(1rem, 3vw, 2.8rem);
  color: var(--chapter-accent);
  font-size: clamp(.92rem, 1.45vw, 1.25rem);
  font-weight: 780;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
}
.person-about-chapter-inner {
  position: relative;
  z-index: 2;
  min-height: calc(clamp(720px, 88vh, 980px) - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
}
.person-about-floating-card {
  width: min(92%, 760px);
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: clamp(1rem, 2.2vw, 1.7rem);
  align-items: start;
  padding: clamp(1.7rem, 3.7vw, 3rem);
  border: 1px solid rgba(var(--chapter-accent-rgb), .72);
  border-radius: 24px;
  background: rgba(4,15,29,.84);
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
  transform: translate3d(0, var(--person-about-card-y, 0px), 0);
  will-change: transform;
}
.person-about-floating-card h2 {
  margin: 0 0 .8rem;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
  line-height: 1.04;
}
.person-about-floating-card p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}
.person-about-icon {
  width: clamp(56px, 7vw, 78px);
  height: clamp(56px, 7vw, 78px);
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(var(--chapter-accent-rgb), .72);
  border-radius: 50%;
  color: var(--chapter-accent);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(2,10,20,.70);
}
.editorial-stack-card.is-person-link { cursor: pointer; }
.editorial-stack-card.is-person-link[data-slot="current"]:hover {
  transform: translate3d(var(--stack-drag-x, 0px), -4px, 0) scale(1.012);
  box-shadow: 0 34px 86px rgba(0,0,0,.44);
}
.editorial-stack-card.is-person-link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue-2) 75%, white);
  outline-offset: 5px;
}
html.light-mode .person-about-hero {
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--blue) 10%, transparent), transparent 28rem),
    linear-gradient(135deg, #f8fbfd, #edf4f8);
}
html.light-mode .person-about-info-card {
  background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(238,246,250,.94));
  box-shadow: 0 16px 38px rgba(30,54,79,.08);
}
html.light-mode .person-about-divider { background: rgba(248,251,253,.96); }
html.light-mode .person-about-floating-card {
  background: rgba(249,252,254,.88);
  box-shadow: 0 28px 70px rgba(18,43,66,.22);
}
html.light-mode .person-about-floating-card h2 { color: #07111f; }
html.light-mode .person-about-floating-card p { color: #263d54; }
html.light-mode .person-about-icon { background: rgba(255,255,255,.76); }
@media (max-width: 860px) {
  .person-about-profile-layout {
    grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
  }
  .person-about-chapter { min-height: 760px; }
  .person-about-chapter-inner { min-height: 672px; }
}
@media (max-width: 700px) {
  .person-about-profile-layout { grid-template-columns: 1fr; }
  .person-about-portrait { min-height: 360px; max-height: 520px; }
  .person-about-info-card { align-self: stretch; }
  .person-about-source-note { justify-content: flex-start; }
  .person-about-chapter { min-height: 720px; }
  .person-about-chapter-bg { inset: -10% -18%; }
  .person-about-chapter-inner { min-height: 632px; align-items: end; }
  .person-about-floating-card { grid-template-columns: 1fr; width: 100%; }
  .person-about-divider span { letter-spacing: .14em; }
}
@media (prefers-reduced-motion: reduce) {
  .person-about-chapter-bg,
  .person-about-floating-card { transform: none !important; }
}


/* v170 — taller chapter windows, larger foreground cards and left/right alternation. */
.person-about-chapter {
  min-height: clamp(820px, 104vh, 1160px);
}
.person-about-chapter-bg {
  inset: -34% -7%;
  transform: translate3d(0, var(--person-about-bg-y, 0px), 0) scale(1.16);
}
.person-about-chapter-inner {
  min-height: calc(clamp(820px, 104vh, 1160px) - 88px);
  justify-content: flex-start;
  padding-inline: clamp(1rem, 4vw, 4.5rem);
}
.person-about-floating-card {
  width: min(88%, 880px);
  min-height: clamp(300px, 35vh, 440px);
  align-content: center;
  padding: clamp(2.2rem, 4.4vw, 4rem);
}
.person-about-chapter:nth-of-type(2) .person-about-chapter-inner {
  justify-content: flex-end;
}
.person-about-chapter:nth-of-type(3) .person-about-chapter-inner {
  justify-content: flex-start;
}
.person-about-chapter-interests .person-about-chapter-bg img {
  object-position: 72% center;
}
.person-about-chapter-joined .person-about-chapter-bg img {
  object-position: 26% center;
}
.person-about-chapter-share .person-about-chapter-bg img {
  object-position: 76% center;
}
.person-about-chapter-interests .person-about-chapter-bg::after {
  background:
    linear-gradient(90deg, rgba(2,10,20,.90) 0%, rgba(2,10,20,.72) 39%, rgba(2,10,20,.22) 72%, rgba(2,10,20,.28) 100%),
    linear-gradient(180deg, rgba(var(--chapter-accent-rgb), .36), rgba(var(--chapter-accent-rgb), .07) 42%, rgba(2,10,20,.30) 100%);
}
.person-about-chapter-joined .person-about-chapter-bg::after {
  background:
    linear-gradient(90deg, rgba(2,10,20,.26) 0%, rgba(2,10,20,.28) 38%, rgba(2,10,20,.76) 68%, rgba(2,10,20,.92) 100%),
    linear-gradient(180deg, rgba(var(--chapter-accent-rgb), .34), rgba(var(--chapter-accent-rgb), .06) 42%, rgba(2,10,20,.32) 100%);
}
.person-about-chapter-share .person-about-chapter-bg::after {
  background:
    linear-gradient(90deg, rgba(2,10,20,.92) 0%, rgba(2,10,20,.74) 40%, rgba(2,10,20,.22) 74%, rgba(2,10,20,.28) 100%),
    linear-gradient(180deg, rgba(var(--chapter-accent-rgb), .34), rgba(var(--chapter-accent-rgb), .06) 42%, rgba(2,10,20,.32) 100%);
}
@media (max-width: 860px) {
  .person-about-chapter { min-height: 820px; }
  .person-about-chapter-inner { min-height: 732px; }
}
@media (max-width: 700px) {
  .person-about-chapter { min-height: 760px; }
  .person-about-chapter-bg { inset: -22% -28%; }
  .person-about-chapter-inner,
  .person-about-chapter:nth-of-type(2) .person-about-chapter-inner,
  .person-about-chapter:nth-of-type(3) .person-about-chapter-inner {
    min-height: 672px;
    justify-content: center;
    align-items: end;
    padding-inline: 1rem;
  }
  .person-about-floating-card { width: 100%; min-height: auto; }
}

/* v171 — larger story copy panels without increasing chapter height. */
.person-about-chapter-inner {
  padding-inline: clamp(1.25rem, 5.5vw, 7rem);
}
.person-about-floating-card {
  width: min(66vw, 1080px);
  min-height: clamp(420px, 45vh, 560px);
  padding: clamp(2.7rem, 5vw, 4.8rem);
  gap: clamp(1.25rem, 2.6vw, 2rem);
}
.person-about-floating-card h2 {
  font-size: clamp(2.15rem, 3.7vw, 3.65rem);
}
.person-about-floating-card p {
  max-width: 60ch;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.72;
}
.person-about-chapter-interests .person-about-chapter-bg img {
  object-position: center center;
}
@media (max-width: 1050px) {
  .person-about-floating-card {
    width: min(78vw, 960px);
    min-height: clamp(380px, 42vh, 500px);
  }
}
@media (max-width: 700px) {
  .person-about-floating-card {
    width: 100%;
    min-height: auto;
    padding: clamp(1.6rem, 7vw, 2.4rem);
  }
}

/* v174 — constrained, denser About Me story chapters with larger copy. */
.person-about-story {
  width: min(1540px, calc(100% - clamp(32px, 5vw, 110px)));
  margin: 0 auto clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  border-inline: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
}
.person-about-chapter {
  min-height: clamp(610px, 72vh, 780px);
}
.person-about-divider {
  min-height: 72px;
  padding-block: .65rem;
}
.person-about-chapter-bg {
  inset: -24% -5%;
  transform: translate3d(0, var(--person-about-bg-y, 0px), 0) scale(1.13);
}
.person-about-chapter-inner,
.person-about-chapter:nth-of-type(2) .person-about-chapter-inner,
.person-about-chapter:nth-of-type(3) .person-about-chapter-inner {
  min-height: calc(clamp(610px, 72vh, 780px) - 72px);
  padding: clamp(1.8rem, 3.6vw, 3.6rem) clamp(1.25rem, 4.8vw, 5.5rem);
  align-items: center;
}
.person-about-chapter:nth-of-type(1) .person-about-chapter-inner,
.person-about-chapter:nth-of-type(3) .person-about-chapter-inner {
  justify-content: flex-start;
}
.person-about-chapter:nth-of-type(2) .person-about-chapter-inner {
  justify-content: flex-end;
}
.person-about-floating-card {
  width: min(78%, 1080px);
  min-height: 0;
  grid-template-columns: clamp(58px, 6vw, 76px) minmax(0, 1fr);
  align-items: start;
  padding: clamp(2rem, 3.8vw, 3.6rem);
  gap: clamp(1.25rem, 2.4vw, 2rem);
}
.person-about-floating-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 1rem;
}
.person-about-floating-card p {
  font-size: clamp(1.08rem, 1.22vw, 1.28rem);
  line-height: 1.68;
}
.person-about-floating-card p + p {
  margin-top: 1.05rem;
}
@media (max-width: 900px) {
  .person-about-story {
    width: min(100% - 24px, 1180px);
  }
  .person-about-chapter,
  .person-about-chapter-inner,
  .person-about-chapter:nth-of-type(2) .person-about-chapter-inner,
  .person-about-chapter:nth-of-type(3) .person-about-chapter-inner {
    min-height: auto;
  }
  .person-about-chapter-inner,
  .person-about-chapter:nth-of-type(2) .person-about-chapter-inner,
  .person-about-chapter:nth-of-type(3) .person-about-chapter-inner {
    padding-block: 3rem;
    justify-content: center;
  }
  .person-about-floating-card {
    width: min(100%, 920px);
  }
}
@media (max-width: 700px) {
  .person-about-story { width: calc(100% - 16px); }
  .person-about-chapter-bg { inset: -16% -28%; }
  .person-about-floating-card {
    grid-template-columns: 1fr;
    padding: 1.55rem;
  }
  .person-about-floating-card p { font-size: 1rem; }
}
