@font-face {
  font-family: Newsreader;
  src: url("/assets/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("/assets/newsreader-italic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/instrument-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/instrument-sans-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --ink: #000;
  --text: #232220;
  --muted: #6a675f;
  --rule: #d9d6cc;
  --rule-light: #ebe8e0;
  --tint: #f3f1ea;
  --red: #b8322a;
  --qb: #a8680a;
  --rb: #1c8a5a;
  --wr: #4a5fd8;
  --te: #bb2f7c;
  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  background: var(--paper);
}
body {
  margin: 0;
  color: var(--text);
  font: 15px / 1.5 var(--sans);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--red);
}
p a,
.prose a,
.intro a,
.method a,
.record a,
.fine a,
.chart-table a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
.hit:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  text-wrap: balance;
}
h1 {
  font-size: clamp(32px, 4.4vw, 48px);
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 21px;
}
p {
  margin: 0 0 14px;
}
strong {
  font-weight: 600;
  color: var(--ink);
}
small,
.meta {
  font-size: 13px;
  color: var(--muted);
}
code {
  font:
    12px / 1.5 ui-monospace,
    Menlo,
    monospace;
  word-break: break-all;
}
hr {
  border: 0;
  border-top: 1px solid var(--rule-light);
  margin: 18px 0;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.preview {
  font-size: 13px;
  background: #1f1e1b;
  color: #f3f1ea;
  text-align: center;
  padding: 7px 15px;
}

/* Masthead */
.masthead {
  text-align: center;
  padding: 30px 0 0;
}
.brand {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 66px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover {
  color: var(--ink);
}
.dateline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.dateline > span:first-child {
  text-align: left;
}
.edition {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.dateline nav {
  display: flex;
  gap: 26px;
}
.dateline nav a {
  font-weight: 600;
  color: var(--ink);
  padding: 2px 0;
  border-bottom: 2px solid transparent;
}
.dateline nav a[aria-current="page"] {
  border-color: var(--red);
}
main {
  display: block;
}

/* Lead: story beside the first chart */
.lead {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 56px;
  padding: 44px 0 40px;
  border-bottom: 1px solid var(--ink);
}
.kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 12px;
}
.story h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.06;
  margin-bottom: 18px;
}
.story h1 a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.dek {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--text);
  max-width: 34em;
  text-wrap: pretty;
}
.byline {
  font-size: 14px;
  color: var(--muted);
  max-width: 44em;
}
.story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}
.story-links a {
  font-weight: 600;
  color: var(--red);
}
.story-links a + a {
  color: var(--muted);
}

/* Charts */
.chart {
  margin: 0;
  min-width: 0;
}
.chart h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.chart figcaption p {
  font-size: 14px;
  color: var(--muted);
  max-width: 62em;
  text-wrap: pretty;
}
.chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.chart svg.narrow {
  display: none;
}
.show-all {
  display: none;
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12.5px;
  color: var(--text);
  margin: 6px 0 12px;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.key-dot {
  background: var(--muted);
}
.key-bar {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: #cfccc2;
}
.key-tick {
  width: 2px;
  height: 12px;
  border-radius: 0;
  background: var(--ink);
}
.hit {
  cursor: default;
  outline-offset: -2px;
}
.tip {
  position: fixed;
  z-index: 10;
  max-width: 280px;
  padding: 8px 11px;
  background: #1f1e1b;
  color: #f3f1ea;
  font-size: 12.5px;
  line-height: 1.45;
  border-radius: 4px;
  pointer-events: none;
}
.chart-table {
  margin-top: 8px;
  font-size: 13px;
}
.chart-table summary {
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
}
.chart-table table {
  margin-top: 10px;
}
.analysis {
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
}

/* The file */
.file {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--rule);
}
.sectionbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.sectionbar h2 {
  font-size: 30px;
  margin: 0;
}
.search {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 260px;
}
.search label {
  font-size: 12.5px;
  color: var(--muted);
}
.search input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 6px 0;
  font-size: 15px;
  color: var(--ink);
}
.search input::placeholder {
  color: #9a978e;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.filters button {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.filters button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.file-summary {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  max-width: 60em;
  margin-bottom: 8px;
}
.briefs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 40px;
}
.brief {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0 20px;
  border-top: 1px solid var(--rule);
  color: var(--text);
}
.brief:hover {
  color: var(--text);
}
.brief:hover p {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.brief p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.brief-meta {
  font-size: 12.5px;
  color: var(--muted);
}
.identity {
  display: flex;
  align-items: center;
  gap: 10px;
}
.identity strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}
.identity .meta {
  display: block;
  font-size: 12.5px;
}
.avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.avatar.QB {
  color: var(--qb);
}
.avatar.RB {
  color: var(--rb);
}
.avatar.WR {
  color: var(--wr);
}
.avatar.TE {
  color: var(--te);
}
.empty {
  padding: 24px 0;
  color: var(--muted);
}

