: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;
}

.issue-page .article > h2:first-child,
.article h2#the-1171-weekly-gazette {
  display: none;
}

.issue-page .article > p:nth-of-type(1),
.issue-page .article > p:nth-of-type(2),
.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,
.article h2#front-page + .article-heading 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);
  -webkit-column-break-after: avoid;
  page-break-after: avoid;
  break-after: avoid-column;
  break-after: avoid;
  font: 900 clamp(1.05rem, 1.75vw, 1.45rem)/1.02 Georgia, "Times New Roman", Times, serif;
}

.article-heading {
  -webkit-column-break-after: avoid;
  -webkit-column-break-inside: avoid;
  page-break-after: avoid;
  page-break-inside: avoid;
  break-after: avoid-column;
  break-inside: avoid;
}

.article-heading + p,
.article-heading + blockquote,
.article-heading + ul,
.article-heading + figure,
.article-heading + .comment-feed[hidden] + p,
.article-heading + .comment-feed[hidden] + blockquote,
.article-heading + .comment-feed[hidden] + ul,
.article-heading + .comment-feed[hidden] + figure {
  -webkit-column-break-before: avoid;
  page-break-before: avoid;
  break-before: avoid-column;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .22rem;
  margin: -.08rem 0 .55rem;
  break-inside: avoid;
  font: 900 .62rem/1 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.reader-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: .24rem;
  min-height: 1.45rem;
  padding: .23rem .38rem .2rem;
  border: 3px double rgba(18,15,11,.72);
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.035) 0 1px, transparent 1px 4px),
    rgba(248,239,216,.55);
  font: inherit;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
}

.reader-action:hover,
.reader-action:focus-visible {
  color: var(--paper-light);
  background: var(--ink);
  outline: 0;
}

.reader-action[aria-pressed="true"] {
  box-shadow: inset 0 0 0 1px var(--ink);
}

.reader-action .count {
  display: inline-grid;
  min-width: 1.15rem;
  min-height: 1.15rem;
  place-items: center;
  border-left: 1px solid rgba(18,15,11,.62);
  padding-left: .24rem;
}

.reader-action:hover .count,
.reader-action:focus-visible .count {
  border-left-color: rgba(248,239,216,.72);
}

.page-three-section .article-heading,
.page-three-section .comment-feed {
  grid-column: 1 / -1;
}

.comment-feed {
  margin: -.32rem 0 .72rem;
  padding: .36rem .42rem .42rem;
  border-top: 2px solid rgba(18,15,11,.72);
  border-bottom: 3px double rgba(18,15,11,.72);
  background:
    repeating-linear-gradient(0deg, rgba(18,15,11,.026) 0 1px, transparent 1px 4px),
    rgba(248,239,216,.36);
  break-inside: avoid;
}

.comment-feed[hidden] {
  display: none;
}

.comment-feed-header {
  display: flex;
  justify-content: space-between;
  gap: .45rem;
  padding-bottom: .24rem;
  border-bottom: 1px solid rgba(18,15,11,.55);
  font: 900 .58rem/1.08 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.comment-feed-header span {
  max-width: 60%;
  color: var(--muted);
  text-align: right;
}

.comment-list {
  display: grid;
  gap: .32rem;
  margin: .38rem 0 .42rem;
  padding: 0;
  list-style: none;
}

.comment-item,
.comment-empty {
  padding: .32rem .36rem .34rem;
  border-left: 3px solid rgba(18,15,11,.68);
  background: rgba(239,228,200,.4);
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  gap: .45rem;
  margin-bottom: .18rem;
  color: var(--accent);
  font: 900 .58rem/1.05 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.comment-meta time {
  color: var(--muted);
  text-align: right;
}

.comment-item p,
.comment-empty {
  margin: 0;
  font: 700 .76rem/1.24 Georgia, "Times New Roman", Times, serif;
  text-align: left;
  white-space: pre-wrap;
}

.comment-form {
  display: grid;
  grid-template-columns: minmax(6.5rem, .6fr) 1.4fr auto;
  gap: .28rem;
  align-items: end;
}

.comment-form label {
  display: grid;
  gap: .12rem;
  min-width: 0;
}

.comment-form label span {
  font: 900 .55rem/1 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  min-width: 0;
  border: 2px solid rgba(18,15,11,.72);
  border-radius: 0;
  color: var(--ink);
  background: rgba(248,239,216,.68);
  font: 700 .78rem/1.2 Georgia, "Times New Roman", Times, serif;
}

.comment-form input {
  min-height: 1.55rem;
  padding: .18rem .28rem;
}

.comment-form textarea {
  min-height: 3.25rem;
  resize: vertical;
  padding: .25rem .3rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.comment-submit {
  min-height: 1.55rem;
}

.comment-status {
  grid-column: 1 / -1;
  min-height: .85rem;
  margin: -.05rem 0 0;
  color: var(--muted);
  font: 900 .56rem/1.12 Georgia, "Times New Roman", Times, serif;
  text-transform: uppercase;
}

.comment-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

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

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

blockquote {
  margin: .58rem 0 .68rem .75rem;
  padding: .22rem .45rem .24rem .55rem;
  border-left: 2px solid rgba(18,15,11,.55);
  background: rgba(248,239,216,.24);
  break-inside: avoid;
  font: 700 .86rem/1.3 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 .66rem/1.05 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 .68rem/1.18 Georgia, "Times New Roman", Times, serif;
  text-align: center;
  text-transform: uppercase;
}

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

.front-figure {
  width: 100%;
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

.supporting-figure {
  max-width: 18.5rem;
  margin: .7rem auto .95rem;
  padding-left: .48rem;
  padding-right: .48rem;
}

.supporting-figure::after {
  left: .48rem;
  right: .48rem;
}

.supporting-figure img {
  max-width: 16.75rem;
  margin-left: auto;
  margin-right: auto;
}

.teaser-figure {
  width: 100%;
  max-width: 30rem;
  margin: .7rem auto .95rem;
}

.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 > h2 + p {
  max-width: 36rem;
  margin: -.25rem auto .55rem;
  color: var(--muted);
  font: 900 .82rem/1.18 Georgia, "Times New Roman", Times, serif;
  text-align: center;
}

.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 0 .45rem;
  column-span: none;
}

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

.page-three-section::after {
  content: "";
  display: block;
  clear: both;
}

.page-three-section p {
  margin-bottom: .38rem;
}

.page-three-section blockquote {
  margin: .32rem 0 .4rem .55rem;
  padding: .18rem .4rem .2rem .5rem;
  font-size: .84rem;
  line-height: 1.24;
}

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

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

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

.article li {
  break-inside: avoid;
}

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-review:hover {
  outline: none;
}

.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);
}

.edition-restricted {
  background:
    repeating-linear-gradient(135deg, rgba(18,15,11,.045) 0 2px, transparent 2px 9px),
    rgba(248,239,216,.62);
}

.brief-home {
  max-width: 62rem;
  margin: 0 auto;
}

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;
}

