:root {
  color-scheme: light;
  --paper: #efe4c8;
  --paper-light: #f8efd8;
  --paper-dark: #d5c399;
  --ink: #120f0b;
  --ink-soft: #332c22;
  --muted: #605748;
  --rule: #17130e;
  --accent: #6d1b12;
}

* { box-sizing: border-box; }

html {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 248, 219, .38), transparent 38rem),
    linear-gradient(180deg, #b69f73, #8f7955);
}

body {
  margin: 0;
  padding: clamp(.65rem, 1.8vw, 1.35rem);
  overflow-x: hidden;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.05) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(18,15,11,.035) 0 1px, transparent 1px 11px);
  font: 15.5px/1.42 Georgia, "Times New Roman", Times, serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .18;
  background:
    repeating-radial-gradient(circle at 17% 11%, rgba(18,15,11,.28) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(89deg, rgba(18,15,11,.06) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

a { color: inherit; }

.newspaper-shell {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(.75rem, 2vw, 1.25rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.34), transparent 22rem),
    radial-gradient(circle at 86% 22%, rgba(91,65,34,.10), transparent 20rem),
    repeating-linear-gradient(0deg, rgba(18,15,11,.028) 0 1px, transparent 1px 4px),
    var(--paper);
  border: 2px solid var(--ink);
  outline: 7px solid rgba(18,15,11,.18);
  box-shadow:
    0 12px 36px rgba(18,15,11,.36),
    inset 0 0 0 1px rgba(255,255,255,.25),
    inset 0 0 52px rgba(75,52,26,.18);
}

.newspaper-shell::before,
.newspaper-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-color: rgba(18,15,11,.42);
}

.newspaper-shell::before {
  inset: .45rem;
  border: 1px solid rgba(18,15,11,.5);
}

.newspaper-shell::after {
  inset: .75rem;
  border: 1px solid rgba(18,15,11,.18);
}

.masthead,
.press-strip,
.page,
.home,
footer {
  position: relative;
  z-index: 1;
  width: 100%;
}

.masthead {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) 1fr minmax(8rem, 12rem);
  grid-template-areas:
    "motto brand weather"
    "nav nav nav";
  align-items: center;
  gap: .45rem .8rem;
  padding: .25rem .15rem .45rem;
  border-bottom: 9px double var(--rule);
}

.brand {
  grid-area: brand;
  justify-self: center;
  text-align: center;
  text-decoration: none;
  font: 900 clamp(2.6rem, 7.4vw, 6.4rem)/.82 Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: .035em .035em 0 rgba(18,15,11,.16);
}

.masthead-box {
  min-height: 4rem;
  display: grid;
  place-items: center;
  padding: .35rem .45rem;
  border: 3px double var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.04) 0 1px, transparent 1px 4px),
    rgba(248,239,216,.48);
  font: 900 .72rem/1.12 Georgia, "Times New Roman", Times, serif;
  text-align: center;
  text-transform: uppercase;
}

.motto { grid-area: motto; transform: rotate(-1deg); }
.weather { grid-area: weather; transform: rotate(1deg); }

