:where(a,
button):focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 4px;
}

.eyebrow {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero,
.articles-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-hero::before,
.articles-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(10, 25, 47, 1) 0%, rgba(10, 25, 47, 0.97) 42%, rgba(10, 25, 47, 0.68) 100%),
    image-set(url('evidence-table.avif') type('image/avif'), url('evidence-table.png') type('image/png'));
  background-position: center;
  background-size: cover;
}

.home-hero::after,
.articles-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 18, 32, 0.06), rgba(8, 18, 32, 0.42));
}

.home-hero {
  min-height: 720px;
  padding: 84px 0 76px;
}

.home-title {
  max-width: 840px;
  font-size: clamp(56px, 6.5vw, 96px);
}

.home-intro {
  max-width: 700px;
  margin-top: 30px;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
}

.link-groups {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid rgba(244, 240, 234, 0.38);
  border-bottom: 1px solid rgba(244, 240, 234, 0.38);
}

.link-group {
  padding: 24px 30px 8px;
}

.link-group:first-child {
  padding-left: 0;
}

.link-group + .link-group {
  border-left: 1px solid rgba(244, 240, 234, 0.2);
}

.link-group-title {
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plain-link {
  min-height: 76px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 17px 0;
  text-decoration: none;
  border-top: 1px solid rgba(244, 240, 234, 0.14);
}

.plain-link-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--brass);
  stroke-width: 1.8;
}

.plain-link-title {
  display: block;
  width: fit-content;
  color: var(--paper);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid transparent;
}

.plain-link-description {
  display: block;
  max-width: 410px;
  margin-top: 5px;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.45;
}

.plain-link:hover .plain-link-title,
.plain-link:focus-visible .plain-link-title { border-color: var(--brass); }

.articles-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.articles-title {
  font-size: clamp(64px, 10vw, 136px);
}

.articles-intro {
  max-width: 720px;
  margin-top: 30px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.article-index {
  min-height: 320px;
  padding: 72px 0 92px;
  background: var(--dark-navy);
}

.article-index-heading {
  color: var(--brass);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-empty {
  max-width: 820px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.article-empty-label {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-empty-copy {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  text-transform: uppercase;
}

@media (max-width: 860px) {.home-hero {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .link-groups {
    grid-template-columns: 1fr 1fr;
  }

  .link-group:first-child {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .link-group:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

  .home-hero::before,
.articles-hero::before {
    background-image:
      linear-gradient(180deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.96) 70%, rgba(10, 25, 47, 1) 100%),
      image-set(url('evidence-table.avif') type('image/avif'), url('evidence-table.png') type('image/png'));
    background-position: 70% center;
  }
}

@media (max-width: 640px) {.home-title { font-size: clamp(52px, 16vw, 76px); }

  .home-intro {
    margin-top: 26px;
    font-size: 18px;
  }

  .link-groups {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .link-group,
.link-group:first-child,
.link-group:nth-child(2) {
    grid-column: auto;
    padding: 22px 0 8px;
    border-left: 0;
  }

  .link-group + .link-group {
    border-top: 1px solid rgba(244, 240, 234, 0.2);
  }

  .articles-hero {
    min-height: 430px;
    padding: 62px 0;
  }

  .articles-title {
    font-size: 54px;
  }

  .article-index { padding: 54px 0 70px; }

  .article-empty {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Article index list and article pages */
.article-list { list-style: none; margin: 0; padding: 0; }
.article-list-item { padding: 28px 0; border-top: 1px solid var(--rule, rgba(255,255,255,0.14)); }
.article-list-item:last-child { border-bottom: 1px solid var(--rule, rgba(255,255,255,0.14)); }
.article-list-date { display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin-bottom: 8px; }
.article-list-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; text-decoration: none; color: inherit; }
.article-list-title:hover { text-decoration: underline; text-underline-offset: 4px; }
.article-list-description { margin: 10px 0 0; max-width: 62ch; opacity: 0.85; }
.article { padding: 64px 0 96px; }
.article-header { max-width: 760px; margin-bottom: 40px; }
.article-kicker { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; }
.article-kicker a { color: inherit; text-decoration: none; opacity: 0.7; }
.article-title { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; margin: 0 0 16px; }
.article-intro { font-size: 20px; line-height: 1.5; margin: 0 0 12px; max-width: 62ch; }
.article-date { font-size: 14px; opacity: 0.7; margin: 0; }
.article-body { max-width: 68ch; font-size: 18px; line-height: 1.65; }
.article-body h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.15; margin: 48px 0 16px; }
.article-body h3 { font-size: 20px; margin: 32px 0 12px; }
.article-body p, .article-body ul, .article-body ol { margin: 0 0 20px; }
.article-body a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { margin: 28px 0; padding-left: 20px; border-left: 3px solid currentColor; opacity: 0.9; }
.article-body img { max-width: 100%; height: auto; }
