@font-face {
  font-family: "FA Sans";
  src: url("/static/font/GT-America-Standard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FA Sans";
  src: url("/static/font/GT-America-Standard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "FA Serif";
  src: url("/static/font/CanelaDeck-Regular-Web.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #000;
  --ink: #111;
  --muted: #767676;
  --paper: #fff;
  --soft: #f7f7f7;
  --line: #e4e4e4;
  --line-dark: #262626;
  --red: #ec3535;
  --red-dark: #c52222;
  --green: #08744b;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "FA Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: #fff;
  border: 1px solid #111;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.wealth-header {
  background: var(--black);
  color: #fff;
  border-bottom: 4px solid var(--red);
}

.utility-row {
  border-bottom: 1px solid var(--line-dark);
}

.utility-inner,
.brand-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner {
  min-height: 36px;
  color: #a8a8a8;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.utility-copy,
.utility-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-actions a:hover,
.utility-actions a:focus-visible {
  color: #fff;
}

.brand-inner {
  min-height: 84px;
}

.brand-mark {
  display: block;
  border-left: 4px solid var(--red);
  padding-left: 18px;
}

.brand-mark img {
  width: auto;
  height: 48px;
}

.status-stack {
  display: grid;
  justify-items: end;
  gap: 7px;
  color: #9b9b9b;
  font-size: 0.76rem;
}

.status-pill {
  min-width: 104px;
  border: 1px solid rgba(236, 53, 53, 0.64);
  padding: 7px 12px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

.status-pill.is-ready {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.status-pill.is-error {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.overview-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 60px 0 56px;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr);
  gap: 56px;
  align-items: end;
}

.eyebrow,
.section-label,
.field-label {
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.title-panel h1 {
  margin-top: 14px;
  font-size: clamp(3rem, 5vw, 5.25rem);
  letter-spacing: -0.025em;
}

.lede {
  max-width: 660px;
  margin-top: 16px;
  color: #3f3f3f;
  font-size: 1.05rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #111;
  border-top: 4px solid var(--red);
  background: #fff;
}

.kpi-box {
  min-width: 0;
  min-height: 116px;
  padding: 20px 18px;
  border-right: 1px solid #111;
}

.kpi-box:last-child {
  border-right: 0;
}

.kpi-box span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.kpi-box strong {
  display: block;
  margin-top: 28px;
  font-family: "FA Serif", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  white-space: nowrap;
}

.leaders-band {
  padding: 58px 0 64px;
  border-bottom: 1px solid var(--line);
}

.section-heading,
.ranking-heading,
.movement-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.ranking-heading h2,
.movement-heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.section-heading > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.leader-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  min-height: 178px;
  padding: 28px 30px;
  border-right: 1px solid #111;
}

.leader-card:last-child {
  border-right: 0;
}

.leader-rank {
  color: var(--red);
  font-family: "FA Serif", Georgia, serif;
  font-size: 3.8rem;
  line-height: 0.8;
}

.leader-card h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
}

.leader-source {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
}

.leader-value-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
}

.leader-value-row strong {
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.controls-band {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.controls-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.6fr) repeat(6, minmax(120px, 0.72fr)) 48px;
  gap: 12px;
  align-items: end;
}

.controls-grid label {
  min-width: 0;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  color: #666;
  font-size: 0.62rem;
}

input,
select,
.square-button,
.pagination-actions button {
  min-height: 46px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  background: #fff;
  color: #111;
}

input,
select {
  width: 100%;
  padding: 0 12px;
}

input:focus,
select:focus,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.square-button {
  width: 48px;
  border-color: #111;
  background: #111;
  color: #fff;
  font-size: 1.3rem;
}

.movement-band {
  background: #050505;
  color: #fff;
  padding: 58px 0 64px;
}

.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.movement-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #404040;
}

.movement-heading .section-label {
  color: #a6a6a6;
}

.movement-heading h2 {
  font-size: 2.35rem;
}

.trend-key {
  font-size: 2.5rem;
}

.is-up,
.change-up {
  color: #57a97e;
}

.is-down,
.change-down {
  color: #ef6464;
}

.change-flat {
  color: #8b8b8b;
}

.movement-list {
  display: grid;
}

.movement-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid #2d2d2d;
}

.movement-rank {
  color: #777;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.45rem;
}

.movement-item strong {
  display: block;
  font-size: 0.96rem;
}

.movement-item small {
  display: block;
  margin-top: 4px;
  color: #8f8f8f;
}

.movement-value {
  text-align: right;
}

.movement-value span,
.movement-value small {
  display: block;
}

.ranking-band {
  padding: 64px 0 74px;
}

.ranking-heading {
  margin-bottom: 24px;
}

.ranking-heading #resultSummary {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.pagination-actions button:hover,
.pagination-actions button:focus-visible {
  background: #111;
  color: #fff;
}

.load-more-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.load-more-row > span {
  grid-column: 1;
  justify-self: start;
  color: var(--muted);
  font-size: 0.78rem;
}

.load-more-row button {
  grid-column: 2;
  justify-self: center;
  min-width: 170px;
  min-height: 48px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.load-more-row button:hover,
.load-more-row button:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.load-more-row button[hidden] {
  display: none;
}

.table-shell {
  overflow-x: auto;
  border-top: 4px solid var(--red);
}

.wealth-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  table-layout: fixed;
}

.wealth-table th {
  height: 46px;
  padding: 0 14px;
  background: #050505;
  color: #fff;
  font-size: 0.68rem;
  text-align: left;
  text-transform: uppercase;
}

.wealth-table th:nth-child(1) { width: 74px; }
.wealth-table th:nth-child(2) { width: 24%; }
.wealth-table th:nth-child(3) { width: 14%; }
.wealth-table th:nth-child(4) { width: 18%; }
.wealth-table th:nth-child(5) { width: 15%; }
.wealth-table th:nth-child(6) { width: 15%; }
.wealth-table th:nth-child(7) { width: 90px; }

.wealth-table th button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.wealth-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background-color 120ms ease;
}

