@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Old+Standard+TT:wght@400;700&display=swap");

:root{
  --paper:#fbf8f1;
  --ink:#141414;
  --muted:#333;
  --rule:#1f1f1f;
  --masthead:"Old Standard TT","Times New Roman",serif;
  --body:"Libre Baskerville","Times New Roman",serif;
}

.topnav{
  border-bottom: 2px solid var(--rule);
  background: rgba(255,255,255,.35);
}

.topnav-inner{
  max-width:980px;
  margin:0 auto;
  padding:.6rem 1.25rem;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.topnav .brand{
  font-family: var(--masthead);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}

.topnav .links a{
  margin-left: .9rem;
  font-family: var(--masthead);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topnav .links a:first-child{ margin-left: 0; }


*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  line-height:1.6;
}

a{color:inherit}
a:hover{opacity:.85}

.wrapper{
  max-width:980px;
  margin:0 auto;
  padding:2.25rem 1.25rem 3rem;
}

/* Masthead */
.masthead-title{
  font-family:var(--masthead);
  font-weight:700;
  font-size:clamp(2.2rem,4.8vw,4.25rem);
  letter-spacing:.02em;
  margin:0;
  line-height:1.05;
  text-shadow:.4px .4px 0 rgba(0,0,0,.18);
}

.deck{
  font-family:var(--masthead);
  font-size:1rem;
  margin:.35rem 0 0;
  color:var(--muted);
}

.rule{
  border:0;
  border-top:3px solid var(--rule);
  margin:1.2rem 0 1rem;
}

.subrule{
  border:0;
  border-top:1px solid var(--rule);
  margin:.85rem 0;
}

/* Layout */
.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:2rem;
  margin-top:1.25rem;
}

@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}

/* Body text */
.kicker{
  font-family:var(--masthead);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:.8rem;
  margin:0 0 .35rem;
  color:var(--muted);
}

.article p{
  margin:0 0 .85rem;
}

.lede {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.lede-small {
  font-family: var(--body);
  font-size: 0.95rem;      /* slightly smaller than body */
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  opacity: 0.85;           /* subtle de-emphasis w/o hurting readability */
}

.grid.single {
  grid-template-columns: 1fr;
}

/* Narrow count columns */
table th:nth-child(9),
table td:nth-child(9),
table th:nth-child(10),
table td:nth-child(10) {
  width: 5ch;
  text-align: center;
  white-space: nowrap;
}

.box{
  border:2px solid var(--rule);
  padding:1rem;
  background:rgba(255,255,255,.35);
}

footer{
  margin-top:2.5rem;
  padding-top:1rem;
  border-top:2px solid var(--rule);
  color:var(--muted);
  font-size:.9rem;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

ul.columns {
  column-width: 16rem;
  column-gap: 2rem;
  margin: 0;
  padding-left: 1.25rem;
}

ul.columns li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

table{
  width:100%;
  border-collapse:collapse;
  font-size:.95rem;
}
th, td{
  border-bottom:1px solid var(--rule);
  padding:.35rem .45rem;
  text-align:left;
  vertical-align:top;
}
thead th{
  border-bottom:2px solid var(--rule);
  font-family:var(--masthead);
}

.game { margin: 0 0 0.75rem 0; }
.game summary { cursor: pointer; font-weight: 600; }
.game-body { margin-top: 0.5rem; }


