/* ═══════════════════════════════════════════════════════════
   VINTAGE KRAFT PAPER / NEWSPAPER THEME
   ═══════════════════════════════════════════════════════════ */

:root {
  --kraft-1: #d8c4a0;
  --kraft-2: #cbb185;
  --kraft-3: #bfa06f;
  --paper: #ece0c4;
  --paper-light: #f3ead2;
  --ink: #2b2119;
  --ink-soft: #4a3c2c;
  --ink-faint: #6e5c45;
  --red: #8c2f22;
  --red-dark: #6d2018;
  --line: rgba(43, 33, 25, 0.28);
  --line-soft: rgba(43, 33, 25, 0.14);
  --tape: rgba(214, 196, 140, 0.55);
  --shadow: rgba(43, 33, 25, 0.35);
  --font-serif: Georgia, 'Times New Roman', 'Courier New', 'Noto Serif', serif;
  --font-type: 'Courier New', Courier, ui-monospace, monospace;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--kraft-1);
  background-image:
    radial-gradient(ellipse at 15% 8%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(ellipse at 85% 92%, rgba(0,0,0,0.10), transparent 50%),
    repeating-linear-gradient(0deg, rgba(43,33,25,0.025) 0px, rgba(43,33,25,0.025) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0px, transparent 1px, transparent 2px, rgba(0,0,0,0.015) 3px),
    linear-gradient(160deg, var(--kraft-1), var(--kraft-2) 55%, var(--kraft-3));
  color: var(--ink);
  font-family: var(--font-serif);
  min-height: 100%;
  overflow-x: hidden;
}

[v-cloak] { display: none; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 0; height: 0; }

/* ─── Masthead ─── */
.masthead {
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, var(--paper-light), var(--paper));
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 3px 10px var(--shadow);
}
.masthead-rule {
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 9px);
  opacity: 0.75;
  margin: 4px 0;
}
.masthead-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 6px 0 2px;
  position: relative;
}
.masthead-logo-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink);
  font-variant: small-caps;
}
.masthead-logo-title em { color: var(--red); font-style: italic; }
.masthead-logo-mark {
  font-family: var(--font-type);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--ink-faint);
  align-self: center;
}
.masthead-search-btn {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper-light);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Category Tabs ─── */
.cat-tabs {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 68px;
  z-index: 35;
  overflow: hidden;
}
.cat-tabs-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 10px;
  scrollbar-width: none;
}
.cat-tab {
  flex: none;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink-soft);
  font-family: var(--font-type);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cat-tab.active {
  background: var(--red);
  color: var(--paper-light);
  border-color: var(--red-dark);
  transform: rotate(-1deg);
  box-shadow: 1px 2px 0 var(--red-dark);
}

/* ─── Search Bar ─── */
.search-bar-wrap {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 68px;
  z-index: 35;
}
.search-input {
  flex: 1;
  border: 1px dashed var(--ink);
  background: var(--paper-light);
  padding: 8px 10px;
  font-family: var(--font-type);
  font-size: 14px;
  color: var(--ink);
  border-radius: 2px;
}
.search-cancel {
  border: 1px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 2px;
}

/* ─── Loading ─── */
.loading-full {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
}
.loading-ring {
  width: 36px;
  height: 36px;
  border: 3px solid var(--line);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Section header ─── */
.sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 14px 8px;
}
.sec-label {
  font-family: var(--font-type);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}
.sec-more {
  font-family: var(--font-type);
  font-size: 11px;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 3px 8px;
  border-radius: 2px;
  background: transparent;
}
.sec-cnt {
  font-family: var(--font-type);
  font-size: 11px;
  color: var(--ink-faint);
}

/* torn edge helper */
.torn-top {
  clip-path: polygon(0% 4%, 3% 0%, 7% 3%, 11% 0%, 15% 3%, 19% 0%, 23% 3%, 27% 0%, 31% 3%, 35% 0%, 39% 3%, 43% 0%, 47% 3%, 51% 0%, 55% 3%, 59% 0%, 63% 3%, 67% 0%, 71% 3%, 75% 0%, 79% 3%, 83% 0%, 87% 3%, 91% 0%, 95% 3%, 100% 0%, 100% 100%, 0% 100%);
}

