/* ==========================================================================
   /press -- deliberately plain. Reviewers scan for facts, files and an
   address; nothing here should slow that down.
   ========================================================================== */

/* ---------- #top ---------- */

.press-top {
  padding-block: var(--section-y);
  background: var(--bg-0);
}

.press-top__inner {
  display: grid;
  gap: var(--space-5);
}

.press-top__title {
  margin-top: var(--space-4);
  font-size: var(--fs-hero);
  line-height: var(--lh-hero);
}

.press-top__lead {
  max-width: 38ch;
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--muted);
}

@media (min-width: 1024px) {
  .press-top__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: var(--space-8);
  }
}

/* ---------- #facts ---------- */

.press-facts {
  display: grid;
  gap: var(--space-7);
}

.press-facts__blurb {
  max-width: 46ch;
  margin-top: var(--space-5);
  font-size: var(--fs-body-l);
  line-height: var(--lh-body-l);
  color: var(--muted);
}

@media (min-width: 1024px) {
  .press-facts {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-9);
  }
}

/* A definition list, so the facts are machine-readable as pairs rather than
   a table faked out of divs. */
.factsheet__row {
  display: grid;
  gap: var(--space-1);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.factsheet__row:first-child { border-top: 1px solid var(--line); }

.factsheet dt {
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
}

.factsheet dd {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

@media (min-width: 560px) {
  .factsheet__row {
    grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
    gap: var(--space-5);
    align-items: baseline;
  }
}

/* ---------- #downloads ---------- */

.downloads { margin-top: var(--space-6); }

.downloads__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-5);
  border-top: 1px solid var(--line);
}

.downloads__row:last-child { border-bottom: 1px solid var(--line); }

.downloads__detail { max-width: 52ch; }

.downloads__name {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  line-height: 1;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.downloads__meta {
  margin-top: var(--space-2);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent-text);
}

.downloads__blurb {
  margin-top: var(--space-2);
  font-size: var(--fs-body-s);
  line-height: var(--lh-body-s);
  color: var(--muted);
}

/* Shown instead of a Download button while the file does not exist. A dead
   button would waste a reviewer's click; this gives them a real next step. */
.downloads__pending {
  font-size: var(--fs-body-s);
  color: var(--muted);
}

.downloads__pending a {
  /* Inline in running text, but still needs a real hit area (doc 05). */
  display: inline-block;
  padding-block: 5px;
  color: var(--text);
  text-decoration: underline;
}

/* ---------- #contact ---------- */

.press-contact__email {
  margin-top: var(--space-5);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.press-contact__email a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: .12em;
}

.press-contact__note {
  max-width: 52ch;
  margin-top: var(--space-5);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--muted);
}
