/* ============================================================
   Wäicuni Foundation — V2 "editorial"
   Layout language inspired by imc.fund (statement-led, huge
   type, generous space); rendered entirely in Wäicuni's brand:
     forest #0A231D · cream #FFF6E8 · red #AF4A43 · blue #374B94
     gold #D1B44D · teal #63918B · lime #C0CE2B
   ============================================================ */

/* Patched Jost glyphs for U+1ECC/1ECD/1EA0/1EA1 (Uwọttüjạ) — built from
   Jost's own outlines; unicode-range limits these files to the four codepoints */
@font-face { font-family: 'Jost Dot'; font-weight: 300; src: url('../fonts/jost-dot-300.woff2') format('woff2'); unicode-range: U+1EA0-1EA1, U+1ECC-1ECD; font-display: swap; }
@font-face { font-family: 'Jost Dot'; font-weight: 400; src: url('../fonts/jost-dot-400.woff2') format('woff2'); unicode-range: U+1EA0-1EA1, U+1ECC-1ECD; font-display: swap; }
@font-face { font-family: 'Jost Dot'; font-weight: 500; src: url('../fonts/jost-dot-500.woff2') format('woff2'); unicode-range: U+1EA0-1EA1, U+1ECC-1ECD; font-display: swap; }

:root {
  --forest: #0A231D;
  --forest-soft: #11312A;
  --cream: #FFF6E8;
  --cream-deep: #F3E8D3;
  --line: rgba(10, 35, 29, .18);
  --red: #AF4A43;
  --blue: #374B94;
  --gold: #D1B44D;
  --gold-deep: #A8871F;
  --teal: #63918B;
  --teal-deep: #46756E;
  --lime: #C0CE2B;
  --display: 'Julius Sans One', sans-serif;
  --body: 'Jost Dot', 'Jost', 'Be Vietnam Pro', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  overflow-x: clip;
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.6;
  background: var(--cream);
  color: var(--forest);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(22px, 5vw, 64px); }

/* ---------- type ---------- */

.kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  font-weight: 500;
  opacity: .65;
  margin-bottom: clamp(1.2rem, 3vh, 2.2rem);
}

.giant {
  font-weight: 300;
  font-size: clamp(2.1rem, 5.6vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -.005em;
  max-width: 20ch;
}
.giant em { font-style: italic; }
.accent-red  { color: var(--red);  font-style: italic; }
.accent-gold { color: var(--gold-deep); font-style: italic; }
.accent-teal { color: var(--teal-deep); font-style: italic; }

.support {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-weight: 300;
  max-width: 34ch;
  opacity: .85;
}

/* ---------- top bar ---------- */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  gap: clamp(16px, 2.5vw, 26px);
  align-items: center;
  padding: 16px clamp(22px, 5vw, 64px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.topbar .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  text-decoration: none;
}

/* desktop inline nav */
.topbar-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
.topbar-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .74rem;
  font-weight: 400;
  opacity: .75;
}
.topbar-nav a:hover, .topbar-nav a.active { opacity: 1; }
.topbar-nav a.donate-link {
  background: var(--lime);
  border: 1px solid var(--lime);
  color: var(--forest);
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 999px;
  opacity: 1;
  transition: filter .2s;
}
.topbar-nav a.donate-link:hover { filter: brightness(1.06); }

.brand-mark { height: 38px; width: auto; display: block; }
.m-only { display: none; }
@media (max-width: 860px) { .brand-mark { height: 30px; } }