/* ═══ Front Page Headline ═══ */
.headline-sec { padding: 14px 14px 4px; }
.headline-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 4px 6px 0 var(--shadow);
  clip-path: polygon(0 0, 97% 0, 100% 3%, 100% 100%, 3% 100%, 0 97%);
  padding: 16px;
}
.headline-stamp {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-type);
  font-weight: 700;
  color: var(--red);
  border: 3px solid var(--red);
  border-radius: 6px;
  padding: 4px 10px;
  transform: rotate(9deg);
  letter-spacing: 2px;
  font-size: 15px;
  opacity: 0.85;
  mix-blend-mode: multiply;
}
.headline-photo {
  border: 6px solid var(--paper-light);
  outline: 1px solid var(--line);
  box-shadow: 0 2px 6px var(--shadow);
  aspect-ratio: 16/9;
  overflow: hidden;
  filter: sepia(0.25) contrast(1.02);
}
.headline-photo img { width: 100%; height: 100%; object-fit: cover; }
.headline-copy { padding-top: 12px; }
.headline-kicker {
  font-family: var(--font-type);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 1px;
}
.headline-title {
  font-size: 26px;
  margin: 6px 0;
  line-height: 1.15;
  border-bottom: 3px double var(--ink);
  padding-bottom: 8px;
}
.headline-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  columns: 1;
}
.headline-cta {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-type);
  font-size: 12px;
  color: var(--red-dark);
  text-decoration: underline;
}

/* ═══ Clothesline ═══ */
.clothesline-sec { padding-bottom: 4px; }
.clothesline {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 26px 18px 14px;
  overflow-x: auto;
}
.clothesline-wire {
  position: absolute;
  left: 0; right: 0; top: 14px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-faint) 0 4px, transparent 4px 7px);
}
.clothes-photo {
  flex: none;
  width: 118px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 3px 4px 0 var(--shadow);
  padding: 8px 8px 10px;
  transform: rotate(var(--tilt, 0deg));
  position: relative;
}
.clothes-pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 3px 3px 8px 8px;
  box-shadow: inset 0 -2px 0 var(--red-dark);
}
.clothes-pin::after {
  content: '';
  position: absolute;
  left: 50%; top: -6px;
  width: 2px; height: 8px;
  background: var(--ink-faint);
  transform: translateX(-50%);
}
.clothes-img { aspect-ratio: 1/1; overflow: hidden; filter: sepia(0.2); }
.clothes-img img { width: 100%; height: 100%; object-fit: cover; }
.clothes-nm {
  display: block;
  text-align: center;
  font-size: 11px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-family: var(--font-type);
}

/* ═══ Classifieds ═══ */
.classified-col {
  margin: 0 14px 10px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  column-count: 1;
}
.classified-ad {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px dashed var(--line);
}
.classified-ad:last-child { border-bottom: none; }
.classified-num {
  font-family: var(--font-type);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
}
.classified-body { display: flex; flex-direction: column; gap: 2px; }
.classified-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.classified-tag {
  font-family: var(--font-type);
  font-size: 10px;
  color: var(--ink-faint);
  margin-left: 6px;
}
.classified-txt {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ═══ Postcards ═══ */
.postcard-row {
  display: flex;
  gap: 16px;
  padding: 6px 14px 16px;
  overflow-x: auto;
}
.postcard {
  flex: none;
  width: 150px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 3px 5px 0 var(--shadow);
  padding: 10px 10px 12px;
  position: relative;
}
.postcard-stamp {
  position: absolute;
  top: 6px;
  right: 6px;
  font-family: var(--font-type);
  font-size: 9px;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 2px 5px;
  transform: rotate(6deg);
  background: var(--paper-light);
}
.postcard-img { aspect-ratio: 4/3; overflow: hidden; filter: sepia(0.15); }
.postcard-img img { width: 100%; height: 100%; object-fit: cover; }
.postcard-nm {
  font-size: 12px;
  margin: 6px 0 4px;
  color: var(--ink);
  font-weight: 700;
}
.postcard-lines { display: flex; flex-direction: column; gap: 3px; }
.postcard-lines span { height: 1px; background: var(--line-soft); display: block; }
.postcard-lines span:last-child { width: 60%; }

/* ═══ Stamp Sheet ═══ */
.stampsheet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 6px 14px 16px;
}
.stamp-cell-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 2px dotted var(--ink-faint);
  padding: 3px;
  background: var(--paper-light);
}
.stamp-cell-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.2); }
.stamp-cell-no {
  position: absolute;
  bottom: 2px;
  left: 2px;
  font-family: var(--font-type);
  font-size: 8px;
  background: var(--ink);
  color: var(--paper-light);
  padding: 1px 3px;
}
.stamp-cell-nm {
  font-size: 10.5px;
  text-align: center;
  margin-top: 4px;
  color: var(--ink-soft);
}

