:root {
  --paper: #fff;
  --ink: #0c1720;
  --muted: #5c666d;
  --green: #006b46;
  --green-dark: #004b32;
  --rule: #d7dcda;
  --rule-strong: #263039;
  --serif: Georgia, "Times New Roman", "Noto Serif", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans", Arial, sans-serif;
  --site-width: 1464px;
  --reading-width: 856px;
  --gutter: clamp(20px, 3.1vw, 52px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

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

.site-shell {
  width: min(var(--site-width), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  background: var(--paper);
}

.masthead {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 2px solid var(--rule-strong);
}

.wordmark {
  justify-self: start;
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.language-link.is-active::after,
.story-language__button.is-active::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
}

.global-language,
.article-language,
.story-language {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.global-language {
  justify-self: end;
}

.language-link,
.story-language__button {
  position: relative;
  min-width: 31px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font: 600 14px/1 var(--sans);
}

.language-link.is-disabled {
  color: #a2a9ad;
  cursor: not-allowed;
}

.home-page {
  padding-block: 30px 0;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 4vw, 66px);
  align-items: center;
  padding: 0 18px 28px;
  border-bottom: 1px solid var(--rule);
}

.lead-story__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf0ef;
}

.lead-story__media img,
.story-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.lead-story:hover .lead-story__media img,
.story-row:hover .story-row__media img {
  transform: scale(1.018);
}

.lead-story__content {
  position: relative;
  padding-top: 42px;
}

.lead-story .story-language {
  position: absolute;
  top: -2px;
  right: 0;
}

.lead-story__title {
  margin: 0;
  max-width: 690px;
  font-family: var(--serif);
  font-size: clamp(39px, 4vw, 66px);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.lead-story__title a,
.story-row__title a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.lead-story__title a:hover,
.story-row__title a:hover {
  text-decoration-color: var(--green);
}

.lead-story__lead {
  max-width: 620px;
  margin: 16px 0 12px;
  color: #3e484f;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}

.story-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-meta > * + *::before,
.article-taxonomy > * + *::before,
.article-byline > * + *::before {
  margin-inline: 12px;
  color: #929a9e;
  content: "|";
}

.story-source,
.article-taxonomy span:first-child {
  color: var(--green-dark);
  font-weight: 700;
}

.read-link,
.original-link,
.back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 700;
}

.read-link {
  margin-top: 20px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
}

.read-link svg,
.original-link svg,
.back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.story-list {
  padding-inline: 18px;
}

.load-more-row {
  display: flex;
  justify-content: center;
  padding: 30px 18px 0;
}

.load-more-button {
  min-width: 150px;
  min-height: 46px;
  border: 1px solid var(--green);
  background: var(--paper);
  color: var(--green);
  padding: 10px 24px;
  cursor: pointer;
  font: 700 14px/1 var(--sans);
}

.load-more-button:hover {
  background: var(--green);
  color: var(--paper);
}

.load-more-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.story-row {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  padding-block: 10px;
}

.story-row__media {
  height: 108px;
  overflow: hidden;
  background: #edf0ef;
}

.story-row__title {
  margin: 0;
  padding-right: 20px;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.story-row__lead {
  margin: 5px 0 5px;
  color: #475159;
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.story-language__button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.story-language__button:disabled {
  color: #a2a9ad;
  cursor: not-allowed;
}

.empty-state {
  min-height: 56vh;
  display: grid;
  place-content: center;
  text-align: center;
}

.empty-state h1 {
  max-width: 720px;
  margin: 0;
  font: 700 clamp(36px, 5vw, 66px)/1.04 var(--serif);
  letter-spacing: -0.04em;
}

.empty-state p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--rule);
}

.home-footer {
  margin-top: 0;
  border-top-color: var(--rule-strong);
}

.footer-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.article-page {
  width: min(var(--reading-width), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
  padding-top: 34px;
}

.article-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.back-link {
  min-height: 44px;
  font-size: 14px;
}

.article-taxonomy {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.article-header h1 {
  margin: 0;
  font: 700 clamp(43px, 5vw, 66px)/0.99 var(--serif);
  letter-spacing: -0.045em;
}

.article-lead {
  margin: 16px 0 0;
  color: #3f494f;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.42;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.article-hero {
  margin: 22px 0 28px;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  color: #7a8286;
  font-size: 12px;
  line-height: 1.35;
}

.article-body {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.67;
}

.article-body p {
  margin: 0 0 1.2em;
}

.article-body h2 {
  margin: 1.7em 0 0.5em;
  font-size: 1.45em;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.article-body blockquote {
  margin: 1.6em 0;
  border-left: 3px solid var(--green);
  padding-left: 24px;
  color: #28343a;
  font-size: 1.15em;
  font-style: italic;
}

.article-body ul {
  padding-left: 1.4em;
}

.article-body figure {
  margin: 1.8em 0;
}

.article-end {
  margin-top: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.article-end p {
  margin: 12px 0 0;
  color: #858c90;
  font-size: 13px;
}

@media (max-width: 920px) {
  .masthead {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .lead-story {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 0;
  }

  .lead-story__content {
    padding: 42px 4px 0;
  }

  .story-list {
    padding-inline: 0;
  }

  .load-more-row {
    padding-inline: 0;
  }

  .story-row {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 20px;
    padding-block: 14px;
  }

  .story-row__media {
    height: 112px;
  }

  .story-row .story-language {
    grid-column: 2;
    justify-self: start;
    margin-top: -8px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 16px;
  }

  .masthead {
    min-height: 94px;
    gap: 12px;
  }

  .wordmark {
    max-width: 240px;
    font-size: 27px;
    line-height: 0.96;
  }

  .global-language {
    gap: 5px;
  }

  .language-link,
  .story-language__button {
    min-width: 28px;
    font-size: 13px;
  }

  .home-page {
    padding-top: 0;
  }

  .lead-story {
    gap: 0;
    padding-bottom: 18px;
  }

  .lead-story__content {
    padding: 50px 4px 0;
  }

  .lead-story__title {
    font-size: clamp(35px, 10.2vw, 47px);
    line-height: 1;
  }

  .lead-story__lead {
    font-size: 16px;
  }

  .story-row {
    min-height: 0;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-block: 12px;
  }

  .story-row__media {
    height: 94px;
  }

  .story-row__title {
    padding-right: 0;
    font-size: 19px;
    line-height: 1.08;
  }

  .story-row__lead {
    margin-top: 5px;
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .story-row .story-meta {
    font-size: 12px;
  }

  .story-row .story-language {
    grid-column: 1 / -1;
    margin-top: -5px;
  }

  .footer-row {
    min-height: 82px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .article-page {
    padding-top: 16px;
  }

  .article-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .article-header h1 {
    font-size: clamp(39px, 11vw, 51px);
  }

  .article-lead {
    font-size: 18px;
  }

  .article-hero {
    margin-inline: calc(-1 * var(--gutter));
  }

  .article-hero figcaption {
    padding-inline: var(--gutter);
  }

  .article-body {
    font-size: 18px;
    line-height: 1.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lead-story__media img,
  .story-row__media img {
    transition: none;
  }
}
