/* =============================================================================
   Photo Story page
   ============================================================================= */

/* Hero — full-width cover image */
.ps-hero {
  position: relative;
  margin-bottom: 0;
}
.ps-hero .img-credits-wrap {
  line-height: 0;
}
.ps-hero-img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: var(--who-gray-100);
}
@media (max-width: 768px) {
  .ps-hero-img { height: 300px; }
}

/* Intro text — lead paragraph */
.ps-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--who-gray-700);
  margin-bottom: 32px;
}

/* Photo grid */
.ps-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}
.ps-photo {
  margin: 0;
}
.ps-photo-wrap {
  border-radius: var(--who-radius-md);
  overflow: hidden;
}
.ps-photo-img {
  display: block;
  width: 100%;
  background: var(--who-gray-100);
}
.ps-photo-caption {
  padding: 12px 4px 0;
}
.ps-photo-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--who-gray-700);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Regional Director — /regional-director
   Based on afro-redesign reference design
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero — full-width photo with name/title boxes at bottom */
.rd-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.rd-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
.rd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.rd-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--who-container-max);
  margin: 0 auto; padding: 0 24px 48px;
  width: 100%;
}
.rd-hero-name {
  display: inline-block;
  background: rgba(0,59,115,.85);
  padding: 16px 28px;
  margin-bottom: 8px;
}
.rd-hero-name h1 {
  font-size: 42px; font-weight: 700;
  color: white; line-height: 1.2;
  margin: 0;
}
.rd-hero-title {
  display: inline-block;
  background: rgba(0,59,115,.85);
  padding: 8px 28px;
  font-size: 18px; color: rgba(255,255,255,.9);
}
@media (max-width: 767.98px) {
  .rd-hero { min-height: 360px; }
  .rd-hero-name h1 { font-size: 28px; }
  .rd-hero-inner { padding-bottom: 32px; }
}

/* Navy bio block — text left, portrait right */
.rd-vision-block {
  background: var(--who-blue-dark);
  padding: 60px 0;
}
.rd-vision-inner {
  max-width: var(--who-container-max);
  margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.rd-vision-text {
  color: rgba(255,255,255,.9);
  font-size: 16px; line-height: 1.8;
}
.rd-vision-text p { margin-bottom: 16px; }
.rd-bio-link {
  display: inline-block; margin-top: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.4);
  color: white; font-size: 14px; font-weight: 600;
  border-radius: var(--who-radius-md);
  text-decoration: none;
  transition: all .2s ease;
}
.rd-bio-link:hover {
  background: white; color: var(--who-blue-dark);
}
.rd-vision-portrait {
  width: 100%; height: 480px;
  background-size: cover; background-position: center;
  border-radius: var(--who-radius-md);
}
@media (max-width: 991.98px) {
  .rd-vision-inner { grid-template-columns: 1fr; }
  .rd-vision-portrait { height: 320px; }
}

/* Two-column grid — AFRO style */
.rd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.rd-col-title {
  font-size: 28px; font-weight: 700;
  color: var(--who-blue-dark); line-height: 1.2;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--who-blue);
}
@media (max-width: 767.98px) {
  .rd-two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* Speeches & Messages list */
.speech-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--who-gray-200);
  display: block;
  text-decoration: none;
}
.speech-item:last-of-type { border-bottom: none; }
.speech-title {
  font-size: 16px; font-weight: 600;
  color: var(--who-blue-dark); line-height: 1.4;
  margin-bottom: 4px;
  transition: color .2s ease;
}
.speech-item:hover .speech-title { color: var(--who-blue); }
.speech-date {
  font-size: 12px; font-weight: 600;
  color: var(--who-gray-600);
  text-transform: uppercase; letter-spacing: .5px;
}

/* RD Reports list */
.rd-report-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--who-gray-200);
  display: block;
  text-decoration: none;
}
.rd-report-item:last-of-type { border-bottom: none; }
.rd-report-title {
  font-size: 16px; font-weight: 600;
  color: var(--who-blue-dark); line-height: 1.4;
  margin-bottom: 4px;
  transition: color .2s ease;
}
.rd-report-item:hover .rd-report-title { color: var(--who-blue); }
.rd-report-date {
  font-size: 12px; font-weight: 600;
  color: var(--who-gray-600);
  text-transform: uppercase; letter-spacing: .5px;
}