.wealth-table tbody tr:hover,
.wealth-table tbody tr.is-selected {
  background: #f8f8f8;
}

.wealth-table td {
  height: 76px;
  padding: 12px 14px;
  vertical-align: middle;
}

.wealth-table td:first-child {
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.1rem;
}

.person-name {
  display: block;
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.05;
}

.person-detail,
.market-detail,
.industry-detail {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.worth-value {
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.15rem;
  white-space: nowrap;
}

.change-value {
  font-weight: 700;
  white-space: nowrap;
}

.change-subvalue {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
}

.trend-cell {
  text-align: center;
}

.trend-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 1.15rem;
}

.wealth-table .detail-row {
  background: #f8f8f8;
}

.wealth-table .detail-row td {
  height: auto;
  padding: 13px 14px 16px 88px;
  color: var(--muted);
  font-size: 0.72rem;
}

.wealth-table .detail-row span {
  display: inline-block;
  margin: 3px 22px 3px 0;
}

.empty-state {
  padding: 24px 0;
  color: #8f8f8f;
  font-size: 0.82rem;
}

.mobile-list {
  display: none;
}

.pagination-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
}

.pagination-row label,
.pagination-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination-row label span,
.pagination-actions span {
  color: var(--muted);
  font-size: 0.78rem;
}

.pagination-row select {
  width: 88px;
  min-height: 40px;
}

.pagination-actions button {
  min-height: 40px;
  padding: 0 16px;
}