/* The record */
.record {
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--ink);
  max-width: 62em;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
  margin: 8px 0 20px;
}
.stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--muted);
}
.figure {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.record p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

/* Signup and footer */
.signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}
.signup h2 {
  font-size: 28px;
}
.signup > div > p {
  font-family: var(--serif);
  font-size: 17px;
}
.fine {
  font-size: 12.5px;
  color: var(--muted);
}
.signup label {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fields input {
  flex: 1 1 220px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}
.fields button {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
}
.form-message {
  min-height: 1.4em;
  font-size: 13px;
  margin: 8px 0;
}
.sitefooter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding: 22px 0 40px;
  font-size: 13px;
  color: var(--muted);
}
.sitefooter a {
  margin-left: 22px;
  color: var(--text);
}

/* Inner pages */
.page {
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--rule);
}
.page .kicker {
  color: var(--muted);
}
.intro {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  max-width: 40em;
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.profile-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.profile-head .avatar {
  width: 56px;
  height: 56px;
  font-size: 18px;
}
.profile-head h1 {
  margin: 2px 0;
}
.caution {
  font-size: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: var(--tint);
  margin-bottom: 22px;
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 56px;
  align-items: start;
}
.research .lead {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink);
  padding: 8px 0 4px;
  border: 0;
}
.prose {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  max-width: 38em;
}
.read-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin: 18px 0 4px;
}
.cite {
  font-size: 11px;
  font-weight: 600;
  vertical-align: super;
  margin-left: 3px;
  color: var(--red);
}
.watch {
  margin: 22px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--ink);
  background: var(--tint);
}
.watch strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.watch p {
  font-family: var(--serif);
  font-size: 17px;
  margin: 0;
}
.sources {
  margin-top: 26px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.sources h3 {
  font-size: 18px;
}
.source {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 14px;
  line-height: 1.5;
}
.source > span:first-child {
  font-weight: 600;
}
.source .meta {
  display: block;
  margin-top: 3px;
}
.forecast {
  padding: 22px 0 0;
  border-top: 2px solid var(--ink);
}
.forecast h2 {
  font-size: 22px;
}
.forecast a.meta {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.number {
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 8px;
}
.number small {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}
.range {
  font-size: 22px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.range-label {
  font-size: 13px;
  color: var(--muted);
  margin: 2px 0 8px;
}
.note {
  font-size: 14px;
  color: var(--text);
}
.tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 6px;
}
.receipt {
  padding: 20px 22px;
  margin: 8px 0 32px;
  border: 1px solid var(--rule);
  background: var(--tint);
  max-width: 52em;
}
.download {
  display: block;
  font-weight: 600;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.table-wrap {
  overflow-x: auto;
  margin-bottom: 18px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
th {
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid var(--ink);
  vertical-align: bottom;
}
th span {
  display: block;
  font-weight: 400;
}
td {
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--rule-light);
  vertical-align: top;
}
.rankno {
  width: 48px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.rank-player {
  min-width: 200px;
}
.row-caption {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
}
th.row-caption {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--muted);
}
.points {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.points .meta {
  display: block;
  font-weight: 400;
}
details {
  margin: 14px 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
}
.unscored {
  columns: 3 220px;
  font-size: 13px;
  color: var(--text);
  margin-top: 10px;
}
.unscored div {
  break-inside: avoid;
  padding: 3px 0;
}
.archive-table td:nth-child(3),
.archive-table td:nth-child(4) {
  font-weight: 600;
  color: var(--ink);
}
.method p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  max-width: 38em;
}
.method h2 {
  margin-top: 30px;
}
.review-row {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.ref {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  word-break: break-all;
}

@media (max-width: 900px) {
  .lead,
  .profile-grid,
  .signup {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dateline {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .dateline > span:first-child,
  .edition {
    text-align: center;
  }
  .dateline nav {
    justify-content: center;
    gap: 18px;
  }
  .forecast {
    border-top: 1px solid var(--ink);
  }
}
@media (max-width: 720px) {
  .chart svg.wide {
    display: none;
  }
  .chart svg.narrow {
    display: block;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .briefs:not(.expanded) .brief:nth-child(n + 13) {
    display: none;
  }
  .briefs:not(.expanded) + .show-all {
    display: block;
    width: 100%;
    margin: 4px 0 16px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 3px;
    font-weight: 600;
    color: var(--ink);
  }
  .lead {
    padding-top: 30px;
  }
  .briefs {
    grid-template-columns: 1fr;
  }
  .sitefooter a {
    margin-left: 0;
    margin-right: 18px;
  }
  .stats {
    gap: 14px 28px;
  }
  .figure {
    font-size: 32px;
  }
  .dateline nav a {
    font-size: 12.5px;
  }
}