/* Leadership Team block */
.rd-team-text {
  font-size: 16px; line-height: 1.7;
  color: var(--who-gray-800);
  margin-bottom: 20px;
}

/* "View More" button — matches AFRO style */
.btn-view-more {
  display: inline-block;
  padding: 10px 24px;
  margin-top: 24px;
  background: var(--who-blue-dark);
  color: white; font-size: 14px; font-weight: 600;
  border-radius: var(--who-radius-md);
  text-decoration: none;
  transition: background .2s ease;
}
.btn-view-more:hover { background: var(--who-blue); }

/* ═══════════════════════════════════════════════════════════════════════════
   About Us — /about-us
   Layout modeled after who.int/about with who26 styling.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Intro / Tagline — centered block with CTA ── */
.au-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.au-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--who-navy);
  line-height: 1.3;
  margin: 0 0 16px;
}
.au-intro p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--who-gray-700);
  margin: 0 0 24px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--who-gold);
  color: var(--who-white);
  border: none;
  border-radius: var(--who-radius-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn-cta:hover {
  background: var(--who-gold-hover);
  color: var(--who-white);
}
@media (max-width: 767.98px) {
  .au-intro h2 { font-size: 1.5rem; }
  .au-intro p { font-size: 1rem; }
}

/* ── Who We Are / What We Do — 3 equal columns ── */
.au-whowhat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.au-whowhat-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--who-blue-dark);
  margin: 0 0 12px;
  line-height: 1.3;
}
.au-whowhat-col p {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--who-gray-700);
  margin: 0 0 16px;
}
.au-whowhat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--who-radius-md);
  display: block;
}
/* Shared link style for About Us sections */
.au-inline-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.au-inline-links li { margin-bottom: 6px; }
.au-inline-links a {
  color: var(--who-blue);
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 600;
}
.au-inline-links a:hover { text-decoration: underline; }
@media (max-width: 991.98px) {
  .au-whowhat { grid-template-columns: 1fr; }
  .au-whowhat-img { order: -1; }
  .au-whowhat-img img { max-height: 320px; }
}

/* ── Governance & Org Structure — 2 equal columns ── */
.au-govorg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.au-govorg-card {
  padding: 32px;
  border-radius: var(--who-radius-md);
  background: var(--who-gray-100);
  display: flex;
  flex-direction: column;
}
.au-govorg-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--who-blue-dark);
  line-height: 1.3;
}
.au-govorg-card p {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--who-gray-700);
  margin: 0 0 20px;
}
/* Navy variant — Governance */
.au-govorg-card--navy {
  background: var(--who-navy);
}
.au-govorg-card--navy h3 { color: var(--who-white); }
.au-govorg-card--navy p { color: rgba(255,255,255,.8); }
/* Links inside cards */
.au-govorg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--who-blue);
  text-decoration: none;
  margin-top: auto;
}
.au-govorg-link:hover { text-decoration: underline; }
.au-govorg-card--navy .au-govorg-link { color: var(--who-white); }
.au-govorg-card--navy .au-govorg-link:hover { color: rgba(255,255,255,.8); }
/* Plain variant — no background */
.au-govorg-card--plain {
  background: none;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767.98px) {
  .au-govorg-grid { grid-template-columns: 1fr; }
  .au-govorg-card { padding: 24px; }
  .au-govorg-card--plain { padding: 0; }
}

