:root {
  color-scheme: light;
  --page: #f4f1eb;
  --paper: #fffefb;
  --ink: #1b1d1f;
  --muted: #666b6f;
  --line: #d8d3ca;
  --accent: #ff0000;
  --link: #155f68;
  --measure: 52.5rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  font-size: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.citation {
  margin-left: 0.12em;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76em;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 4.6rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal {
  justify-self: start;
  padding: 0.45rem 0;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0.62;
}

.legal:hover {
  opacity: 0.9;
}

.language {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.45rem;
}

.language img {
  display: block;
  width: 1.35rem;
  height: auto;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.brand {
  display: block;
  grid-column: 2;
  width: min(13rem, 44vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

main {
  padding: clamp(2.5rem, 7vw, 5.5rem) 1.25rem clamp(4rem, 8vw, 7rem);
}

article {
  width: min(100%, var(--measure));
  margin: 0 auto;
}

.article-header {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.byline {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

h1 {
  max-width: var(--measure);
  margin: 0 0 1.15rem;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.16;
  text-wrap: balance;
}

.dek {
  max-width: 38rem;
  margin: 0 0 1.5rem;
  color: #44484b;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.15rem, 3vw, 1.42rem);
  line-height: 1.45;
}

.article-body {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2.2vw, 1.18rem);
  line-height: 1.72;
  hyphens: auto;
}

.article-body p {
  margin: 0;
}

.article-body em {
  color: var(--accent);
}

.article-body > p + p {
  margin-top: 1.2em;
}

.incident-summary {
  margin-bottom: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--accent);
}

.incident-summary h2 {
  margin: 0 0 1.2rem;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.25;
}

.incident-summary p + p {
  margin-top: 1.2em;
}

.article-body .lead {
  margin-bottom: 1.8em;
}

.turn {
  width: 3rem;
  margin: 2.8rem auto;
  border: 0;
  border-top: 1px solid var(--line);
}

blockquote {
  margin: 2.3rem 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 2px solid var(--accent);
  font-size: 1.12em;
  font-weight: 700;
  line-height: 1.58;
}

blockquote p {
  text-indent: 0;
}

.questions {
  margin: 1.3rem 0 2rem;
  padding-left: 1.35rem;
}

.questions li + li {
  margin-top: 0.42rem;
}

.update {
  margin: 2.5rem 0;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.96em;
}

.update p {
  text-indent: 0;
}

.sources {
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.sources h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.sources ol {
  margin: 0;
  padding-left: 1.5rem;
}

.sources li + li {
  margin-top: 0.65rem;
}

.sources a {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 1.5rem 1.25rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-header,
.article-header,
.sources,
.site-footer {
  border-color: var(--accent);
}

.turn {
  border-top-color: var(--accent);
}

@media (min-width: 42rem) {
  .title-subject {
    white-space: nowrap;
  }

  html[lang="en"] h1 {
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    white-space: nowrap;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page: #151718;
    --paper: #1b1e20;
    --ink: #f0eee8;
    --muted: #aaaead;
    --line: #35393b;
    --accent: #ff0000;
    --link: #77cbd2;
  }

  .brand img {
    filter: invert(1);
  }

  .dek {
    color: #c9ccca;
  }
}

@media print {
  :root {
    --page: #fff;
    --paper: #fff;
    --ink: #000;
  }

  .site-header,
  .site-footer {
    display: none;
  }

  main {
    padding: 0;
  }

  a {
    color: inherit;
  }
}
