/* Smith Morning Post — Saturday Evening Post page
   Rasterize 1200×1600. Spectra 6 inks only:
   black #000000, white #FFFFFF, yellow #FFFF00, red #FF0000, blue #0000FF, green #00FF00
   Content is white + black type + a little red. No color-block floods. */
:root {
  --k: #000000;
  --w: #FFFFFF;
  --r: #FF0000;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 1200px;
  height: 1600px;
  overflow: hidden;
  background: var(--w);
  color: var(--k);
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: none;
}
.card {
  width: 1200px;
  height: 1600px;
  background: var(--w);
  display: flex;
  flex-direction: column;
  padding: 88px 56px 88px;
}
.hero {
  height: 480px;
  background: var(--w);
  overflow: hidden;
  margin: 0 -8px 12px;
}
.hero img, .hero svg {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: top center;
  background: var(--w);
}
.rule {
  height: 6px;
  background: var(--k);
  border: 0;
  margin: 0 0 10px;
}
.rule-thin {
  height: 4px;
  background: var(--k);
  border: 0;
  margin: 8px 0 14px;
}
.masthead {
  text-align: center;
  padding: 4px 0 0;
}
.masthead .name {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.masthead .subline {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r);
}
.block { padding: 6px 0 10px; background: var(--w); }
.kicker {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--r);
}
.date-block { text-align: center; }
.dow {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dom {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
}
.cal-block ol { list-style: none; margin-top: 8px; }
.cal-block li {
  font-family: "Nunito", Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  padding: 8px 0;
  border-bottom: 4px solid var(--k);
}
.cal-block li:last-child { border-bottom: 0; }
.june-block { background: var(--w); }
.june-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.june-col { background: var(--w); padding: 0; }
.june-col h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 8px;
}
.june-col p {
  font-family: "Nunito", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}
.verse-block { background: var(--w); color: var(--k); }
.verse {
  margin-top: 8px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  font-style: italic;
}
.cite {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r);
}