/* ── Leadership — title + intro left, portrait cards right ── */
.au-ld-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.au-ld-intro h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--who-navy);
  margin: 0 0 16px;
  line-height: 1.3;
}
.au-ld-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--who-gray-700);
  margin: 0 0 20px;
}
/* Director portrait cards */
.au-directors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 24px;
}
.au-dir-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.au-dir-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--who-radius-md);
  background-size: cover;
  background-position: center top;
  background-color: var(--who-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--who-gray-400);
  margin-bottom: 12px;
}
.au-dir-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--who-blue-dark);
  margin: 0 0 4px;
  line-height: 1.3;
}
.au-dir-role {
  font-size: .75rem;
  font-weight: 500;
  color: var(--who-gray-600);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .au-ld-row { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .au-directors { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Programmes & Clusters — /about-us/programmes-clusters
   ═══════════════════════════════════════════════════════════════════════════ */

/* Cluster card grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--who-radius-md);
  overflow: hidden;
  background: var(--who-white);
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.pc-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.pc-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--who-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-card-body {
  padding: 16px 20px 20px;
  flex: 1;
}
.pc-card-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--who-blue-dark);
  margin: 0 0 8px;
  line-height: 1.35;
}
.pc-card-desc {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--who-gray-600);
  margin: 0;
}
@media (max-width: 991.98px) {
  .pc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .pc-grid { grid-template-columns: 1fr; }
}

/* News filter */
.pc-news-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pc-filter-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--who-blue-dark);
}
.pc-filter-select {
  padding: 8px 14px;
  border: 1px solid var(--who-gray-300);
  border-radius: var(--who-radius-sm);
  font-size: .875rem;
  background: var(--who-white);
  color: var(--who-gray-700);
  min-width: 260px;
}
.pc-filter-select:focus {
  outline: none;
  border-color: var(--who-blue);
}
.pc-filter-btn {
  padding: 8px 20px;
  background: var(--who-navy);
  color: var(--who-white);
  border: none;
  border-radius: var(--who-radius-sm);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
}
.pc-filter-btn:hover {
  background: var(--who-blue-dark);
}
.pc-filter-clear {
  font-size: .875rem;
  color: var(--who-blue);
  text-decoration: none;
  font-weight: 600;
}
.pc-filter-clear:hover {
  text-decoration: underline;
}

/* The "News from WHO Clusters" cards now reuse the homepage Latest-News
   model (.news-card in components/homepage.css). The old .pc-news-* card
   rules were removed; only the cluster filter (.pc-news-filter / .pc-filter-*)
   remains specific to this page. */
@media (max-width: 575.98px) {
  .pc-filter-select { min-width: 0; flex: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Governance — /about-us/governance
   Styles live in components/governance.css (who26/governance library); the
   early-generation .gov-tab-body rules that used to sit here (including an
   overbroad `h3 { display: none }` that swallowed legitimate content
   headings) were retired when that stylesheet took over.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   Contact Us — /about-us/contact-us
   ═══════════════════════════════════════════════════════════════════════════ */

.cu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.cu-info-card {
  padding: 32px;
  background: var(--who-gray-100);
  border-radius: var(--who-radius-md);
}
.cu-info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--who-blue-dark);
  margin: 0 0 16px;
}
.cu-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.cu-detail:last-child { margin-bottom: 0; }
.cu-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--who-blue);
}
.cu-detail-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--who-gray-700);
}
.cu-detail-text a { color: var(--who-blue); text-decoration: none; }
.cu-detail-text a:hover { text-decoration: underline; }
/* Editable contact details (from the "Contact: Details" custom block). */
.cu-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--who-gray-700);
}
.cu-body p { margin: 0 0 16px; }
.cu-body p:last-child { margin-bottom: 0; }
.cu-body a { color: var(--who-blue); text-decoration: none; }
.cu-body a:hover { text-decoration: underline; }
.cu-body strong { color: var(--who-blue-dark); }
/* Contact form column — hide node body text, keep only the embedded form */
.cu-form-col article div > div > h4,
.cu-form-col article div > div > p {
  display: none;
}
.cu-form-col {
  padding: 32px;
}
.cu-form-col label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--who-blue-dark);
  display: block;
  margin-bottom: 6px;
}
.cu-form-col .form-text,
.cu-form-col .form-email,
.cu-form-col .form-textarea,
.cu-form-col select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--who-gray-300);
  border-radius: var(--who-radius-sm);
  font-size: .9375rem;
  color: var(--who-gray-700);
  background: var(--who-white);
  margin-bottom: 16px;
}
.cu-form-col .form-text:focus,
.cu-form-col .form-email:focus,
.cu-form-col .form-textarea:focus,
.cu-form-col select:focus {
  outline: none;
  border-color: var(--who-blue);
}
.cu-form-col .form-textarea { min-height: 120px; resize: vertical; }
.cu-form-col .form-submit {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--who-navy);
  color: var(--who-white);
  border: none;
  border-radius: var(--who-radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
}
.cu-form-col .form-submit:hover { background: var(--who-blue-dark); }
.cu-form-col .form-wrapper { margin-bottom: 0; }
.cu-form-col .form-actions { margin-top: 8px; }
.cu-subtitle {
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--who-gray-600);
  margin: 0 0 20px;
}
/* Legacy body fallback */
.cu-info {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--who-gray-700);
}
.cu-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--who-blue-dark);
  margin: 0 0 12px;
}
.cu-info p { margin: 0 0 16px; }
.cu-info a { color: var(--who-blue); }
.cu-info a:hover { text-decoration: underline; }
@media (max-width: 767.98px) {
  .cu-layout { grid-template-columns: 1fr; }
  .cu-info-card { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Person (Director) — /about-us/leadership/[name]
   ═══════════════════════════════════════════════════════════════════════════ */
.pn-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
/* Photo with credits toggle (reuses .img-credits-* from news) */
.pn-photo-wrap {
  position: relative;
  line-height: 0;
}
.pn-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--who-radius-md);
  background-size: cover;
  background-position: center top;
  background-color: var(--who-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--who-gray-400);
}
/* Right column: name, role, bio */
.pn-content .pn-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--who-blue-dark);
  margin: 0 0 6px;
  line-height: 1.25;
}
.pn-content .pn-role {
  font-size: 1rem;
  color: var(--who-gray-600);
  margin: 0 0 24px;
  line-height: 1.5;
}
.pn-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--who-gray-700);
}
.pn-bio h2, .pn-bio h3, .pn-bio h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--who-blue-dark);
  margin: 24px 0 12px;
}
.pn-bio p { margin: 0 0 16px; }
.pn-bio a { color: var(--who-blue); }
.pn-bio a:hover { text-decoration: underline; }
.pn-bio ul, .pn-bio ol {
  padding-left: 20px;
  margin: 0 0 16px;
}
.pn-bio li { margin-bottom: 6px; }
/* Role as cluster link */
.pn-role a {
  color: var(--who-blue);
  text-decoration: none;
}
.pn-role a:hover { text-decoration: underline; }
@media (max-width: 767.98px) {
  .pn-profile { grid-template-columns: 1fr; }
  .pn-photo-wrap { max-width: 320px; }
  .pn-content .pn-name { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Leadership — /about-us/leadership
   ═══════════════════════════════════════════════════════════════════════════ */

/* Regional Director featured card */
.ld-rd-card {
  display: flex;
  border-radius: var(--who-radius-md);
  overflow: hidden;
  background: var(--who-white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease;
  max-width: 700px;
}
.ld-rd-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.ld-rd-card-img {
  width: 280px;
  min-height: 180px;
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
}
.ld-rd-card-body {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ld-rd-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--who-navy);
  margin: 0 0 4px;
}
.ld-rd-card-title {
  font-size: .9375rem;
  color: var(--who-gray-600);
  margin: 0 0 16px;
}
.ld-rd-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--who-blue);
}
@media (max-width: 575.98px) {
  .ld-rd-card { flex-direction: column; }
  .ld-rd-card-img { width: 100%; height: 200px; }
}

