/* 06-components/_download.css */
/* ── c-download — one downloadable file, standing alone in running prose like a paragraph
   of its own: the filename as a large left-aligned link under a download caret, and a
   meta line beneath it carrying the size and the governing license. No frame, no
   columns, no table — it reads at the same left edge as the prose around it, one step
   larger so a reader scanning the page still sees where the files are. Shared by every
   file the account page offers (binaries, source archive, release materials) so they all
   look and behave the same. */
.c-download {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  margin-block: var(--space-xs);
}
.c-download__name {
  color: var(--text-bright);
  font-size: var(--text-lg);
  line-height: var(--lh-tight);
  word-break: break-all;
}
.c-download__name::before {
  content: "\2193\00a0";        /* ↓ + nbsp */
  color: var(--accent);
}
.c-download__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1ch;
  color: var(--text-dim);
  font-size: var(--text-sm);
  /* line the meta up under the filename rather than under the caret */
  padding-inline-start: 2ch;
}
.c-download__meta > * + *::before {
  content: "\00b7\00a0";        /* · + nbsp */
  color: var(--text-dim);
}