.edition-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
  padding-top: .2rem;
  border-top: 1px solid rgba(18,15,11,.55);
  font: 900 .7rem/1.1 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.edition-nav a {
  text-decoration: none;
  padding: .18rem .44rem;
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.edition-nav a:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.press-strip {
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin: .35rem 0 .55rem;
  padding: .18rem .35rem .2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 3px solid var(--rule);
  font: 900 .68rem/1.12 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.press-strip span:not(:last-child)::after {
  content: "/";
  margin-left: .4rem;
}

.hero {
  margin: 0 0 .65rem;
  padding: .55rem .65rem .65rem;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  text-align: center;
}

.kicker {
  margin: 0 auto .25rem;
  color: var(--accent);
  font: 900 .76rem/1.15 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font: 900 clamp(2rem, 6vw, 4.8rem)/.86 Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subtitle {
  max-width: 58rem;
  margin: .4rem auto 0;
  color: var(--ink-soft);
  font: 800 clamp(.92rem, 1.5vw, 1.1rem)/1.25 Georgia, "Times New Roman", Times, serif;
}

.layout {
  padding: 0 0 1.5rem;
}

.toc {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  margin: .5rem 0 .9rem;
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
  background: rgba(248,239,216,.38);
  font: 800 .68rem/1.1 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.toc strong,
.toc a {
  display: block;
  padding: .28rem .42rem;
  border-right: 1px solid rgba(18,15,11,.5);
}

.toc strong {
  color: var(--paper-light);
  background: var(--ink);
}

.toc a {
  text-decoration: none;
}

.toc .toc-3 {
  color: var(--muted);
  font-size: .62rem;
}

.gazette-index {
  display: block;
  padding: 0;
}

.gazette-index strong {
  border-right: 0;
  border-bottom: 3px solid var(--ink);
  text-align: center;
  letter-spacing: .02em;
}

.gazette-index a {
  text-decoration: none;
  border-right: 1px solid rgba(18,15,11,.58);
  border-bottom: 1px solid rgba(18,15,11,.58);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.025) 0 1px, transparent 1px 4px),
    rgba(248,239,216,.26);
}

.gazette-index a:hover {
  background: rgba(18,15,11,.08);
}

.gazette-index span,
.gazette-index b,
.gazette-index em {
  display: block;
}

.gazette-index span {
  margin-bottom: .18rem;
  color: var(--accent);
  font: 900 .62rem/1.05 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.gazette-index b {
  color: var(--ink);
  font: 900 clamp(.94rem, 1.55vw, 1.28rem)/.98 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.gazette-index em {
  margin-top: .2rem;
  color: var(--ink-soft);
  font: 700 .72rem/1.18 Georgia, "Times New Roman", Times, serif;
  text-transform: none;
}

.index-lead {
  padding: .55rem .65rem .6rem;
  border-right: 0;
  border-bottom: 2px solid var(--ink);
  text-align: center;
}

.index-lead b {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.index-card {
  min-height: 5.35rem;
  padding: .45rem .5rem;
}

.article {
  padding-bottom: 1rem;
}

.article h2#the-1171-weekly-gazette {
  display: none;
}

.gazette-page .article > p:nth-of-type(1),
.gazette-page .article > p:nth-of-type(2) {
  display: none;
}

.article h2 {
  margin: 1.4rem 0 .55rem;
  padding: .28rem .3rem .24rem;
  border-top: 5px double var(--ink);
  border-bottom: 3px solid var(--ink);
  column-span: all;
  font: 900 clamp(1.35rem, 2.8vw, 2.35rem)/.9 Georgia, "Times New Roman", Times, serif;
  text-align: center;
  text-transform: uppercase;
}

.article h2#front-page {
  margin-top: .25rem;
  border-top-width: 7px;
}

.article h2#front-page + h3 {
  column-span: all;
  margin: .35rem 0 .55rem;
  padding: .38rem .25rem .42rem;
  border-top: 7px double var(--ink);
  border-bottom: 7px double var(--ink);
  font: 900 clamp(2.25rem, 6.2vw, 5.2rem)/.88 Georgia, "Times New Roman", Times, serif;
  text-align: center;
  text-transform: uppercase;
}

.article h3 {
  margin: 1rem 0 .35rem;
  padding-bottom: .18rem;
  border-bottom: 2px solid var(--rule);
  break-after: avoid;
  font: 900 clamp(1.05rem, 1.75vw, 1.45rem)/1.02 Georgia, "Times New Roman", Times, serif;
}

.article p {
  margin: 0 0 .62rem;
  text-align: justify;
  hyphens: auto;
}

.article p:first-of-type {
  font-weight: 700;
}

blockquote {
  margin: .65rem 0;
  padding: .48rem .55rem .46rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.035) 0 1px, transparent 1px 4px),
    rgba(248,239,216,.5);
  break-inside: avoid;
  font: 900 .92rem/1.26 Georgia, "Times New Roman", Times, serif;
  text-align: left;
}

.news-figure {
  position: relative;
  margin: .55rem 0 .75rem;
  padding: 1.35rem .3rem .32rem;
  border: 4px double var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.05) 0 1px, transparent 1px 4px),
    rgba(248,239,216,.52);
  break-inside: avoid;
  box-shadow: inset 0 0 0 1px rgba(18,15,11,.18);
}

.news-figure::before {
  content: attr(data-label);
  position: absolute;
  left: .3rem;
  right: .3rem;
  top: .26rem;
  padding: .14rem .24rem;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font: 900 .59rem/1 Georgia, "Times New Roman", Times, serif;
  text-align: center;
  text-transform: uppercase;
}

.news-figure::after {
  content: "";
  position: absolute;
  inset: 1.35rem .3rem 2.2rem;
  pointer-events: none;
  opacity: .24;
  background:
    radial-gradient(circle, rgba(18,15,11,.42) 0 .45px, transparent .55px) 0 0 / 3px 3px;
  mix-blend-mode: multiply;
}

.news-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(18,15,11,.7);
  background: #f4ead0;
  filter: grayscale(1) contrast(1.42) brightness(.98);
  mix-blend-mode: multiply;
}

.news-figure figcaption {
  margin-top: .28rem;
  padding: .28rem .16rem 0;
  border-top: 3px double var(--ink);
  color: var(--ink-soft);
  font: 900 .62rem/1.18 Georgia, "Times New Roman", Times, serif;
  text-align: center;
  text-transform: uppercase;
}

.feature-figure {
  max-width: 100%;
}

.page-three-plate {
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.page-three-section {
  column-span: all;
  margin: 1rem 0 1.2rem;
  padding: .35rem 0 .85rem;
  border-top: 7px double var(--ink);
  border-bottom: 7px double var(--ink);
  break-inside: avoid;
}

.page-three-section h2 {
  margin-top: 0;
}

.page-three-section h3 {
  margin: .35rem 0 .55rem;
  padding: .35rem .25rem .38rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  text-align: center;
  text-transform: uppercase;
}

.page-three-section .page-three-plate {
  width: 100%;
  max-width: none;
  margin: 0;
  column-span: none;
}

.sports-plate {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.portrait-figure {
  max-width: 15rem;
}

ul {
  margin: .55rem 0 .7rem;
  padding-left: 1rem;
}

li + li { margin-top: .12rem; }

code {
  font-family: "Courier New", Courier, monospace;
  font-size: .9em;
  background: rgba(18,15,11,.08);
  border: 1px solid rgba(18,15,11,.24);
  padding: .01rem .18rem;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  padding: .75rem 0 1.3rem;
}

.edition {
  display: block;
  min-height: 13rem;
  padding: .75rem;
  border: 4px double var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.035) 0 1px, transparent 1px 5px),
    rgba(248,239,216,.48);
  text-decoration: none;
}