/* Projects dropdown (desktop nav) */
.nav-dd { display: flex; align-items: stretch; }
.nav-dd-btn {
  font-family: var(--body);
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .74rem;
  font-weight: 400;
  color: var(--forest);
  opacity: .75;
  padding: 16px 0;
}
.nav-dd-btn:hover, .nav-dd:hover .nav-dd-btn, .nav-dd.open .nav-dd-btn, .nav-dd-btn.active { opacity: 1; }
.nav-dd-menu {
  position: absolute;
  top: 100%;
  right: clamp(150px, 16vw, 230px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease .25s; /* grace delay before hiding */
}
.nav-dd-menu::before {
  /* invisible bridge covering the strip between the button and the panel,
     so hover never breaks while traveling down */
  content: '';
  position: absolute;
  top: -40px;
  left: -30px;
  right: -30px;
  height: 40px;
}
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-dd-menu > div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: 0 16px 44px rgba(10, 35, 29, .16);
  min-width: 230px;
  padding: 6px 0;
}
.nav-dd-menu a {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--forest);
  opacity: .8;
  white-space: nowrap;
}
.nav-dd-menu a:hover { opacity: 1; background: rgba(10, 35, 29, .05); }

/* mobile panel sub-items */
.menu-panel a.sub {
  padding-left: 20px;
  font-size: .74rem;
  opacity: .65;
}

/* hamburger + dropdown menu (mobile only) */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 2px;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--forest);
  padding: 8px clamp(22px, 5vw, 64px) 18px;
  box-shadow: 0 18px 48px rgba(4, 18, 14, .3);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.menu-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.menu-panel a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  font-weight: 400;
  color: var(--cream);
  opacity: .8;
  border-bottom: 1px solid rgba(255, 246, 232, .14);
}
.menu-panel a:last-child { border-bottom: none; }
.menu-panel a:hover, .menu-panel a.active { opacity: 1; }
.menu-panel a.donate-link { color: var(--lime); font-weight: 600; opacity: 1; }

/* ---------- v2.1 photo hero ---------- */

.hero-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 78px 12px 0;
}
.hero-photos img {
  width: 100%;
  height: 52vh;
  min-height: 260px;
  object-fit: cover;
}
.hero-title { padding: 7vh 0 8vh; text-align: center; }
.hero-name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: clamp(1.35rem, 4vw, 2.9rem);
  line-height: 1.35;
  color: var(--forest);
}
.tagline {
  text-wrap: balance;
  margin: 1.4rem auto 0;
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.8vw, 1.3rem);
  font-weight: 300;
  opacity: .78;
}

/* photo strips / galleries */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 2.6rem;
}
.photo-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .photo-grid-4 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- team bands ---------- */

.person-row {
  display: grid;
  grid-template-columns: clamp(140px, 20vw, 230px) 1fr;
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(30px, 5vh, 50px) 0;
  border-bottom: 1px solid rgba(255, 246, 232, .18);
  align-items: start;
}
.person-row:last-of-type { border-bottom: none; }
.person-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.person-row h3 { font-weight: 400; font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
.person-row .aka { opacity: .55; font-weight: 300; font-size: .95em; }
.person-row .role {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  margin: .5rem 0 .9rem;
}
.person-row p.bio { font-size: 1rem; opacity: .85; max-width: 70ch; }

/* ---------- statement sections ---------- */

.statement {
  display: flex;
  align-items: center;
  padding: clamp(100px, 16vh, 170px) 0;
}
.statement.short { padding: clamp(80px, 12vh, 130px) 0; }

.hero-statement {
  min-height: 76vh;
  align-items: center;
  padding: 120px 0 40px; /* clears the fixed topbar, keeps the statement mid-screen */
}
.hero-statement .sub { margin-top: 2rem; }

.dark { background: var(--forest); color: var(--cream); }
.dark .support { opacity: .8; }
.dark .accent-gold { color: var(--gold); }
.dark .accent-teal { color: var(--teal); }

/* ---------- photo interlude ---------- */

.interlude { position: relative; }
.interlude img {
  width: 100%;
  height: clamp(340px, 68vh, 720px);
  object-fit: cover;
}
.interlude figcaption {
  position: absolute;
  right: clamp(22px, 5vw, 64px);
  bottom: 18px;
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

/* ---------- program rows ---------- */



.row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  padding: clamp(22px, 4vh, 40px) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left .25s ease;
}
.rows > :last-child { border-bottom: none; }
.dark .row { border-color: rgba(255, 246, 232, .18); }
.row:hover { padding-left: 14px; }

.row .n {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .12em;
  opacity: .5;
}
.row .name {
  font-weight: 300;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  line-height: 1.15;
}
.row .meta {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .6;
  text-align: right;
  max-width: 220px;
}
.row .thumb {
  width: clamp(84px, 10vw, 132px);
  height: clamp(84px, 10vw, 132px);
  object-fit: cover;
  border-radius: 999px;
  filter: saturate(.92);
}
.row .dot {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  margin-right: 16px;
  vertical-align: middle;
}
.dot-red { background: var(--red); }
.dot-blue { background: var(--blue); }
.dot-gold { background: var(--gold); }
.dot-teal { background: var(--teal); }

/* ---------- big CTA rows ---------- */


.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(34px, 7vh, 64px) 0;
  border-bottom: 1px solid rgba(255, 246, 232, .18);
  text-decoration: none;
  transition: padding-left .25s ease;
}
.cta-rows > :last-child { border-bottom: none; }
.cta-row:hover { padding-left: 18px; }
.cta-row .big {
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.15;
}
.cta-row .go {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(255, 246, 232, .5);
  border-radius: 999px;
  padding: 13px 30px;
  transition: background .2s, color .2s, border-color .2s;
}
.cta-row:hover .go { background: var(--lime); color: var(--forest); border-color: var(--lime); }