footer a {
  color: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-separator {
  display: inline-block;
  padding: 0 .35rem;
}

@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;
  }

  .article .supporting-figure {
    float: left;
    clear: left;
    width: min(48%, 11.75rem);
    max-width: 11.75rem;
    margin: .15rem .7rem .45rem 0;
    padding: 1.1rem .24rem .26rem;
  }

  .article .supporting-figure::before {
    left: .24rem;
    right: .24rem;
    top: .2rem;
    padding: .1rem .14rem;
    font-size: .54rem;
    line-height: 1.02;
  }

  .article .supporting-figure::after {
    inset: 1.1rem .24rem 1.85rem;
  }

  .article .supporting-figure img {
    max-width: none;
    width: 100%;
  }

  .article .supporting-figure figcaption {
    margin-top: .22rem;
    padding: .2rem .08rem 0;
    font-size: .54rem;
    line-height: 1.12;
  }

  .page-three-section .page-three-plate {
    float: left;
    clear: left;
    width: min(48%, 28rem);
    max-width: 28rem;
    margin: .05rem 1rem .6rem 0;
  }
}

@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;
  }

  .article .supporting-figure {
    float: left;
    clear: left;
    width: min(46%, 11rem);
    max-width: 11rem;
    margin: .15rem .65rem .45rem 0;
    padding: 1.08rem .22rem .25rem;
  }

  .article .supporting-figure::before {
    left: .22rem;
    right: .22rem;
    top: .18rem;
    padding: .1rem .12rem;
    font-size: .52rem;
    line-height: 1.02;
  }

  .article .supporting-figure::after {
    inset: 1.08rem .22rem 1.8rem;
  }

  .article .supporting-figure img {
    max-width: none;
    width: 100%;
  }

  .article .supporting-figure figcaption {
    margin-top: .2rem;
    padding: .18rem .06rem 0;
    font-size: .52rem;
    line-height: 1.1;
  }

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

  .page-three-section .page-three-plate {
    float: left;
    clear: left;
    width: min(48%, 22rem);
    max-width: 22rem;
    margin: .05rem .8rem .55rem 0;
  }
}

@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-actions {
    gap: .18rem;
    margin-bottom: .65rem;
    font-size: .58rem;
  }

  .reader-action {
    min-height: 1.5rem;
    padding: .24rem .34rem .22rem;
  }

  .comment-feed-header,
  .comment-form,
  .comment-meta {
    display: block;
  }

  .comment-feed-header span,
  .comment-meta time {
    display: block;
    max-width: none;
    margin-top: .12rem;
    text-align: left;
  }

  .comment-form label,
  .comment-submit {
    margin-top: .28rem;
  }

  .article h2#front-page + h3,
  .article h2#front-page + .article-heading h3 {
    font-size: clamp(1.55rem, 9vw, 2.75rem);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .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;
  }

  .brief-page h1 {
    max-width: 100%;
    font-size: clamp(1.65rem, 9vw, 2.35rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}