/* ═══ Action: Ticket Stubs ═══ */
.ticket-list { display: flex; flex-direction: column; gap: 10px; padding: 6px 14px 16px; }
.ticket-stub {
  display: flex;
  align-items: stretch;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 2px 3px 0 var(--shadow);
}
.ticket-left { flex: none; width: 78px; }
.ticket-img { width: 100%; height: 100%; overflow: hidden; filter: sepia(0.2); }
.ticket-img img { width: 100%; height: 100%; object-fit: cover; }
.ticket-perf {
  flex: none;
  width: 0;
  border-left: 2px dashed var(--ink-faint);
  position: relative;
}
.ticket-perf::before, .ticket-perf::after {
  content: '';
  position: absolute;
  left: -7px;
  width: 14px; height: 14px;
  background: var(--kraft-1);
  border-radius: 50%;
}
.ticket-perf::before { top: -7px; }
.ticket-perf::after { bottom: -7px; }
.ticket-right { padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; gap: 2px; }
.ticket-adm {
  font-family: var(--font-type);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--red);
}
.ticket-nm { font-weight: 700; font-size: 14px; }
.ticket-seat {
  font-family: var(--font-type);
  font-size: 10px;
  color: var(--ink-faint);
}

/* ═══ Puzzle: Corkboard ═══ */
.cork-row {
  display: flex;
  gap: 20px;
  padding: 18px 18px;
  justify-content: space-around;
}
.cork-photo {
  flex: 1;
  max-width: 110px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 3px 4px 0 var(--shadow);
  padding: 6px 6px 8px;
  transform: rotate(var(--tilt, 0deg));
  position: relative;
}
.cork-pin {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c0453a, var(--red-dark));
  box-shadow: 0 2px 2px var(--shadow);
}
.cork-img { aspect-ratio: 1/1; overflow: hidden; }
.cork-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.2); }
.cork-nm { font-size: 11px; text-align: center; margin-top: 6px; }

/* ═══ Kids: Washi Tape ═══ */
.washi-row { display: flex; gap: 14px; padding: 10px 14px 18px; overflow-x: auto; }
.washi-card {
  flex: none;
  width: 120px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 2px 3px 0 var(--shadow);
  padding: 12px 8px 8px;
  position: relative;
}
.washi-tape {
  position: absolute;
  top: -8px;
  left: 20%;
  width: 60%;
  height: 18px;
  background: repeating-linear-gradient(45deg, var(--red) 0 6px, #a8402f 6px 12px);
  opacity: 0.75;
  transform: rotate(-3deg);
}
.washi-img { aspect-ratio: 1/1; overflow: hidden; margin-top: 4px; }
.washi-img img { width: 100%; height: 100%; object-fit: cover; }
.washi-nm { font-size: 11px; text-align: center; margin-top: 6px; }

/* ═══ Sports: Box Score ═══ */
.boxscore-list { display: flex; flex-direction: column; padding: 6px 14px 16px; }
.boxscore-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.boxscore-idx {
  font-family: var(--font-type);
  font-weight: 700;
  color: var(--ink-faint);
  width: 20px;
}
.boxscore-img { width: 46px; height: 46px; flex: none; overflow: hidden; filter: sepia(0.15); }
.boxscore-img img { width: 100%; height: 100%; object-fit: cover; }
.boxscore-body { flex: 1; min-width: 0; }
.boxscore-nm { font-weight: 700; font-size: 13.5px; margin: 0; }
.boxscore-tag {
  font-family: var(--font-type);
  font-size: 9.5px;
  color: var(--red);
}
.boxscore-desc {
  font-size: 11.5px;
  color: var(--ink-faint);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══ Adventure: Scrapbook Grid ═══ */
.scrapbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 10px 18px 20px;
}
.scrap-item {
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 3px 4px 0 var(--shadow);
  padding: 6px 6px 8px;
  clip-path: polygon(2% 0%, 98% 0%, 100% 4%, 100% 96%, 96% 100%, 4% 100%, 0% 94%, 0% 6%);
}
.scrap-item:nth-child(odd) { transform: rotate(-2deg); }
.scrap-item:nth-child(even) { transform: rotate(2deg); }
.scrap-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: sepia(0.2); }
.scrap-nm { font-size: 11.5px; text-align: center; margin: 6px 0 0; }

/* ═══ Racing: Torn Clipping ═══ */
.clipping-single {
  display: block;
  position: relative;
  margin: 6px 14px 16px;
  border: 1px solid var(--line);
  box-shadow: 3px 5px 0 var(--shadow);
  clip-path: polygon(0% 3%, 2% 0%, 98% 1%, 100% 5%, 99% 96%, 97% 100%, 3% 99%, 0% 95%);
  overflow: hidden;
}
.clipping-single img { width: 100%; aspect-ratio: 16/8; object-fit: cover; filter: sepia(0.25); }
.clipping-ovl {
  padding: 12px;
  background: var(--paper-light);
}
.clipping-badge {
  font-family: var(--font-type);
  font-size: 10px;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 2px 6px;
}
.clipping-title { font-weight: 700; font-size: 16px; margin: 6px 0 2px; }
.clipping-desc { font-size: 12.5px; color: var(--ink-soft); margin: 0; }