.pagination-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.method-band {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.method-grid p {
  color: #555;
  font-size: 0.8rem;
}

.method-grid strong {
  margin-right: 8px;
  color: #111;
}

.wealth-footer {
  background: #050505;
  color: #aaa;
}

.footer-inner {
  min-height: 72px;
  font-size: 0.76rem;
}

@media (max-width: 1180px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .controls-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .search-field {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 32px, var(--max));
  }

  .utility-actions {
    display: none;
  }

  .brand-inner {
    min-height: 72px;
  }

  .brand-mark img {
    height: 38px;
  }

  .overview-band {
    padding: 42px 0;
  }

  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kpi-box:nth-child(2) {
    border-right: 0;
  }

  .kpi-box:nth-child(-n + 2) {
    border-bottom: 1px solid #111;
  }

  .leader-grid,
  .movement-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    border-right: 0;
    border-bottom: 1px solid #111;
  }

  .leader-card:last-child {
    border-bottom: 0;
  }

  .movement-grid {
    gap: 54px;
  }

  .controls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-field {
    grid-column: span 2;
  }

  .table-shell {
    display: none;
  }

  .mobile-list {
    display: grid;
    border-top: 4px solid var(--red);
  }

  .mobile-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-rank {
    color: var(--muted);
    font-family: "FA Serif", Georgia, serif;
    font-size: 1.25rem;
  }

  .mobile-card-top,
  .mobile-card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-card-top strong {
    font-family: "FA Serif", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.05;
  }

  .mobile-card-top span {
    font-family: "FA Serif", Georgia, serif;
    font-size: 1.12rem;
    white-space: nowrap;
  }

  .mobile-card-meta {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.72rem;
  }

  .mobile-card-bottom {
    align-items: center;
    margin-top: 13px;
  }

  .mobile-card-bottom small {
    color: var(--muted);
  }

  .ranking-heading {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .utility-inner {
    min-height: 32px;
  }

  .utility-copy span:first-child,
  .status-stack > span:last-child {
    display: none;
  }

  .brand-mark {
    padding-left: 12px;
  }

  .brand-mark img {
    height: 32px;
  }

  .status-pill {
    min-width: 88px;
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .title-panel h1 {
    font-size: 3rem;
  }

  .lede {
    font-size: 0.94rem;
  }

  .kpi-box {
    min-height: 98px;
    padding: 16px 12px;
  }

  .kpi-box strong {
    margin-top: 20px;
    font-size: 1.35rem;
  }

  .leaders-band,
  .movement-band,
  .ranking-band {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .section-heading,
  .ranking-heading {
    display: block;
  }

  .section-heading > span {
    display: block;
    margin-top: 12px;
  }

  .leader-card {
    padding: 24px 18px;
  }

  .leader-rank {
    font-size: 2.8rem;
  }

  .controls-band {
    position: static;
  }

  .controls-grid {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-column: auto;
  }

  .square-button {
    width: 100%;
  }

  .movement-item {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .pagination-row,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .pagination-actions {
    justify-content: space-between;
  }

  .pagination-actions button {
    flex: 1;
  }

  .footer-inner {
    justify-content: center;
    padding: 18px 0;
    gap: 6px;
  }
}

.wealth-header .utility-actions,
.wealth-header .utility-actions a {
  font-family: "FA Serif", Georgia, serif;
  font-weight: 400;
}

/* 2026-07-14 white authority header and touch-scroll ranking. */
.wealth-header {
  background: #fff;
  color: #111;
  border-bottom: 3px solid var(--red);
}

.wealth-header .utility-row,
.wealth-header .brand-row {
  border-color: #e3e3e3;
}

.wealth-header .utility-inner {
  color: #777;
}

.wealth-header .utility-actions a:hover,
.wealth-header .utility-actions a:focus-visible {
  color: var(--red-dark);
}

.wealth-header .brand-inner {
  position: relative;
  min-height: 86px;
  justify-content: flex-end;
}

.wealth-header .brand-mark {
  position: absolute;
  left: 50%;
  border-left: 0;
  padding-left: 0;
  transform: translateX(-50%);
}

.wealth-header .brand-mark img {
  width: auto;
  height: 58px;
  max-width: min(48vw, 430px);
}

.wealth-header .status-stack {
  color: #777;
}

.wealth-header .status-pill {
  border-color: var(--red);
  background: #fff;
  color: var(--red-dark);
}

.wealth-header .status-pill.is-ready {
  border-color: #111;
  background: #111;
  color: #fff;
}

.table-swipe-hint {
  display: none;
}

@media (max-width: 860px) {
  .wealth-header .brand-inner {
    min-height: 72px;
    justify-content: flex-end;
  }

  .wealth-header .brand-mark img {
    height: 42px;
    max-width: 58vw;
  }

  .table-shell {
    display: block;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: thin;
    scrollbar-color: var(--red) #ececec;
  }

  .table-shell::-webkit-scrollbar {
    height: 6px;
  }

  .table-shell::-webkit-scrollbar-thumb {
    background: var(--red);
  }

  .wealth-table {
    min-width: 920px;
  }

  .mobile-list {
    display: none;
  }

  .table-swipe-hint {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.68rem;
    text-align: right;
  }
}

@media (max-width: 560px) {
  .wealth-header .brand-inner {
    min-height: 64px;
  }

  .wealth-header .brand-mark {
    left: 50%;
    padding-left: 0;
  }

  .wealth-header .brand-mark img {
    height: 36px;
    max-width: 60vw;
  }

  .wealth-header .status-pill {
    min-width: 76px;
    padding-inline: 7px;
    font-size: 0.62rem;
  }
}

/* 2026-07-15 — portrait-led FigureAsia Wealth Index. */
.controls-band {
  position: relative;
  top: auto;
  z-index: 2;
  background: #fff;
  backdrop-filter: none;
}

.leader-grid {
  gap: clamp(20px, 2.3vw, 34px);
  border: 0;
  background: transparent;
}

.leader-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.leader-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #ededed;
}

.leader-portrait img,
.movement-portrait img,
.wealth-person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.88) contrast(1.025);
  transform: scale(1.001);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease;
}

.leader-portrait img.is-placeholder,
.movement-portrait img.is-placeholder,
.wealth-person-portrait img.is-placeholder {
  object-position: center;
  filter: none;
}