/* ---------- stats strip ---------- */

.stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(40px, 8vh, 80px) 0;
  border-top: 1px solid var(--line);
}
.stats-strip .stat .num {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: .04em;
  display: block;
}
.stats-strip .stat .label {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 500;
  opacity: .6;
}

/* ---------- inner pages ---------- */

.page-head {
  padding: clamp(150px, 20vh, 210px) 0 clamp(48px, 7vh, 72px);
}
.page-head .giant { max-width: 24ch; }

.prose {
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.75;
}
.prose p + p { margin-top: 1.2em; }

.section-pad { padding: clamp(56px, 10vh, 100px) 0; }
.section-pad.tight { padding-top: 0; }

/* numbered strategy list (editorial) */
.num-list { max-width: 900px; }
.num-list li:last-of-type { border-bottom: none; }
.num-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(16px, 3vw, 44px);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.num-list .n { font-family: var(--display); opacity: .5; letter-spacing: .12em; padding-top: 4px; }

/* team — minimal editorial grid */
.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.person img {
  width: 108px; height: 108px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: saturate(.92);
}
.person h3 { font-weight: 400; font-size: 1.14rem; }
.person .aka { opacity: .55; font-weight: 300; font-size: .95rem; }
.person .role {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 500;
  margin: .45rem 0 .7rem;
  opacity: .65;
}
.person p.bio { font-size: .95rem; opacity: .85; }

.dark .person .role { color: var(--gold); opacity: 1; }

/* funding rows (donate) */
.fund-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  padding: clamp(28px, 5vh, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.fund-row .thumb {
  width: clamp(90px, 11vw, 150px);
  height: clamp(90px, 11vw, 150px);
  border-radius: 999px;
  object-fit: cover;
}
.fund-row h3 { font-weight: 400; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.3; }
.fund-row .where {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  opacity: .6;
  margin: .4rem 0 .8rem;
}
.fund-row p { font-size: .98rem; max-width: 60ch; opacity: .9; }
.fund-row .ask {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: .04em;
  white-space: nowrap;
  text-align: right;
}

/* tier rows */
.tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: clamp(26px, 5vh, 42px) 0;
  border-bottom: 1px solid rgba(255, 246, 232, .18);
}
.tier .amt {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: var(--lime);
  white-space: nowrap;
}
.tier p { max-width: 46ch; opacity: .85; }

/* buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 999px;
  transition: transform .15s, filter .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--forest); font-weight: 600; }
.btn-line { border: 1px solid var(--forest); color: var(--forest); }
.dark .btn-line { border-color: rgba(255,246,232,.55); color: var(--cream); }

/* pillar detail page (e.g. South America) */
.proj {
  padding: clamp(48px, 9vh, 84px) 0;
  border-bottom: 1px solid var(--line);
}
.proj:last-of-type { border-bottom: none; padding-bottom: 0; }
.proj-head {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-bottom: 2rem;
}
.proj-head img {
  width: clamp(96px, 11vw, 150px);
  height: clamp(96px, 11vw, 150px);
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}
.proj-head h2 {
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.25;
}
.proj-head .where {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  opacity: .6;
  margin-top: .5rem;
}
.proj-tag {
  display: inline-block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 500;
  margin-bottom: .6rem;
}
.proj .seek {
  font-weight: 500;
  margin-top: 1.4rem;
}
.proj ul {
  margin: .8rem 0 0 1.2rem;
  max-width: 66ch;
}
.proj ul li + li { margin-top: .5rem; }
.proj .ask {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: .05em;
  color: var(--red);
  margin-top: 1.8rem;
}

/* contact blocks */
.contact-rows { max-width: 900px; }
.contact-rows .crow:last-of-type { border-bottom: none; }
.contact-rows .crow {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-rows .label {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .72rem;
  font-weight: 500;
  opacity: .6;
}
.contact-rows a { text-decoration: none; font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 300; }
.contact-rows a:hover { text-decoration: underline; }
.contact-rows .val { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 300; }

form.contact { max-width: 640px; display: grid; gap: 14px; margin-top: 2.4rem; }
form.contact input, form.contact textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  width: 100%;
}
form.contact textarea { min-height: 140px; resize: vertical; }
form.contact input:focus, form.contact textarea:focus { outline: none; border-bottom-color: var(--forest); }
form.contact button { font-family: var(--body); cursor: pointer; border: none; justify-self: start; margin-top: 1rem; }

/* ---------- footer ---------- */

footer {
  background: var(--forest);
  color: var(--cream);
  padding: 56px 0 36px;
}
footer .cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}
footer .brand {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .84rem;
  text-decoration: none;
}
footer nav { display: flex; gap: 28px; flex-wrap: wrap; }
footer nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  opacity: .75;
}
footer nav a:hover { opacity: 1; }
footer .fine {
  font-size: .8rem;
  opacity: .55;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,246,232,.16);
  padding-top: 22px;
}

/* ---------- reveal on scroll ---------- */

html.js .fx {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s ease, transform .9s ease;
}
html.js .fx.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .topbar-nav, .nav-dd { display: none; }
  .menu-btn { display: flex; }
  .row { grid-template-columns: 40px 1fr auto; }
  .row .meta { display: none; }
  .fund-row { grid-template-columns: 1fr; }
  .fund-row .thumb { width: 96px; height: 96px; }
  .fund-row .ask { text-align: left; }
  .contact-rows .crow { grid-template-columns: 1fr; gap: 6px; }
  .statement, .statement.short { min-height: 0; padding: 64px 0; }
  .hero-statement { min-height: 0; }
  .page-head { padding: 118px 0 40px; }
  .section-pad { padding: 48px 0; }
  .interlude img { height: 300px; }
  .interlude figcaption { font-size: .68rem; }
  .statement .support { margin-top: 1.4rem !important; }
  .cta-row { padding: 26px 0; }
  .stats-strip { padding: 36px 0; gap: 28px; }
  .proj { padding: 40px 0; }
  .person-row { padding: 28px 0; }
  .m-only { display: inline; }
  .pillar-pager { flex-wrap: nowrap; gap: 10px; }
  .pillar-pager .btn {
    flex: 1;
    text-align: center;
    font-size: .6rem;
    letter-spacing: .1em;
    padding: 12px 6px;
    white-space: nowrap;
  }
  .hero-photos { gap: 6px; padding-top: 74px; }
  .hero-photos img { height: 30vh; min-height: 170px; }
  .hero-title { padding: 4.5vh 0 6vh; }
  .hero-name { letter-spacing: .15em; font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .tagline { margin-top: 1rem; padding: 0 10px; }
  .hero-cta { margin-top: 1.6rem !important; }
  .person-row { grid-template-columns: 1fr; }
  .person-row img { max-width: 220px; }
}