.edition:hover {
  outline: 3px solid var(--ink);
  outline-offset: -7px;
}

.edition span {
  color: var(--accent);
  font: 900 .7rem/1.1 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.edition h2 {
  margin: .35rem 0 .5rem;
  padding-bottom: .35rem;
  border-bottom: 3px double var(--ink);
  font: 900 clamp(1.4rem, 3.3vw, 2.55rem)/.9 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.edition p {
  margin: 0;
  color: var(--ink-soft);
}

footer {
  margin-top: .65rem;
  padding: .55rem 0 .15rem;
  border-top: 7px double var(--rule);
  color: var(--muted);
  font: .76rem/1.25 Georgia, "Times New Roman", Times, serif;
  text-align: center;
}

@media (min-width: 1040px) {
  .article {
    column-count: 3;
    column-gap: 1.1rem;
    column-rule: 1px solid rgba(18,15,11,.42);
  }

  .article h2,
  .article > p:first-child,
  .feature-figure {
    column-span: all;
  }

  .portrait-figure {
    float: right;
    width: 42%;
    min-width: 10.5rem;
    margin: .1rem 0 .55rem .65rem;
  }

  .page-three-section {
    display: grid;
    grid-template-columns: minmax(21rem, .86fr) minmax(0, 1.14fr);
    gap: .5rem 1rem;
    align-items: start;
  }

  .page-three-section h2,
  .page-three-section h3 {
    grid-column: 1 / -1;
  }

  .page-three-section h2 {
    column-span: none;
  }

  .page-three-section .page-three-plate {
    grid-column: 1;
    grid-row: 3 / span 14;
  }

  .page-three-section p,
  .page-three-section blockquote,
  .page-three-section ul {
    grid-column: 2;
  }
}

@media (min-width: 760px) and (max-width: 1039px) {
  .article {
    column-count: 2;
    column-gap: 1rem;
    column-rule: 1px solid rgba(18,15,11,.36);
  }

  .article h2,
  .feature-figure {
    column-span: all;
  }

  .page-three-section {
    display: grid;
    grid-template-columns: minmax(17rem, .9fr) minmax(0, 1.1fr);
    gap: .45rem .85rem;
    align-items: start;
  }

  .page-three-section h2,
  .page-three-section h3 {
    grid-column: 1 / -1;
  }

  .page-three-section h2 {
    column-span: none;
  }

  .page-three-section .page-three-plate {
    grid-column: 1;
    grid-row: 3 / span 14;
  }

  .page-three-section p,
  .page-three-section blockquote,
  .page-three-section ul {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  body {
    width: 100%;
    padding: 0;
    font-size: 16px;
  }

  .newspaper-shell {
    width: 100%;
    max-width: 100%;
    padding: .7rem;
    outline-width: 0;
    overflow: hidden;
  }

  .masthead {
    min-width: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "motto"
      "weather"
      "nav";
  }

  .masthead-box {
    display: block;
    min-height: auto;
    width: 100%;
    transform: none;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .brand {
    font-size: clamp(2.15rem, 14vw, 3.75rem);
    max-width: 10ch;
    line-height: .82;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .press-strip {
    justify-content: flex-start;
  }

  .hero,
  .press-strip,
  .edition,
  .edition h2,
  .kicker {
    min-width: 0;
  }

  .press-strip span,
  .edition h2,
  .edition p,
  .subtitle,
  .kicker {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .kicker {
    font-size: .68rem;
  }

  .edition-nav {
    gap: .25rem;
    font-size: .64rem;
  }

  .edition-nav a {
    padding: .16rem .28rem;
  }

  h1 {
    font-size: clamp(1.75rem, 8.8vw, 2.65rem);
    line-height: .95;
    max-width: 9ch;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  .toc {
    display: block;
  }

  .toc strong,
  .toc a {
    border-right: 0;
    border-bottom: 1px solid rgba(18,15,11,.38);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .gazette-index {
    display: block;
  }

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

  .index-card {
    min-height: auto;
  }

  .article p {
    text-align: left;
  }

  .article h2#front-page + h3 {
    font-size: clamp(1.6rem, 9.5vw, 2.75rem);
    max-width: 9ch;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  .page-three-section .page-three-plate {
    max-width: 30rem;
    margin: .4rem auto .75rem;
  }

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

  .edition {
    min-width: 0;
    padding: .6rem;
  }

  .edition h2 {
    font-size: clamp(1.05rem, 6.4vw, 1.7rem);
    line-height: 1;
  }
}