.leader-card.has-profile:hover img,
.leader-card.has-profile:focus-visible img,
.movement-item.has-profile:hover img,
.movement-item.has-profile:focus-visible img,
.wealth-person-card.has-profile:hover img,
.wealth-person-card.has-profile:focus-visible img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.035);
}

.leader-card.has-profile:focus-visible,
.movement-item.has-profile:focus-visible,
.wealth-person-card.has-profile:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.leader-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: "FA Serif", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.profile-cue {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.has-profile:hover .profile-cue,
.has-profile:focus-visible .profile-cue {
  background: var(--red);
}

.leader-card-body {
  display: flex;
  min-height: 180px;
  flex: 1;
  flex-direction: column;
  padding: 22px 2px 4px;
}

.leader-card h3 {
  font-size: clamp(1.85rem, 2.15vw, 2.55rem);
  transition: color 160ms ease;
}

.leader-card.has-profile:hover h3,
.leader-card.has-profile:focus-visible h3,
.wealth-person-card.has-profile:hover h3,
.wealth-person-card.has-profile:focus-visible h3 {
  color: var(--red-dark);
}

.leader-source {
  min-height: 2.4em;
  margin-top: 9px;
}

.leader-value-row {
  margin-top: auto;
  padding-top: 22px;
  border-top: 0;
}

.movement-list {
  display: grid;
  gap: 12px;
}

.movement-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  min-height: 98px;
  padding: 9px;
  border: 1px solid #2a2a2a;
  background: #090909;
  color: #fff;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.movement-item.has-profile:hover,
.movement-item.has-profile:focus-visible {
  border-color: #676767;
  background: #0e0e0e;
}

.movement-portrait {
  position: relative;
  width: 76px;
  height: 90px;
  margin: 0;
  overflow: hidden;
  background: #191919;
}

.movement-rank {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: "FA Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.movement-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.movement-copy > strong {
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.05;
}

.movement-copy > small {
  overflow: hidden;
  margin-top: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movement-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
  text-align: left;
}

.movement-value span,
.movement-value small {
  display: inline;
  margin: 0;
}

.wealth-person-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 26px;
  padding-top: 6px;
}

.wealth-person-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-top: 1px solid #111;
  color: #111;
  content-visibility: auto;
  contain-intrinsic-size: 620px;
  animation: wealth-card-enter 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wealth-card-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wealth-person-portrait {
  position: relative;
  aspect-ratio: 4 / 4.75;
  margin: 0;
  overflow: hidden;
  background: #efefef;
}

.wealth-rank {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 72px;
  padding: 9px 11px;
  background: var(--red);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.wealth-person-body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding-top: 17px;
}

.wealth-person-kicker {
  min-height: 2.2em;
  color: var(--red-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.wealth-person-card h3 {
  margin-top: 10px;
  font-size: clamp(1.72rem, 2.15vw, 2.35rem);
  letter-spacing: -0.018em;
  transition: color 160ms ease;
}

.wealth-person-source {
  min-height: 3.8em;
  margin-top: 10px;
  color: #727272;
  font-size: 0.78rem;
}

.wealth-person-source span,
.wealth-person-source strong {
  display: block;
}

.wealth-person-source strong {
  margin-top: 3px;
  color: #323232;
  font-weight: 400;
}

.wealth-person-values {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.wealth-person-values > strong {
  font-family: "FA Serif", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
}

.wealth-person-values > span {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.wealth-person-global {
  margin-top: 9px;
  color: #8b8b8b;
  font-size: 0.67rem;
}

.table-shell,
.table-swipe-hint,
.mobile-list {
  display: none !important;
}

@media (max-width: 1180px) {
  .wealth-person-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
    gap: 24px;
    border: 0;
  }

  .leader-portrait {
    aspect-ratio: 5 / 4;
  }

  .movement-grid {
    grid-template-columns: 1fr;
  }

  .wealth-person-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 18px;
  }
}

@media (max-width: 560px) {
  .leader-card {
    display: flex;
    padding: 0;
  }

  .leader-portrait {
    aspect-ratio: 4 / 3;
  }

  .leader-card-body {
    align-self: stretch;
    min-height: 166px;
    padding: 20px;
  }

  .wealth-person-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .wealth-person-body {
    min-height: 0;
  }

  .wealth-person-source {
    min-height: 0;
  }

  .wealth-person-values {
    margin-top: 22px;
  }

  .movement-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .movement-portrait {
    width: 72px;
  }

  .load-more-row {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    margin-top: 42px;
  }

  .load-more-row button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wealth-person-card {
    animation: none;
  }

  .leader-portrait img,
  .movement-portrait img,
  .wealth-person-portrait img {
    transition: none;
  }
}