/* Leadership team grid */
.ld-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ld-person-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--who-white);
  border-radius: var(--who-radius-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.ld-person-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.ld-person-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--who-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--who-gray-500);
}
.ld-person-name {
  flex: 1;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--who-navy);
}
.ld-person-arrow {
  flex-shrink: 0;
  color: var(--who-gray-400);
}
@media (max-width: 991.98px) {
  .ld-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .ld-grid { grid-template-columns: 1fr; }
}

/* Directors portrait grid — 4 per row */
.ld-directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .ld-directors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
  .ld-directors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Clusters link grid — 3 per row, equal height, image left flush */
.ld-clusters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ld-cluster-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--who-gray-100);
  border-radius: var(--who-radius-sm);
  text-decoration: none;
  color: var(--who-blue-dark);
  overflow: hidden;
}
.ld-cluster-item:hover {
  background: var(--who-navy);
  color: var(--who-white);
}
.ld-cluster-img {
  flex-shrink: 0;
  width: 110px;
  background-size: cover;
  background-position: center center;
  background-color: var(--who-gray-200);
}
.ld-cluster-name {
  flex: 1;
  padding: 16px;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.35;
  align-self: flex-start;
}
.ld-cluster-item svg {
  flex-shrink: 0;
  margin: 16px 14px 0 0;
  align-self: flex-start;
}
@media (max-width: 991.98px) {
  .ld-clusters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .ld-clusters-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Organizational Structure — /about-us/organizational-structure
   ═══════════════════════════════════════════════════════════════════════════ */

.os-pretext {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--who-gray-700);
  margin-bottom: 32px;
}
.os-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.os-chart { text-align: center; }
.os-chart-img {
  max-width: 100%;
  border-radius: var(--who-radius-md);
}
.os-description {
  max-width: 800px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--who-gray-700);
}
.os-description p { margin: 0; }

