:root {
  --ink: #101b18;
  --ink-2: #172a24;
  --forest: #0b3027;
  --paper: #f4f0df;
  --paper-2: #e9e0c5;
  --acid: #c7df62;
  --gold: #d4a55f;
  --rust: #ad5e3c;
  --mist: #b8c7bf;
  --white: #fffdf5;
  --shadow: 0 20px 60px rgb(4 19 16 / 16%);
  --rule: rgb(16 27 24 / 18%);
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 4%, rgb(199 223 98 / 14%), transparent 30rem),
    linear-gradient(180deg, #f8f4e7, var(--paper));
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .35;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0 39px, rgb(16 27 24 / 2.5%) 40px);
}

a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--forest); }
img, svg { max-width: 100%; }
button, input, select { font: inherit; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--forest);
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--paper);
  background: rgb(11 48 39 / 96%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  backdrop-filter: blur(15px);
}

.nav-shell {
  width: min(1180px, calc(100% - 2rem));
  min-height: 74px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  transform: rotate(45deg);
  box-shadow: inset 0 0 0 4px var(--forest);
}
.brand-mark span { transform: rotate(-45deg); font: 700 1rem var(--serif); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font: 700 1.07rem var(--serif); letter-spacing: .01em; }
.brand-copy small { margin-top: .25rem; color: var(--mist); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }

.nav-toggle {
  display: none;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  padding: .45rem .8rem;
}

.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  padding: .55rem .72rem;
  color: #dce5de;
  font-size: .86rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 999px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); background: var(--acid); }