/* ═══ Girl: Letters ═══ */
.letter-list { display: flex; flex-direction: column; gap: 10px; padding: 6px 14px 16px; }
.letter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 2px 3px 0 var(--shadow);
  padding: 10px;
  position: relative;
}
.letter-img { width: 52px; height: 52px; flex: none; overflow: hidden; border-radius: 2px; }
.letter-img img { width: 100%; height: 100%; object-fit: cover; }
.letter-body { flex: 1; min-width: 0; }
.letter-nm { font-weight: 700; font-size: 13.5px; margin: 0; }
.letter-desc { font-size: 11.5px; color: var(--ink-faint); margin: 2px 0 0; }
.letter-seal {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #b23a2c, var(--red-dark));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
}

/* ═══ Arcade: Stamp Fan ═══ */
.stampfan-row {
  display: flex;
  justify-content: center;
  padding: 20px 14px 24px;
}
.stampfan-card {
  width: 92px; height: 92px;
  margin-left: -18px;
  background: var(--paper-light);
  border: 2px dotted var(--ink-faint);
  padding: 4px;
  box-shadow: 2px 3px 4px var(--shadow);
  transform: rotate(var(--tilt, 0deg));
  overflow: hidden;
}
.stampfan-card:first-child { margin-left: 0; }
.stampfan-card img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.2); }

/* ═══ All Games: Archive Grid ═══ */
.all-sec { padding-bottom: 8px; }
.all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 6px 14px 10px;
}
.agcard {
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 2px 3px 0 var(--shadow);
  padding: 5px 5px 7px;
  transform: rotate(var(--tilt, 0deg));
}
.agcard-img { aspect-ratio: 1/1; overflow: hidden; }
.agcard-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.15); }
.agcard-nm {
  font-size: 10.5px;
  text-align: center;
  margin-top: 5px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.more-wrap { display: flex; justify-content: center; padding: 6px 0 20px; }
.more-btn, .loadmore-btn {
  font-family: var(--font-type);
  border: 1px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  padding: 9px 20px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

/* ═══ Filter / Search results ═══ */
.filter-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 68px;
  z-index: 30;
}
.filter-back {
  border: 1px solid var(--ink);
  background: var(--paper-light);
  color: var(--ink);
  padding: 6px 10px;
  font-family: var(--font-type);
  font-size: 11px;
  border-radius: 2px;
}
.filter-title { flex: 1; font-weight: 700; font-size: 15px; }
.filter-cnt {
  font-family: var(--font-type);
  font-size: 11px;
  color: var(--ink-faint);
}

.grid-sec { padding: 12px 14px 20px; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gcard {
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 2px 3px 0 var(--shadow);
  padding: 5px 5px 7px;
}
.gcard-img { aspect-ratio: 1/1; overflow: hidden; }
.gcard-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.15); }
.gcard-nm {
  font-size: 10.5px;
  text-align: center;
  margin: 5px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.empty-msg {
  text-align: center;
  padding: 40px 0;
  color: var(--ink-faint);
  font-family: var(--font-type);
}
.loadmore-wrap { display: flex; justify-content: center; padding: 16px 0; }

/* ═══ Footer ═══ */
.site-footer {
  text-align: center;
  padding: 22px 14px 90px;
  border-top: 3px double var(--ink);
  margin-top: 10px;
  font-family: var(--font-type);
  font-size: 12px;
  color: var(--ink-faint);
}
.site-footer a { color: var(--ink-soft); text-decoration: underline; }
.site-footer span { margin: 0 8px; }

/* ═══ Back to top ═══ */
.totop-btn {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-light);
  border: 2px solid var(--red-dark);
  box-shadow: 2px 3px 6px var(--shadow);
  font-size: 18px;
  z-index: 50;
}

/* ═══ Responsive ═══ */
@media (min-width: 720px) {
  .headline-card { flex-direction: row; align-items: center; }
  .headline-photo { flex: 0 0 46%; aspect-ratio: 16/10; }
  .headline-copy { padding: 0 0 0 22px; }
  .stampsheet-grid { grid-template-columns: repeat(8, 1fr); }
  .all-grid { grid-template-columns: repeat(6, 1fr); }
  .games-grid { grid-template-columns: repeat(6, 1fr); }
  .scrapbook-grid { grid-template-columns: repeat(4, 1fr); }
  .masthead-logo-title { font-size: 30px; }
}

@media (max-width: 380px) {
  .all-grid, .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stampsheet-grid { grid-template-columns: repeat(3, 1fr); }
}