.verification-bar {
  color: var(--ink);
  background: var(--acid);
  border-bottom: 1px solid rgb(16 27 24 / 22%);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.verification-bar .shell { padding-block: .45rem; display: flex; justify-content: space-between; gap: 1rem; }

.masthead-banner {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgb(199 223 98 / 12%) 1px, transparent 1px) 0 0 / 40px 100%,
    linear-gradient(120deg, var(--ink), var(--forest) 62%, #294e38);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}
.masthead-banner::after {
  content: "SOURCE / DATE / STATUS";
  position: absolute;
  right: -1rem;
  bottom: -1.25rem;
  color: rgb(244 240 223 / 9%);
  font: 850 clamp(2.3rem, 6vw, 5.4rem)/1 var(--sans);
  letter-spacing: -.05em;
  white-space: nowrap;
}
.masthead-banner .shell {
  position: relative;
  z-index: 1;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.masthead-banner p { margin: 0; }
.masthead-kicker {
  color: var(--acid);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.masthead-title { font: 600 clamp(1.65rem, 3vw, 2.6rem)/1 var(--serif); }
.masthead-code {
  color: var(--mist);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.shell { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 2rem)); margin-inline: auto; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  border-bottom: 1px solid var(--ink);
}

.hero::after {
  content: "VERIFIED / DATED / SOURCED";
  position: absolute;
  right: -2rem;
  bottom: 2.25rem;
  color: rgb(244 240 223 / 8%);
  font: 800 clamp(2.5rem, 8vw, 8rem) var(--sans);
  letter-spacing: -.06em;
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid {
  min-height: 600px;
  padding-block: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--acid);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font: 500 clamp(3.4rem, 8vw, 7.4rem)/.88 var(--serif);
  letter-spacing: -.065em;
}

.hero h1 em { color: var(--acid); font-style: italic; }
.hero .lede { max-width: 55ch; margin: 1.75rem 0 0; color: #d9e5df; font-size: clamp(1rem, 2vw, 1.2rem); }

.hero-note {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 1.4rem;
  color: var(--ink);
  background: var(--paper);
  border-top: 7px solid var(--acid);
  box-shadow: var(--shadow);
}
.hero-note .date { color: #52625c; font-size: .78rem; font-weight: 750; text-transform: uppercase; }
.hero-note h2 { margin: .4rem 0 .7rem; font: 600 1.55rem/1.08 var(--serif); }
.hero-note p { margin: 0; font-size: .9rem; }

.button-row { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .7rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button.light { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button.light:hover { background: var(--white); border-color: var(--white); }
.button.ghost { color: inherit; background: transparent; border-color: currentColor; }
.button.small { min-height: 38px; padding: .52rem .78rem; font-size: .78rem; }

.snapshot { margin-top: -1px; color: var(--paper); background: var(--ink); }
.snapshot-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.45rem; border-right: 1px solid rgb(255 255 255 / 14%); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--acid); font: 600 1.45rem var(--serif); }
.stat span { color: var(--mist); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

main section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-head { margin-bottom: 2rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.section-head h2 { max-width: 13ch; margin: 0; font: 500 clamp(2.2rem, 5vw, 4.2rem)/.98 var(--serif); letter-spacing: -.045em; }
.section-head p { max-width: 48ch; margin: 0; color: #52625c; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.card {
  position: relative;
  padding: 1.35rem;
  background: rgb(255 253 245 / 72%);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: 0 8px 35px rgb(16 27 24 / 5%);
}
.card:hover { border-color: rgb(11 48 39 / 42%); }
.card h3 { margin: .5rem 0 .65rem; font: 600 1.35rem/1.12 var(--serif); }
.card p { margin: 0; color: #45564f; font-size: .92rem; }
.card footer { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card time { color: #66766f; font-size: .76rem; font-weight: 750; text-transform: uppercase; }
.source-link { font-size: .78rem; font-weight: 750; }

.status {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: fit-content;
  padding: .25rem .52rem;
  color: var(--forest);
  background: rgb(199 223 98 / 34%);
  border: 1px solid rgb(11 48 39 / 16%);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.status::before { content: ""; width: 7px; height: 7px; background: #638120; border-radius: 50%; }
.status.corroborated { color: #714d08; background: rgb(212 165 95 / 25%); }
.status.corroborated::before { background: #aa710e; }
.status.unconfirmed,
.status.superseded { color: #713820; background: rgb(173 94 60 / 16%); }
.status.unconfirmed::before,
.status.superseded::before { background: var(--rust); }

.dark-section { color: var(--paper); background: var(--ink); }
.dark-section .section-head p { color: var(--mist); }
.dark-section .card { color: var(--paper); background: var(--ink-2); border-color: rgb(255 255 255 / 14%); }
.dark-section .card p { color: #c5d1cb; }
.dark-section .card footer { border-color: rgb(255 255 255 / 13%); }
.dark-section a:hover { color: var(--acid); }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.trust-item { padding: 1.6rem; background: var(--paper); }
.trust-item strong { display: block; margin-bottom: .5rem; font: 600 1.2rem var(--serif); }
.trust-item p { margin: 0; color: #52625c; font-size: .88rem; }

.commercial-band {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--forest), #153e34 70%, #294e38);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.commercial-band-inner { padding: clamp(1.5rem, 5vw, 3.2rem); display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: center; }
.commercial-band h2 { margin: 0; font: 500 clamp(2rem, 5vw, 4rem)/1 var(--serif); }
.commercial-band p { color: #d8e3de; }
.commercial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.mini-offer { min-height: 165px; padding: 1rem; color: var(--ink); background: var(--paper); border-radius: 14px; display: flex; flex-direction: column; justify-content: space-between; }
.mini-offer small { color: #65736d; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.mini-offer strong { font: 600 1.12rem/1.1 var(--serif); }

.page-hero { color: var(--paper); background: var(--forest); border-bottom: 1px solid var(--ink); }
.page-hero .shell { min-height: 420px; padding-block: clamp(4rem, 8vw, 6.5rem); display: flex; flex-direction: column; justify-content: end; }
.page-hero h1 { max-width: 14ch; font-size: clamp(3.2rem, 7vw, 6rem); }
.page-hero p:last-child { max-width: 60ch; margin: 1.2rem 0 0; color: #cfddd6; font-size: 1.08rem; }

.filter-bar {
  margin-bottom: 1.5rem;
  padding: .8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
}
.filter-bar label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.filter-bar input,
.filter-bar select {
  min-height: 42px;
  padding: .55rem .75rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.filter-bar input { flex: 1 1 260px; }

.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
th, td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { color: var(--paper); background: var(--forest); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgb(199 223 98 / 10%); }

.cast-profile-intro { margin: clamp(3rem, 7vw, 6rem) 0 2rem; }
.cast-profile-intro h2 { max-width: 15ch; margin: 0; font: 500 clamp(2.4rem, 5vw, 4.5rem)/.98 var(--serif); letter-spacing: -.045em; }
.cast-profile-intro > p:last-child { max-width: 70ch; color: #52625c; }
.cast-profiles { display: grid; gap: 1.2rem; }
.cast-profile { overflow: hidden; background: rgb(255 253 245 / 78%); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: 0 8px 35px rgb(16 27 24 / 5%); }
.cast-profile-head { padding: .75rem 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--ink); color: var(--paper); }
.cast-profile-head p { margin: 0; color: var(--mist); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.profile-pair { display: grid; grid-template-columns: 1fr 1fr; }
.profile-person { min-width: 0; padding: 1rem; display: grid; grid-template-columns: minmax(120px, 180px) 1fr; gap: 1.2rem; align-items: start; }
.profile-person + .profile-person { border-left: 1px solid var(--rule); }
.atlas-portrait { width: 100%; aspect-ratio: 1; background-repeat: no-repeat; background-size: 600% 600%; background-position: var(--portrait-x) var(--portrait-y); border-radius: 12px; box-shadow: inset 0 0 0 1px rgb(16 27 24 / 20%); }
.character-portrait { background-image: url("portraits/character-atlas.png"); }
.actor-portrait { background-image: url("portraits/actor-atlas.png"); }
.profile-label { margin: 0 0 .25rem !important; color: var(--forest) !important; font-size: .68rem !important; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.profile-person h2 { margin: 0 0 .65rem; font: 600 clamp(1.45rem, 3vw, 2.1rem)/1.05 var(--serif); }
.profile-person p:last-child { margin: 0; color: #45564f; font-size: .9rem; }

.location-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 1rem; align-items: start; }
.map-panel { position: sticky; top: 95px; padding: 1.2rem; color: var(--paper); background: var(--ink); border-radius: var(--radius); }
.map-panel h2 { margin: 0 0 .2rem; font: 600 1.4rem var(--serif); }
.map-panel p { margin: 0 0 1rem; color: var(--mist); font-size: .82rem; }
.map-svg { width: 100%; min-height: 460px; background: radial-gradient(circle at 50% 50%, #294e42, #111f1b); border-radius: 12px; }
.map-svg .land { fill: #e9e0c5; opacity: .92; }
.map-svg .marker { fill: var(--acid); stroke: var(--ink); stroke-width: 2; cursor: pointer; }
.map-svg .marker:hover,
.map-svg a:focus-visible .marker { fill: var(--gold); r: 7; }
.map-svg text { fill: var(--paper); font: 700 5px var(--sans); pointer-events: none; }
.location-list { display: grid; gap: .8rem; }
.location-card { scroll-margin-top: 105px; }
.location-meta { margin: .7rem 0; display: flex; flex-wrap: wrap; gap: .4rem .8rem; color: #61716a; font-size: .78rem; }
.safety-note { margin-top: .9rem !important; padding: .8rem; color: #493a12 !important; background: #f0e6ba; border-left: 4px solid var(--gold); border-radius: 6px; }

.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: .7rem; bottom: .7rem; left: 8.5rem; width: 1px; background: var(--rule); }
.timeline li { position: relative; display: grid; grid-template-columns: 7rem 1fr; gap: 2.5rem; padding-bottom: 2rem; }
.timeline time { color: var(--forest); font-size: .78rem; font-weight: 850; text-align: right; text-transform: uppercase; }
.timeline li::after { content: ""; position: absolute; top: .35rem; left: calc(8.5rem - 6px); width: 11px; height: 11px; background: var(--acid); border: 2px solid var(--forest); border-radius: 50%; }
.timeline h2 { margin: -.15rem 0 .35rem; font: 600 1.3rem var(--serif); }
.timeline p { margin: 0; color: #52625c; }

.article { font-family: var(--serif); font-size: 1.05rem; }
.article h2 { margin: 2.3rem 0 .7rem; font: 600 2rem/1.05 var(--serif); }
.article p, .article li { max-width: 72ch; }
.article .callout { margin: 1.8rem 0; padding: 1.2rem; font-family: var(--sans); font-size: .9rem; background: #edf0d7; border: 1px solid rgb(11 48 39 / 16%); border-radius: 12px; }

.newsletter {
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--paper);
  background: var(--forest);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.newsletter h2 { margin: 0; font: 600 clamp(2rem, 4vw, 3.4rem)/1 var(--serif); }
.newsletter p { color: #d3ded8; }
.newsletter form { display: flex; gap: .5rem; }
.newsletter input { flex: 1; min-height: 46px; padding: .7rem .8rem; border: 0; border-radius: 999px; }
.form-message { min-height: 1.4rem; margin: .55rem 0 0; color: var(--acid) !important; font-size: .8rem; }

.site-footer { padding-block: 3rem 1.3rem; color: #cfddd6; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.site-footer h2, .site-footer h3 { color: var(--paper); font-family: var(--serif); }
.site-footer p { max-width: 47ch; font-size: .83rem; }
.footer-links { display: grid; align-content: start; gap: .4rem; }
.footer-links a { width: fit-content; color: #cfddd6; font-size: .84rem; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgb(255 255 255 / 12%); display: flex; justify-content: space-between; gap: 1rem; color: #91a39a; font-size: .73rem; }

.dark-section .status {
  color: var(--ink);
  background: var(--acid);
  border-color: transparent;
}
.dark-section .status.corroborated { color: var(--ink); background: var(--gold); }
.dark-section .status.unconfirmed,
.dark-section .status.superseded { color: var(--ink); background: #e8bca8; }
.mini-offer small { color: #52625c; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.empty { padding: 2rem; text-align: center; color: #66766f; background: var(--white); border: 1px dashed var(--rule); border-radius: var(--radius); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--forest);
    border-top: 1px solid rgb(255 255 255 / 12%);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero-grid, .commercial-band-inner, .newsletter, .location-layout { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; align-items: start; }
  .hero-note { max-width: 520px; }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgb(255 255 255 / 14%); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .commercial-cards { grid-template-columns: 1fr; }
  .mini-offer { min-height: 125px; }
  .map-panel { position: static; }
  .map-svg { min-height: 360px; }
  .profile-pair { grid-template-columns: 1fr; }
  .profile-person + .profile-person { border-left: 0; border-top: 1px solid var(--rule); }
}

@media (max-width: 620px) {
  .shell, .narrow, .nav-shell { width: min(100% - 1.25rem, 1180px); }
  .brand-copy small { display: none; }
  .verification-bar .shell { display: block; }
  .verification-bar span:last-child { display: none; }
  .masthead-banner, .masthead-banner .shell { min-height: 90px; }
  .masthead-code { display: none; }
  .profile-person { grid-template-columns: 105px 1fr; gap: .8rem; }
  .hero-grid { padding-block: 3.5rem; }
  .hero h1, .page-hero h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .hero::after { display: none; }
  .snapshot-grid, .grid-3, .grid-2, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 14%); }
  .stat:last-child { border-bottom: 0; }
  .section-head { display: block; }
  .section-head p { margin-top: .8rem; }
  .page-hero .shell { min-height: 350px; }
  .timeline::before { left: .4rem; }
  .timeline li { grid-template-columns: 1fr; gap: .4rem; padding-left: 1.7rem; }
  .timeline time { text-align: left; }
  .timeline li::after { left: 0; }
  .newsletter form { display: grid; }
  .footer-bottom { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .verification-bar, .button-row, .newsletter, .site-footer { display: none !important; }
  body { background: white; color: black; }
  .card, .table-wrap { box-shadow: none; break-inside: avoid; }
}
