@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/InterVariable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #d51920;
  --red-bright: #ff4d54;
  --black: #111;
  --muted: #555;
  --line: #e6e6e6;
  --well: #F7F7F7;
  --white: #fff;
  --max: 72rem;
  --header-h: 109px;
  --page-px: 20px;
  --color-ink: #111;
  --color-accent: #d51920;
  --color-on-image: #fff;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
@media (min-width: 768px) {
  :root { --page-px: 32px; }
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-family: var(--font-body);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  min-height: 100dvh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
body:has(#app header.site) #nws-boot { display: none; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus {
  left: 8px; top: 8px; z-index: 80;
  background: #111; color: #fff;
  padding: 8px 16px; border-radius: 999px;
}
header.site {
  position: sticky; top: 0; z-index: 40;
  overflow: visible;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
header.site.menu-open { z-index: 50; }
.hdr {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px;
}
@media (min-width: 768px) { .hdr { padding: 10px 32px; } }
.hdr-brand { min-width: 0; flex: 1; }
.hdr-brand a { display: block; max-width: 100%; }
.hdr-brand img {
  display: block; height: 36px; width: auto;
  max-width: 100%; object-fit: contain; object-position: left;
}
@media (min-width: 640px) { .hdr-brand img { height: 40px; } }
@media (min-width: 768px) { .hdr-brand img { height: 48px; } }
.hdr-search {
  display: none; position: relative; flex: 1; min-width: 0; max-width: 24rem; margin-left: auto;
}
@media (min-width: 768px) { .hdr-search { display: block; } }
.hdr-search label {
  display: block; position: relative; margin: 0; font-size: inherit;
}
.hdr-search .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.hdr-search .ico-search {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: rgba(255,255,255,.40); pointer-events: none;
}
form.hdr-search input,
.hdr-search input {
  display: flex; width: 100%; height: 40px; margin: 0;
  border: 0; border-radius: 999px;
  background: rgba(255,255,255,.10); color: #fff;
  padding: 0 44px 0 36px; font-size: 14px; font-weight: 400; outline: none;
  overflow: hidden;
}
.hdr-search input::placeholder { color: rgba(255,255,255,.40); }
.hdr-search input:focus {
  background: rgba(255,255,255,.15);
  box-shadow: 0 0 0 2px rgba(255,255,255,.20);
}
.hdr-search button[type="submit"] {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border: 0; border-radius: 50%;
  background: #fff; color: #111; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color 150ms ease-out;
}
.hdr-search button[type="submit"]:hover { background: rgba(255,255,255,.9); }
.hdr-search button[type="submit"] svg { width: 16px; height: 16px; }
.hdr-cta {
  position: relative; z-index: 20;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto;
}
@media (min-width: 768px) { .hdr-cta { margin-left: 0; } }
.hdr-pill {
  display: none; align-items: center; justify-content: center;
  height: 36px; padding: 0 16px; border-radius: 999px;
  background: #d51920; color: #fff; font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: color 150ms ease-out, background-color 150ms ease-out, transform 150ms ease-out;
}
.hdr-pill:hover { background: #bf161c; }
.hdr-pill:active { transform: scale(0.96); }
@media (min-width: 640px) { .hdr-pill { display: inline-flex; } }
.hdr-signin {
  display: none; align-items: center; justify-content: center;
  height: 36px; padding: 0 16px; border-radius: 999px;
  background: #fff; color: #111; font-size: 14px; font-weight: 500; white-space: nowrap;
  transition: background-color 150ms ease-out;
}
.hdr-signin:hover { background: rgba(255,255,255,.9); color: #111; }
@media (min-width: 640px) { .hdr-signin { display: inline-flex; } }
.hdr-session {
  display: none;
  align-items: center;
  gap: 10px;
}
@media (min-width: 640px) { .hdr-session { display: flex; } }
.hdr-avatar {
  display: block;
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.hdr-avatar img { width: 32px; height: 32px; object-fit: cover; display: block; }
.hdr-signout-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr-signout {
  display: inline;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
}
.hdr-signout:hover { color: #fff; text-decoration: underline; }
.burger {
  display: grid; width: 44px; height: 44px; place-items: center; flex-shrink: 0;
  border: 0; border-radius: 50%; background: transparent; color: #fff; cursor: pointer;
}
.burger:hover { background: rgba(255,255,255,.10); }
.burger svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .burger { display: none; } }
.hdr-nav {
  display: none;
  overflow: visible;
}
@media (min-width: 768px) {
  .hdr-nav { display: block; overflow: visible; }
}
.hdr-nav-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; gap: 4px;
  padding: 0 24px 8px;
}
.hdr-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px; min-width: 0; flex: 1;
}
.hdr-links a {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  padding: 6px 12px; border-radius: 999px;
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,.60);
  transition: color 150ms ease, background-color 150ms ease;
}
.hdr-links a:hover { background: rgba(255,255,255,.10); color: #fff; }
.hdr-links a.on {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.60);
  font-weight: 500;
}
.hdr-links a.on:hover { color: #fff; }
.hdr-links a.has-ico { font-weight: 600; }
.hdr-links a.on.has-ico { font-weight: 500; }
.hdr-links a img {
  width: 14px; height: 14px; filter: invert(1); opacity: .9; object-fit: contain;
}
.access { position: relative; margin-left: auto; flex-shrink: 0; }
.access-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px; border: 0; border-radius: 999px;
  background: transparent; color: rgba(255,255,255,.60); font-size: 14px; cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}
.access-btn:hover, .access.open .access-btn { background: rgba(255,255,255,.10); color: #fff; }
.access-btn svg { width: 14px; height: 14px; transition: transform 150ms ease; }
.access.open .access-btn svg { transform: rotate(180deg); }
.access-menu {
  display: none; position: absolute; top: calc(100% + 0.35rem); right: 0; z-index: 50;
  min-width: 11.5rem; padding: 6px;
  background: #111; border: 1px solid rgba(255,255,255,.10); border-radius: 12px;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.35);
}
.access.open .access-menu { display: block; }
.access-menu a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 14px; color: rgba(255,255,255,.80);
}
.access-menu a:hover, .access-menu a.on { background: rgba(255,255,255,.10); color: #fff; }
.menu-full {
  display: none; position: fixed; inset: 0; background: #111; z-index: 50; color: #fff;
}
.menu-full a, .menu-full button { touch-action: manipulation; -webkit-tap-highlight-color: rgba(255,255,255,.14); }
.menu-full.open { display: block; }
@media (min-width: 768px) { .menu-full, .menu-full.open { display: none !important; } }
.menu-full .menu-bar {
  display: flex; justify-content: flex-end; padding: 12px 20px;
}
.menu-close {
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: transparent; color: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.menu-close:hover { background: rgba(255,255,255,.10); }
.menu-close svg { width: 20px; height: 20px; }
.menu-body { padding: 0 20px 28px; overflow: auto; max-height: calc(100dvh - 3.25rem); }
.menu-full .hdr-search { display: block; max-width: none; margin: 0 0 8px; }
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 4px;
}
.menu-grid a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 8px; color: #fff; font-size: 14px; font-weight: 500;
}
.menu-grid a.has-ico { font-weight: 600; }
.menu-grid a img { width: 16px; height: 16px; filter: invert(1); }
.menu-grid a:hover { background: rgba(255,255,255,.10); }
.menu-kicker {
  margin: 12px 0 0; padding: 0 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .025em;
  text-transform: uppercase; color: rgba(255,255,255,.40);
}
.menu-cta { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.10); display: grid; gap: 8px; }
.menu-cta .hdr-signin, .menu-cta .hdr-pill {
  display: flex; width: 100%; height: 40px; font-size: 14px; font-weight: 600;
  letter-spacing: .025em;
}
.menu-cta .hdr-signout-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 8px 0;
}
.menu-cta .hdr-signout {
  display: inline;
  color: #fff;
  font-size: 14px;
}
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--page-px) 7rem;
}
@media (min-width: 768px) {
  main { padding: 24px var(--page-px) 4rem; }
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}
h1 {
  color: var(--red);
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
@media (min-width: 640px) { h1 { font-size: 2.5rem; } }
h1.hero {
  font-family: -apple-system, BlinkMacSystemFont, Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 48rem;
  margin: 0;
}
@media (min-width: 640px) { h1.hero { font-size: 3rem; } }
@media (min-width: 1024px) { h1.hero { font-size: 3.75rem; } }
.hero-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-row {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
  }
}
.hero-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 4px;
  padding-top: 8px;
}
@media (min-width: 768px) {
  .hero-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    gap: 0;
    padding-top: 12px;
    flex-shrink: 0;
    grid-template-columns: none;
  }
}
.hero-links a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #111;
}
.hero-links a:hover { text-decoration: underline; }
.hero-links a.accent { color: var(--red); }
.muted { color: var(--muted); }
.search-row { margin: 16px 0 0; position: relative; }
.home-search { margin-top: 32px; }
.home-search .search-row { margin: 0; }
.genre-bar { margin-top: 24px; }
.search-row-field { display: block; position: relative; margin: 0; }
.search-row .ico-search {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: #595959; pointer-events: none;
}
.search-row input {
  display: flex; width: 100%; height: 56px; margin: 0;
  border: 1px solid #dedfe1; border-radius: 999px;
  background: #fff; color: #111;
  padding: 0 56px 0 48px;
  font-size: 16px; font-weight: 400; outline: none;
  box-shadow: 0 0 0 1px #0000000a, 0 1px 2px -1px #0000000a, 0 4px 16px -4px #0000000f;
}
.search-row input::placeholder { color: #6b6b6b; }
.search-row input:focus {
  border-color: rgba(17,17,17,.30);
  box-shadow: 0 0 0 2px rgba(17,17,17,.15);
}
.search-go {
  position: absolute; top: 50%; right: 6px; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: #111; color: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.search-go:hover { background: rgba(17,17,17,.90); }
.search-go svg { width: 20px; height: 20px; }
h2 {
  color: var(--red);
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  margin: 36px 0 14px;
}
@media (min-width: 640px) { h2 { font-size: 1.875rem; } }
h3 { margin: 0 0 6px; font-size: 1.125rem; }
.genre-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--muted);
}
.genre-track-wrap {
  position: relative;
  margin-inline: calc(-1 * var(--page-px));
  overflow: hidden;
}
.genre-track {
  container-type: inline-size;
  overflow-x: auto;
  padding: 6px var(--page-px) 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.genre-track::-webkit-scrollbar { display: none; }
.genre-track-list {
  display: flex;
  gap: 8px;
  width: max-content;
}
.genre-track-list.tour {
  animation: genre-filter-tour 1.05s both;
}
@keyframes genre-filter-tour {
  0% {
    animation-timing-function: linear;
    transform: translate(0);
  }
  24% {
    animation-timing-function: cubic-bezier(.2, .75, .2, 1);
    transform: translate(var(--genre-shift, calc(100cqi - 100%)));
  }
  52% {
    animation-timing-function: cubic-bezier(.34, 1.56, .64, 1);
    transform: translate(-4.5rem);
  }
  68% {
    animation-timing-function: cubic-bezier(.34, 1.4, .64, 1);
    transform: translate(2.15rem);
  }
  84% {
    animation-timing-function: cubic-bezier(.22, 1, .36, 1);
    transform: translate(-0.4rem);
  }
  to { transform: translate(0); }
}
.genre-track-wrap::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 8px;
  width: 96px;
  background: linear-gradient(to left, #fff 0 28%, rgba(255,255,255,.55) 58%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.genre-nudge {
  display: none;
}
@media (min-width: 768px) {
  .genre-track-wrap::after { width: 128px; }
  .genre-nudge {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    cursor: pointer;
    place-items: center;
    display: grid;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
  }
  .genre-nudge.left { left: 8px; }
  .genre-nudge.right { right: 8px; }
  .genre-track-wrap:hover .genre-nudge,
  .genre-track-wrap:focus-within .genre-nudge {
    opacity: 1;
    pointer-events: auto;
  }
  .genre-nudge:disabled { cursor: default; }
  .genre-nudge:active:not(:disabled) { transform: translateY(-50%) scale(0.96); }
}
@media (prefers-reduced-motion: reduce) {
  .genre-track-list.tour { animation: none; }
  .genre-nudge { transition: none; }
}
.chip {
  display: inline-flex; align-items: center; flex: 0 0 auto;
  height: 36px; border: 1px solid #ddd; background: #fff; border-radius: 999px;
  padding: 0 14px; font-size: 14px; font-weight: 500; cursor: pointer;
  white-space: nowrap;
}
.chip.on { background: var(--well); border-color: #bbb; }
.chip.woke { color: var(--red); border-color: #f3b4b6; font-weight: 600; }
.chip.black { background: #111; color: #fff; border-color: #111; }
.genre-track-list .chip {
  background: #f7f7f7;
  border: 0;
  color: #111;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.genre-track-list .chip:hover { background: #ececec; }
.genre-track-list .chip.woke {
  background: #fff;
  border: 1px solid var(--red);
  color: #111;
  font-weight: 500;
}
.genre-track-list .chip.woke:hover {
  background: var(--red);
  color: #fff;
}
.grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid { grid-template-columns: 1fr 1fr 1fr; } }
.grid > .card {
  content-visibility: auto;
  contain-intrinsic-size: auto 380px;
}
.card {
  position: relative;
  background: #fff;
  padding: 8px;
  border: 0;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.039),
    0 1px 2px -1px rgba(0,0,0,.039),
    0 4px 16px -4px rgba(0,0,0,.059);
  overflow: hidden;
}
.card .card-link { display: block; color: inherit; }
.card .art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}
.card .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(17,17,17,.10);
  outline-offset: -1px;
}
.card .art img.art-fallback {
  width: 48px; height: 48px; margin: auto; outline: 0; opacity: .4;
}
.card .card-copy { padding: 12px 6px 0; }
.card .title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: #111;
  text-wrap: pretty;
}
.card .year {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: #595959;
}
.card .card-meta { padding: 0 6px 6px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  background: #f7f7f7;
  color: #595959;
  white-space: nowrap;
}
.pill.status, .pill.woke, .pill.red { background: var(--red); color: #fff; }
.pill.type { background: #111; color: #fff; gap: 6px; }
.pill .type-ico { width: 12px; height: 12px; object-fit: contain; display: block; }
.pill.type .type-ico { filter: none; }
.pill:hover { background: #ececec; }
.pill.status:hover, .pill.woke:hover, .pill.red:hover { background: var(--red); color: #fff; }
.pill.type:hover { background: #111; color: #fff; }
.card .rank {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #595959;
  font-variant-numeric: tabular-nums;
}
.stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.stars:hover .star { color: #bbb; }
a.stars:hover .star.on { color: var(--red); }
.star-row {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star {
  display: grid;
  place-items: center;
  padding: 2px;
  color: #dedfe1;
  line-height: 0;
}
.star.on { color: #111; }
.star svg { display: block; }
.star-score {
  font-size: 12px;
  font-weight: 500;
  color: #595959;
  font-variant-numeric: tabular-nums;
}
.rec-col .card .card-copy { padding-top: 12px; }
.rec-col .card .title { font-size: 1.125rem; }
.rec-col .card .year { font-size: 12px; }
@media (min-width: 1024px) {
  .rec-col .card { height: 100%; }
  .rec-col .card .card-copy { padding-top: 16px; }
  .rec-col .card .title { font-size: 2.25rem; line-height: 1.15; }
  .rec-col .card .year { margin-top: 8px; font-size: 14px; }
}
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; border-radius: 999px; padding: 10px 16px; background: #111; color: #fff; cursor: pointer;
}
.btn.red { background: var(--red); color: #fff; }
.btn.red:hover { background: #bf161c; color: #fff; }
.btn.ghost { background: var(--well); color: #111; }
.well { background: var(--well); border-radius: 12px; padding: 16px; }
.empty { color: var(--muted); padding: 24px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 20px;
}
@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section-head a { font-size: 14px; font-weight: 500; color: var(--muted); }
.home-woke .why-out {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  align-self: flex-end;
  text-align: right;
}
.home-woke .why-out-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
.sorts { display: flex; gap: 8px; flex-wrap: wrap; }
.two-col { display: grid; gap: 24px; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 2fr 1fr; } }
.meme-stage { position: relative; background: #111; border-radius: 12px; overflow: hidden; min-height: 240px; }
.meme-stage img { width: 100%; max-height: 520px; object-fit: contain; margin: 0 auto; background: #111; }
.bar { position: absolute; left: 0; bottom: 0; height: 4px; background: var(--red-bright); width: 0; }
.share-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 12px 0; }
.share-row img { width: 22px; height: 22px; }
.drop {
  border: 1px dashed #ccc; border-radius: 12px; padding: 18px; text-align: center; background: var(--well);
}
.crit { display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.crit img { width: 88px; height: 88px; object-fit: contain; }
.chain { border: 0; background: transparent; cursor: pointer; color: #888; }
.copied { font-size: 12px; color: var(--muted); }
.type-cards { display: grid; gap: 12px; }
@media (min-width: 700px) { .type-cards { grid-template-columns: 1fr 1fr; } }
.type-card { border: 1px solid var(--line); border-radius: 12px; padding: 16px; cursor: pointer; display: flex; gap: 12px; }
.type-card.on { background: var(--well); }
.type-card img { width: 48px; height: 48px; }
form label { display: block; font-size: 13px; margin: 10px 0 4px; }
form input, form textarea, form select {
  width: 100%; border: 1px solid #ccc; border-radius: 8px; padding: 10px;
}
.suggest { position: relative; }
.suggest-list {
  position: absolute; left: 0; right: 0; background: #fff; border: 1px solid #ddd; border-radius: 8px; z-index: 8;
}
.suggest-list button { display: block; width: 100%; text-align: left; border: 0; background: #fff; padding: 8px 10px; cursor: pointer; }
.xclose { position: absolute; right: 8px; top: 8px; border: 0; background: #eee; border-radius: 50%; width: 22px; height: 22px; }
.admin-note { font-size: 13px; color: var(--muted); }
.admin-alert {
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid var(--red);
  background: #fff5f5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.admin-alert a { color: var(--red); text-decoration: none; }
.admin-alert a:hover { text-decoration: underline; }
.admin-page h1 { font-size: 42px; margin: 0 0 8px; }
.admin-page .eyebrow { text-transform: none; color: var(--muted); margin: 8px 0 0; }
.admin-page h2 { color: var(--red); font-size: 22px; margin: 36px 0 8px; }
.admin-page .lede { max-width: 720px; color: #333; }
.panel-dense.admin-page h1,
.panel-dense.profile-page h1 {
  font-size: 28px;
  margin: 0 0 4px;
  letter-spacing: -0.03em;
}
.panel-dense .eyebrow,
.panel-dense .queue-kicker { margin: 0 0 2px; font-size: 12px; }
.panel-dense .lede {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.4;
  max-width: none;
}
.panel-dense .admin-fold { margin-top: 6px; }
.panel-dense .admin-fold summary,
.panel-dense .part-fold summary { padding: 8px 0; font-size: 14px; }
.panel-dense .admin-fold-body { padding: 0 0 10px; }
.panel-dense .admin-card { padding: 12px 14px; border-radius: 14px; }
.panel-dense .admin-grid,
.panel-dense .admin-stats-3 { gap: 10px; }
.panel-dense .admin-stats-3 { margin-top: 8px; }
.panel-dense .stat-n { font-size: 24px; margin: 2px 0 0; }
.panel-dense .profile-card { margin-top: 8px; padding: 14px 16px; }
.panel-dense .admin-fold .profile-card { margin: 0; padding: 4px 0 0; border: 0; box-shadow: none; }
.panel-dense .profile-h {
  margin: 14px 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}
.panel-dense.admin-page .profile-h { color: #111; }
.panel-dense .profile-toggle { margin-top: 8px; }
.panel-dense .admin-page label.profile-toggle { margin-top: 8px; }
.panel-dense .profile-pw input,
.panel-dense .profile-pw select,
.panel-dense .pw-wrap input,
.panel-dense .clout-admin input { height: 38px; }
.panel-dense .profile-pw .btn { margin-top: 8px; }
.panel-dense .profile-avatar-edit img { width: 56px; height: 56px; }
.panel-dense .clout-admin { margin: 10px 0 0; padding: 10px 12px; }
.panel-dense .nws-email { padding: 14px; margin-top: 10px; }
.panel-dense .email-edit { padding: 12px; }
.panel-dense .admin-note { margin: 0 0 8px; }
.panel-dense .photo-drop-label { margin: 6px 0 6px; }
.news-top-row { grid-template-columns: minmax(0, 1fr) 11rem; }
.profile-notify {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  align-items: start;
}
.profile-notify .profile-toggle { margin-top: 8px; }
@media (max-width: 700px) {
  .news-top-row,
  .profile-notify { grid-template-columns: 1fr; }
}
.admin-card {
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 20px 22px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17,17,17,.04);
  overflow: visible;
}
.admin-stats-3 { overflow: visible; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-stats-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 16px; }
.account-grid { margin-top: 8px; grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 860px) {
  .account-grid { grid-template-columns: 1fr; }
}
.stat-k { font-size: 11px; font-weight: 600; letter-spacing: .08em; color: #8a8a8a; text-transform: uppercase; }
.stat-n { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; margin: 6px 0 0; line-height: 1.1; }
.stat-n span { font-size: 15px; font-weight: 400; color: #555; margin-left: 6px; }
.stat-names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.stat-names a { color: #111; }
.stat-names a:hover { text-decoration: underline; text-underline-offset: 3px; }
.acct-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.acct-chip img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--well);
  box-shadow: 0 0 0 1px var(--line);
}
.acct-search-label {
  display: block;
  max-width: 28rem;
  margin: 12px 0 8px;
  font-size: 13px;
  color: #555;
}
.acct-search-label input {
  width: 100%;
  height: 44px;
  margin-top: 6px;
  border: 0;
  border-radius: 12px;
  background: #f3f3f3;
  padding: 0 14px;
  font: inherit;
  font-size: 16px;
}
.acct-chip[hidden] { display: none !important; }
#account-edit { margin: 8px 0 24px; scroll-margin-top: calc(var(--header-h, 109px) + 12px); }
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 88px;
  margin-top: 18px;
  padding-top: 18px;
  border-bottom: 1px solid #eee;
  overflow: visible;
}
.bar-col {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  cursor: default;
}
.bar-col i {
  display: block;
  width: 100%;
  background: var(--red);
  min-height: 0;
  border-radius: 2px 2px 0 0;
}
.bar-col.empty i { background: #ececec; min-height: 2px; }
.bar-col:hover i { background: #9f1218; }
.bar-col.empty:hover i { background: #d8d8d8; }
.bar-col::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: pre;
  pointer-events: none;
  opacity: 0;
  z-index: 8;
  min-width: 108px;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.bar-col.start::after { left: 0; transform: none; }
.bar-col.end::after { left: auto; right: 0; transform: none; }
.bar-col:hover::after { opacity: 1; }
.bar-axis {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  font-size: 11px;
  color: #9a9a9a;
}
.bar-axis span { flex: 1; text-align: center; white-space: nowrap; overflow: hidden; }
.row-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.row-between { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.grant-row { display: grid; grid-template-columns: 1fr 1fr 180px auto; gap: 12px; align-items: end; }
.grant-row label, .admin-page label { display: block; font-size: 13px; color: #555; }
.admin-page label.admin-date-wrap {
  display: block;
  max-width: 16rem;
  font-size: 14px;
  font-weight: 500;
  color: #888;
}
.admin-page input.admin-date {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: 44px;
  margin-top: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #f3f3f3;
  color: #111;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  color-scheme: light;
}
.clout-panel {
  margin-top: 28px;
  padding: 16px 16px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.clout-score {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
}
.clout-tier {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}
.clout-lead, .clout-note {
  font-size: 14px;
  color: #333;
  line-height: 1.45;
}
.clout-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.clout-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.clout-table th, .clout-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.clout-table th { font-weight: 600; color: #111; }
.clout-table tr:last-child td { border-bottom: 0; }
.clout-table tr.on td { background: #fff5f5; font-weight: 600; }
.woke-ev-pending {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}
.profile-ledger {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.profile-ledger li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
#nbody, #ne-body {
  width: 100%;
  min-height: 110px;
  margin: 8px 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
.html-insert { position: relative; display: inline-block; }
.html-insert-menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  min-width: 228px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.html-insert-menu[hidden] { display: none !important; }
.html-insert-menu button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}
.html-insert-menu button:hover { background: #f3f3f3; }
.html-insert-color {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 14px;
}
.html-insert-color .swatch {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
}
.html-insert-color input[type="color"] {
  width: 28px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.admin-page input, .admin-page textarea, .admin-page select {
  width: 100%; border: 0; background: #f3f3f3; border-radius: 10px; padding: 10px 12px; margin-top: 6px;
}
.photo-drop-label {
  margin: 12px 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #888;
}
.photo-drop {
  border: 1px dashed #ccc;
  border-radius: 28px;
  background: #f7f7f7;
  text-align: center;
  overflow: hidden;
}
.photo-drop label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 148px;
  padding: 28px 16px;
  cursor: pointer;
}
.photo-drop.over { border-color: #111; background: #eee; }
.photo-drop img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  background: #111;
}
.email-previews { display: grid; grid-template-columns: 1fr; gap: 20px; }
.mini-red { display: inline-block; background: var(--red); color: #fff; padding: 8px 12px; border-radius: 4px; font-size: 13px; }
.danger-outline { color: var(--red) !important; background: #fff !important; border: 1px solid #f1b6b6; }
.remove-ask {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--red);
  border-radius: 12px;
  background: #fff5f5;
}
.remove-ask p { margin: 0 0 10px; font-size: 14px; color: #111; }
.remove-ask .row-actions { margin: 0; gap: 8px; }
.admin-only-box {
  margin-top: 14px;
  padding: 12px;
  border: 1px dashed #111;
  border-radius: 12px;
  background: #fafafa;
}
.admin-only-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111;
}
.admin-only-box .row-actions { margin: 0; flex-wrap: wrap; }
.admin-only-box .admin-note { margin: 8px 0 0; font-size: 13px; color: #555; }
.admin-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 4px;
  font-size: 14px;
}
.admin-check input { margin-top: 3px; }
.admin-submitter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.admin-submitter img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  background: #eee;
}
.admin-submitter img.round { border-radius: 50%; }
.admin-submitter-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #888;
}
.admin-submitter .comment-name { margin: 2px 0 0; }
.show-pend .art { aspect-ratio: 16/9; overflow: hidden; border-radius: 10px; background: #eee; margin-bottom: 10px; }
.show-pend .art img { width: 100%; height: 100%; object-fit: cover; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.red-word { color: var(--red); }
.rel-table { font-size: 13px; }
.rel-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rel-table a { color: #111; font-weight: 600; text-decoration: none; }
.rel-table a:hover { color: var(--red); text-decoration: underline; }
.rel-table .tabular { font-variant-numeric: tabular-nums; }
.rel-table th { color: #888; font-weight: 600; font-size: 11px; letter-spacing: .04em; }
.tight { margin: 8px 0 0; }
.spark { height: 48px; background: linear-gradient(#fff,#fff), repeating-linear-gradient(90deg,#eee 0 1px,transparent 1px 18px); margin-top: 8px; }
@media (max-width: 860px) {
  .admin-grid, .admin-stats-3, .email-previews, .grant-row { grid-template-columns: 1fr; }
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 8px; border-bottom: 1px solid var(--line); }
.hidden { display: none !important; }

button:not(:disabled),
[role="button"]:not(:disabled) { cursor: pointer; }
#nws-boot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 18px;
  color: var(--muted);
}
#nws-boot .boot-wait {
  margin: 28px 0 0;
  font-size: 15px;
  color: #888;
}
body:has(#app:not(:empty)) #nws-boot { display: none !important; }
.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
}
.news-body { max-width: none; }
.news-body a { color: var(--red); text-decoration: underline; }
.news-body p { margin: 0 0 12px; }
.lede { font-size: 18px; color: #333; max-width: 72ch; }
.art img { width: 100%; height: auto; }

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 32rem;
  margin-top: 40px;
}
.home-stats a { display: block; border-radius: 6px; color: inherit; }
.home-stats .stat-label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #595959;
  text-underline-offset: 4px;
}
.home-stats .stat-you {
  font-weight: 600;
  font-style: italic;
  color: inherit;
}
.home-stats a:hover .stat-label {
  color: #111;
  text-decoration: underline;
}
.home-stats .stat-num {
  margin: 4px 0 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: #111;
  line-height: 1.1;
}
.home-stats a:hover .stat-num { color: var(--red); }

.prose-page { max-width: 48rem; }
.prose-page h1 { color: #111; }
.faq-lede { margin: 12px 0 0; max-width: 42rem; color: var(--muted); font-size: 1rem; line-height: 1.625; }
.adapted { margin: 16px 0 0; font-size: 14px; color: var(--muted); }
.adapted a { color: var(--red); text-decoration: underline; }
.crit-list { list-style: none; margin: 32px 0 0; padding: 0; }
.crit-list .crit {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.crit-num { margin: 0; font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.crit-line { font-style: italic; margin: 0 0 8px; }
.crit-copy { margin: 0; color: #333; }
.faq-page h1 { color: #111; font-size: 2.25rem; letter-spacing: -0.025em; margin: 8px 0 0; }
@media (min-width: 640px) { .faq-page h1 { font-size: 3rem; } }
.faq-page .text-muted { color: var(--muted); }
.faq-page .text-fg { color: #111; }
.faq-page .text-accent { color: var(--red); }
.faq-page h2 {
  color: #111 !important;
  font-size: 1.875rem !important;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 !important;
  scroll-margin-top: calc(var(--header-h, 4.5rem) + 1rem);
}
.faq-page nav[aria-label="FAQ contents"] {
  margin-top: 32px;
  columns: 1;
  column-gap: 40px;
}
@media (min-width: 640px) {
  .faq-page nav[aria-label="FAQ contents"] { columns: 2; }
}
.faq-page nav[aria-label="FAQ contents"] a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #111;
  break-inside: avoid;
}
.faq-page nav[aria-label="FAQ contents"] a:hover { text-decoration: underline; }
.faq-page .space-y-16 > * + * { margin-top: 64px; }
.faq-page .space-y-4 > * + * { margin-top: 16px; }
.faq-page .space-y-6 > * + * { margin-top: 24px; }
.faq-page .space-y-3 > * + * { margin-top: 12px; }
.faq-page .space-y-2 > * + * { margin-top: 8px; }
.faq-page .space-y-1 > * + * { margin-top: 4px; }
.faq-page .mt-3 { margin-top: 12px; }
.faq-page .mt-4 { margin-top: 16px; }
.faq-page .mt-6 { margin-top: 24px; }
.faq-page .mt-8 { margin-top: 32px; }
.faq-page .pt-4 { padding-top: 16px; }
.faq-page .border-t { border-top: 1px solid var(--line); }
.faq-page .max-w-2xl { max-width: 42rem; }
.faq-page .leading-relaxed { line-height: 1.625; }
.faq-page .text-base { font-size: 1rem; }
.faq-page .text-sm { font-size: 14px; }
.faq-page .underline { text-decoration: underline; text-underline-offset: 4px; }
.faq-page a.text-fg { color: #111; }
.faq-page .list-disc { list-style: disc; padding-left: 20px; }
.faq-page table { width: 100%; min-width: 28rem; border-collapse: collapse; font-size: 14px; color: #111; }
.faq-page th { padding: 8px 12px 8px 0; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--line); text-align: left; }
.faq-page td { padding: 8px 12px 8px 0; border-bottom: 1px solid rgba(230,230,230,.7); }
.faq-page .font-semibold { font-weight: 600; }
.faq-page .font-medium { font-weight: 500; }
.pager button, .pager a { font-size: 14px; font-weight: 500; }
.news-body { max-width: none; font-size: 1rem; line-height: 1.625; }

h1 .text-fg { color: #111; }
.search-results h2 { margin-top: 40px; }
.genre-track-list .chip.black {
  background: #111;
  color: #fff;
  border: 0;
}
.genre-track-list .chip.black:hover { background: #111; color: #fff; }
.genre-track-list .chip.woke.on {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.rec-news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
  align-items: start;
}
@media (min-width: 1024px) {
  .rec-news {
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    align-items: stretch;
  }
  .rec-col,
  .news-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .rec-col .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .rec-col .card-link { flex: 0 0 auto; }
  .rec-col .card-meta {
    margin-top: 8px;
    padding-bottom: 6px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .rec-col .pills { margin-top: 0; }
  .rec-col .rec-dek {
    flex: 1;
  }
  .news-col .news-stack { flex: 1; }
}
.rec-head { margin-bottom: 24px; }
.rec-head h2, .news-head h2 { margin: 0; }
.rec-dek {
  margin: 12px 6px 4px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #111;
  letter-spacing: -0.01em;
}
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.news-head a {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.news-head a:hover { color: #111; }
.news-stack { display: grid; gap: 16px; }
.news-card .card-copy { padding: 12px 6px 6px; }
.news-card .title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.375;
  color: #111;
}
.home-newest { margin-top: 64px; }

.news-article { max-width: 72rem; }
.news-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  margin-top: 20px;
}
.news-date {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #595959;
}
.news-article h1 {
  margin: 8px 0 0;
  width: 100%;
  color: var(--red);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .news-article h1 { font-size: 3rem; }
}
.news-dek {
  margin: 16px 0 0;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}
.news-body {
  margin-top: 32px;
  width: 100%;
  max-width: none;
  font-size: 1rem;
  line-height: 1.625;
  color: #111;
}
.news-body p { margin: 0 0 16px; text-wrap: pretty; }
.news-body a { color: var(--red); font-weight: 600; }
.news-body a:hover { text-decoration: underline; }
.news-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  display: block;
  margin: 0 0 16px;
}
.news-body img { width: 100%; height: auto; }
.news-body strong { font-weight: 600; }
.news-more { margin: 32px 0 0; }
.btn.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.btn.read-more:hover { filter: brightness(0.95); color: #fff; }
.share-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.share-story p {
  margin: 0;
  flex-shrink: 0;
  font-size: 14px;
  color: #595959;
}
.share-icons { display: flex; align-items: center; gap: 16px; }
.share-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  border-radius: 3px;
}
.share-ico:hover { opacity: 0.8; }
.share-ico svg { width: 16px; height: 16px; display: block; }
.share-ico img {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}
.share-ico.mewe img,
.foot-ico img {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.comments-block { margin-top: 48px; }
.comments-block h2 {
  margin: 0;
  color: #111;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.comment-list { list-style: none; margin: 24px 0 0; padding: 0; }
.comment-list li { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 20px; }
.comment-row { display: flex; align-items: flex-start; gap: 12px; }
.comment-row > div {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.comment-edit {
  display: block;
  width: 100%;
  margin: 8px 0 0;
}
.comment-edit textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 8rem;
  border: 0;
  border-radius: 12px;
  background: var(--well);
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  color: #111;
  resize: vertical;
}
.comment-edit textarea:focus { outline: 2px solid rgba(17,17,17,.15); background: #fff; }
.comment-row img {
  width: 48px; height: 48px; object-fit: contain; background: var(--well); flex-shrink: 0;
}
.comment-name { margin: 0; font-size: 14px; font-weight: 600; color: #111; }
.comment-date { margin: 2px 0 0; font-size: 11px; color: #888; }
.comment-body { margin: 4px 0 0; white-space: pre-wrap; color: #111; }
.comment-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 8px;
  font-size: 12px;
}
.comment-actions a, .comment-actions button {
  color: var(--red); font-weight: 500; background: none; border: 0; padding: 0; cursor: pointer; font-size: 12px;
}
.comment-actions a:first-child, .comment-actions a:nth-child(2) {
  display: inline-flex; height: 32px; align-items: center; padding: 0 10px;
  border: 1px solid #ccc; border-radius: 999px; color: #595959;
}
.comment-actions span { color: #595959; font-variant-numeric: tabular-nums; }
.comment-form { position: relative; margin-top: 24px; }
.comment-form > label { display: block; font-size: 14px; font-weight: 500; color: #595959; margin-bottom: 12px; }
.comment-compose { display: flex; align-items: flex-start; gap: 12px; }
.comment-compose > img {
  width: 48px; height: 48px; object-fit: cover; border-radius: 50%; background: var(--well); flex-shrink: 0;
}
.comment-fields { flex: 1; min-width: 0; }
.comment-fields textarea {
  width: 100%; min-height: 7rem; border: 0; border-radius: 12px; background: var(--well);
  padding: 12px 14px; font: inherit; font-size: 1rem; color: #111; resize: vertical;
}
.comment-fields textarea:focus { outline: 2px solid rgba(17,17,17,.15); background: #fff; }
.post-anon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  font-size: 14px;
  color: #595959;
  font-weight: 500;
  cursor: pointer;
}
.post-anon input { width: 16px; height: 16px; accent-color: #111; }
.comment-fields { flex: 1; min-width: 0; }
.comment-fields textarea {
  width: 100%; min-height: 7rem; border: 0; border-radius: 12px; background: var(--well);
  padding: 12px 14px; font: inherit; font-size: 1rem; color: #111; resize: vertical;
}
.comment-fields textarea:focus { outline: 2px solid rgba(17,17,17,.15); background: #fff; }
.comment-hint { margin: 12px 0; font-size: 12px; color: #595959; }
.comment-hint a { color: inherit; text-decoration: underline; }
.comment-post {
  height: 36px; padding: 0 16px; border-radius: 999px; background: #111; color: #fff; font-size: 14px;
}
.all-news { margin-top: 40px; }
.all-news a { font-size: 14px; font-weight: 500; color: #595959; }
.all-news a:hover { color: #111; }

.news-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #595959;
}
.news-index-title {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .news-index-title { font-size: 3rem; }
}
.news-index {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.news-index li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.news-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: inherit;
}
.news-row img,
.news-thumb-ph {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--well);
}
@media (min-width: 640px) {
  .news-row img, .news-thumb-ph { width: 96px; height: 96px; }
}
.news-row h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #111;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .news-row h3 { font-size: 1.5rem; }
}
.news-row-dek {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}
.news-row-date {
  margin: 8px 0 0;
  font-size: 14px;
  color: #888;
}
.news-more-btn {
  display: block;
  width: 100%;
  margin-top: 32px;
  padding: 12px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}
.news-more-btn:hover { background: var(--well); }
.comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 8px;
}
.comment-clout {
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
}
.comment-badge {
  margin: 0;
  font-size: 11px;
  color: #595959;
}
.comment-row img.round {
  border-radius: 50%;
  object-fit: cover;
}

/* later matching overrides */
h1 {
  color: var(--red);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 8px 0 0;
}
@media (min-width: 640px) {
  h1 { font-size: 3rem; line-height: 1; }
}
h1 .text-fg { color: #111; }
h1.hero {
  color: var(--red);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 48rem;
}
@media (min-width: 640px) { h1.hero { font-size: 3rem; } }
@media (min-width: 1024px) { h1.hero { font-size: 3.75rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.search-type-hint {
  margin: 20px 0 0;
  font-size: 14px;
  color: #595959;
}
.type-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  border: 0;
  padding: 0;
  min-width: 0;
}
.type-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid #ececec;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.type-filter:hover { background: var(--well); }
.type-filter.on {
  background: #111;
  color: #fff;
  border-color: #111;
}
.type-filter img { width: 14px; height: 14px; object-fit: contain; display: block; }
.type-filter.on img { filter: invert(1); }
.type-filter .type-count { color: #595959; }
.type-filter.on .type-count { color: rgba(255,255,255,.7); }
.type-filter.queue-filter.on {
  background: #111;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
}
.type-filter.queue-filter.on .type-count { color: rgba(255,255,255,.7); }
.type-filter.queue-filter:hover { background: var(--well); }
.type-filter.queue-filter.on:hover { background: #111; }

.card.card-queue {
  box-shadow:
    0 0 0 2px var(--red),
    0 1px 2px -1px rgba(213,25,32,.12),
    0 4px 16px -4px rgba(213,25,32,.18);
}
.review-band {
  position: absolute;
  left: -25%;
  top: 50%;
  width: 150%;
  z-index: 2;
  transform: translateY(-50%) rotate(-18deg);
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 6px 8px;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.news-kicker { margin: 0; font-size: 14px; font-weight: 500; color: #595959; }
.news-index {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  border-top: 1px solid #ececec;
}
.news-index li {
  padding: 24px 0;
  border-bottom: 1px solid #ececec;
}
.news-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.news-row-media {
  flex: 0 0 160px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17,17,17,.06), 0 0 0 1px rgba(17,17,17,.08);
}
@media (min-width: 768px) {
  .news-row-media { flex-basis: 336px; }
}
.news-row-media .art {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--well);
}
.news-row-media img,
.news-row-media .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.news-thumb-ph {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--well);
  border-radius: 8px;
}
.news-row-copy { min-width: 0; flex: 1; }
.news-row h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: #111;
}
@media (min-width: 640px) {
  .news-row h3 { font-size: 1.5rem; line-height: 32px; }
}
.news-row-dek {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}
.news-row-date {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: #6b6b6b;
}

.criteria-page .crit-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #595959;
}
.criteria-page h1 {
  margin: 8px 0 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--red);
}
@media (min-width: 640px) {
  .criteria-page h1 { font-size: 3rem; }
}
.criteria-page .crit-lede {
  margin: 12px 0 0;
  max-width: 42rem;
  color: #595959;
}
.crit-list { list-style: none; padding: 0; margin: 40px 0 0; }
.crit {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 24px 0 8px;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h, 4.5rem) + 1rem);
  overflow: visible;
}
@media (min-width: 640px) { .crit { gap: 24px; } }
.crit img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
@media (min-width: 640px) { .crit img { width: 80px; height: 80px; } }
.crit-body { position: relative; min-width: 0; flex: 1; padding-right: 40px; overflow: visible; }
.crit-chain {
  position: absolute;
  top: -4px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chain {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8a8a8a;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.chain:hover { background: var(--well); color: #111; }
.copied {
  margin-top: -4px;
  padding-right: 4px;
  font-size: 11px;
  color: #595959;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.copied.on { opacity: 1; }
.crit-num { margin: 0; font-size: 14px; font-weight: 500; color: var(--red); }
.crit-body h2 { margin: 4px 0 0; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.025em; color: #111; }
.crit-line { margin: 4px 0 0; font-size: 14px; color: #595959; font-style: normal; }
.crit-copy { margin: 12px 0 0; max-width: 42rem; color: #111; }
.crit-copy-list {
  list-style: decimal;
  list-style-position: outside;
  margin: 8px 0 0;
  padding-left: 1.5rem;
  max-width: 42rem;
  color: #111;
}
.crit-copy-list li { margin: 4px 0; display: list-item; }

.discord-page { margin-top: 8px; }
.discord-page h1 .discord-accent, .discord-accent { color: var(--red); }
.discord-grid {
  display: grid;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
.discord-widget-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 64px;
}
.discord-widget {
  position: relative;
  width: 350px;
  max-width: 100%;
}
.discord-widget iframe {
  display: block;
  width: 100%;
  height: 500px;
  background: #111;
  border: 0;
}
.discord-start {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
}
.discord-start svg { display: block; flex-shrink: 0; }
.discord-join-arrow {
  display: block;
  transform-origin: 50%;
  animation: discord-join-wobble 1s ease-in-out infinite;
}
@keyframes discord-join-wobble {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-14deg); }
  40% { transform: rotate(12deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .discord-join-arrow { animation: none; }
}
.discord-start-side { display: none; }
.discord-start-below {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  white-space: nowrap;
}
.discord-widget-col { order: 2; }
.discord-copy { order: 1; font-size: 16px; line-height: 1.55; color: #595959; }
.discord-lede { margin: 0; }
.discord-copy a {
  color: #111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.discord-copy a.discord-join {
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.discord-meta {
  margin-top: 32px;
}
.discord-meta p {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.5;
  color: #595959;
}
.discord-meta b { font-weight: 600; color: #111; }
@media (min-width: 1024px) {
  .discord-grid { grid-template-columns: auto minmax(0, 1fr); gap: 40px; }
  .discord-widget-col {
    order: 1;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 0;
  }
  .discord-copy { order: 2; }
  .discord-start-below { display: none; }
  .discord-start-side {
    display: flex;
    margin: 0 0 4px 8px;
    font-size: 18px;
  }
  .discord-start-side svg { width: 56px; height: 56px; }
}

.discord-banner {
  margin-top: 64px;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  padding: 20px;
  color: #fff;
}
@media (min-width: 640px) {
  .discord-banner { padding: 20px 32px; }
}
.discord-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media (min-width: 640px) {
  .discord-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}
.discord-banner p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}
@media (min-width: 640px) {
  .discord-banner p { align-items: center; font-size: 18px; }
}
.discord-banner svg { width: 32px; height: 32px; flex-shrink: 0; }
.discord-banner .btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
  text-decoration: none;
}
.discord-banner .btn-discord:hover { background: #c0161d; }

.card {
  position: relative;
  padding: 8px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  overflow: visible;
  box-shadow: 0 1px 2px rgba(17,17,17,.06), 0 0 0 1px rgba(17,17,17,.08);
}
.card-x {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,17,17,.72);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
}
.watch-review {
  margin: 8px 4px 2px;
  text-align: center;
  font-size: 13px;
}
.donate-page { margin: 0; }
.donate-bleed {
  margin-left: calc(-1 * var(--page-px));
  margin-right: calc(-1 * var(--page-px));
  margin-top: -8px;
  overflow: hidden;
}
.donate-frame {
  display: block;
  width: 100%;
  min-height: 90vh;
  height: 90vh;
  border: 0;
  background: #fff;
  margin-bottom: -64px;
}

.syn-page { margin-top: 4px; }
.syn-page h1 { margin: 8px 0 0; }
.syn-hero {
  margin: 16px 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #595959;
}
.syn-lede {
  margin: 12px 0 0;
  max-width: 42rem;
  font-size: 16px;
  line-height: 1.55;
  color: #595959;
}
.syn-kit { margin-top: 64px; scroll-margin-top: calc(var(--header-h, 109px) + 12px); }
.syn-kit h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--red);
}
@media (min-width: 640px) { .syn-kit h2 { font-size: 1.875rem; } }
.syn-preview {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.syn-preview iframe { display: block; width: 100%; border: 0; background: #fff; vertical-align: top; }
#imageboard .syn-preview { max-height: 380px; }
.syn-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 20px;
  border-bottom: 1px solid var(--line);
}
.syn-tabs button {
  border: 0;
  background: transparent;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}
.syn-tabs button:hover { color: #111; }
.syn-tabs button.on { background: #111; color: #fff; }
.syn-steps {
  margin: 16px 0 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #595959;
}
.syn-steps li { margin: 0 0 4px; }
.syn-snip {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  color: #fff;
}
.syn-snip-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.syn-snip-bar p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.syn-copy {
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
}
.syn-snip pre {
  margin: 0;
  padding: 16px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.5;
  color: var(--red);
  white-space: pre-wrap;
  word-break: break-word;
}
.syn-snip code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: inherit; }

.watchlist-page { margin-top: 4px; }
.watchlist-tease { max-width: 40rem; }
.watchlist-cta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.watchlist-cta .btn, .watchlist-cta .join-cta {
  width: auto;
  padding: 0 20px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.watchlist-ghost {
  margin-top: 28px;
  pointer-events: none;
  user-select: none;
}
.watchlist-ghost .card {
  opacity: 0;
  filter: grayscale(0.2);
  animation: watch-ghost-in 1.1s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.14s);
}
@keyframes watch-ghost-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.38; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .watchlist-ghost .card { animation: none; opacity: 0.38; }
}
.card .art {
  aspect-ratio: 16/9;
  background: var(--well);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}
.news-card {
  display: block;
  padding: 8px;
  border: 0;
  border-radius: 12px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17,17,17,.06), 0 0 0 1px rgba(17,17,17,.08);
}
body:has(#app:not(:empty)) .seo-home-h1,
body:has(#app:not(:empty)) .ssr-home,
body:has(#app:not(:empty)) .ssr-404 { display: none !important; }
.ssr-home { max-width: var(--max); margin: 0 auto; padding: 18px var(--page-px) 0; }
.ssr-lcp { display: block; max-width: 36rem; }
.ssr-lcp img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; }
.home-newest, .home-queue, .home-woke, .discord-banner {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.notfound-page {
  max-width: 40rem;
  margin: 36px auto 80px;
  padding: 0 var(--page-px);
  text-align: center;
}
.notfound-art {
  display: block;
  width: min(100%, 479px);
  height: auto;
  margin: 12px auto 28px;
}
.notfound-page h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
}
.notfound-page p {
  margin: 0 auto 22px;
  max-width: 34rem;
  font-size: 17px;
  line-height: 1.45;
  color: #444;
}
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.notfound-links .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 4px;
}
.notfound-links .btn.ghost {
  background: #fff;
  color: #111;
  border: 1px solid #d8d8d8;
}
.notfound-links .btn:hover { filter: brightness(1.05); }

.type-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #595959;
}
h1.type-h1 { margin: 8px 0 0; }
h1.type-h1 .type-lead {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
h1.type-h1 .type-ico {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.type-lede {
  margin: 12px 0 0;
  max-width: 42rem;
  color: #595959;
  font-size: 16px;
  line-height: 1.5;
}
.type-rec { margin: 12px 0 0; }
.type-rec a {
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
}
.type-rec a:hover { color: #111; }
.type-shelf-grid { margin-top: 32px; }
h1.type-lead,
h1 .type-lead { gap: 12px; }
.type-lead .type-ico,
h1 .type-ico {
  width: 0.85em;
  height: 0.85em;
  object-fit: contain;
  flex-shrink: 0;
}
.type-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.type-meta .type-ico,
.queue-meta .type-ico {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
  vertical-align: -2px;
}
.pill.type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hdr-links a img,
.menu-grid a img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.type-filter .type-ico {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}


/* --- restored late styles: suggest, show page, queue, memes, submit, login --- */
.search-suggest-wrap {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 4px);
  z-index: 40;
}
form.has-suggest,
.search-row-field,
.hdr-search label {
  position: relative;
}
.search-suggest {
  list-style: none;
  margin: 0;
  padding: 30px 0 6px;
  background: #fff;
  color: #111;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(17,17,17,.12);
  max-height: 320px;
  overflow: auto;
}
.search-suggest-close,
.xclose {
  position: absolute;
  right: 8px; top: 8px;
  z-index: 2;
  border: 0;
  background: #eee;
  color: #111;
  border-radius: 50%;
  width: 22px; height: 22px;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.search-suggest-close:hover,
.xclose:hover { background: #ddd; }
.search-suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.search-suggest-item:hover,
.search-suggest-item.on { background: #f4f4f4; }
.search-suggest-item .sug-title { flex: 1; min-width: 0; white-space: normal; line-height: 1.3; }
.search-suggest-item .sug-woke,
.search-suggest-item .sug-not,
.search-suggest-item .sug-pending {
  flex-shrink: 0; height: 22px; padding: 0 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}
.search-suggest-item.did-you-mean-item {
  font-weight: 600;
  color: #111;
}
.search-suggest-item.did-you-mean-item .sug-title { color: #111; }
.did-you-mean {
  margin: 10px 0 0;
  font-size: 16px;
  color: #333;
}
.did-you-mean a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.send-input .did-you-mean-item .sug-name { font-weight: 600; }

footer {
  background: #111;
  color: #fff;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) {
  footer { padding-bottom: 48px; }
}
.foot {
  max-width: 72rem;
  margin: 0 auto;
  padding: 48px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .foot {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.foot-brand img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left;
}
.foot-blurb {
  margin: 16px 0 0;
  max-width: 24rem;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255,255,255,.6);
}
.foot-end {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
@media (min-width: 768px) { .foot-end { align-items: flex-end; } }
.foot-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) { .foot-social { justify-content: flex-end; } }
.foot-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.foot-ico:hover { background: rgba(255,255,255,.2); }
.foot-ico svg { width: 16px; height: 16px; display: block; }
.foot-ico img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}
.foot-legal {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}
@media (min-width: 768px) { .foot-legal { text-align: right; } }
.foot a.foot-bother {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--red);
  text-transform: uppercase;
  text-underline-offset: 4px;
}
.foot a.foot-bother:hover { color: var(--red); text-decoration: underline; }
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 8px;
  font-size: 14px;
}
@media (min-width: 768px) { .foot-nav { justify-content: flex-end; } }
.foot-nav a { color: rgba(255,255,255,.6); font-weight: 400; }
.foot-nav a:hover { color: #fff; }

.queue-kicker { margin: 0; font-size: 14px; font-weight: 500; color: #595959; }
.queue-page { max-width: 72rem; }
.queue-page h1 {
  margin: 8px 0 0;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}
@media (min-width: 640px) {
  .queue-page h1 { font-size: 3rem; }
}
.home-queue h2, .home-woke h2, .home-memes h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .home-queue h2, .home-woke h2 { font-size: 1.875rem; }
}
.queue-subhead {
  margin: 10px 0 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--red);
}
.queue-intro {
  margin: 16px 0 0;
  max-width: 42rem;
  font-size: 16px;
  line-height: 1.55;
  color: #333;
}
.queue-doors { display: grid; gap: 12px; margin: 32px 0 16px; }
@media (min-width: 640px) { .queue-doors { grid-template-columns: 1fr 1fr 1fr; } }
.queue-door { border: 0; border-radius: 12px; padding: 20px; background: var(--well); }
.queue-door .queue-door-kicker,
.queue-door.woke-door .queue-door-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
}
.queue-door h2 {
  margin: 4px 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.queue-door p { margin: 0; font-size: 14px; line-height: 1.5; color: #595959; }
.queue-search { margin: 28px 0 0; max-width: 40rem; position: relative; z-index: 6; overflow: visible; }
.queue-search-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.queue-search .search-row-field { position: relative; }
.queue-group-block { margin-top: 48px; }
.queue-group {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.queue-group-lede {
  margin: 8px 0 0;
  max-width: 42rem;
  font-size: 14px;
  line-height: 1.5;
  color: #595959;
}
.queue-empty { margin: 16px 0 0; color: #595959; }
.queue-group-block .grid { margin-top: 24px; }
.queue-note { margin: 8px 0 0; font-size: 12px; line-height: 1.4; color: #595959; }
.queue-list, .queue-home-list, .woke-home-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 0; }
.queue-home-list {
  gap: 0 32px;
}
@media (min-width: 768px) {
  .queue-home-list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
  }
}
.thumb-art {
  display: block;
  width: 120px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--well);
  flex-shrink: 0;
}
.thumb-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  outline: 1px solid rgba(17,17,17,.10);
  outline-offset: -1px;
}
.thumb-art img.art-fallback {
  width: 28px;
  height: 28px;
  margin: auto;
  outline: 0;
  object-fit: contain;
  opacity: .45;
}
.queue-thumb {
  padding: 4px;
  background: #fff;
  box-shadow: 0 0 0 1.5px var(--red);
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}
.queue-thumb img {
  border-radius: 4px;
  outline: 0;
}
.queue-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.queue-item-body { min-width: 0; }
.queue-item-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.queue-item-title:hover { text-decoration: underline; text-underline-offset: 3px; }
.queue-item-meta {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #595959;
}
.queue-year, .queue-creator { color: #595959; }
.queue-submitted { font-style: italic; color: #595959; font-size: 13px; }
.queue-item-chips {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.woke-home-list { border-top: 1px solid var(--line); }
.home-woke h2 { color: var(--red); }
.woke-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .woke-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}
.woke-item-main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  flex: 1;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.woke-item-copy { min-width: 0; flex: 1 1 auto; }
.woke-item-title {
  display: inline;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.woke-item-meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #888;
}
.woke-item-main:hover .woke-item-title { text-decoration: underline; text-underline-offset: 3px; }
.woke-mark { color: var(--red); font-weight: 600; letter-spacing: 0; font-size: inherit; }
.pending-mark { color: var(--red); font-weight: 700; letter-spacing: 0; font-size: inherit; }
.woke-arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  vertical-align: -2px;
  color: var(--red);
}
.woke-item-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
@media (min-width: 640px) {
  .woke-item-chips { max-width: 42%; flex-shrink: 0; }
}
.home-queue, .home-woke, .home-memes { margin-top: 64px; }
.woke-lede {
  margin: 12px 0 20px;
  max-width: 46rem;
  font-size: 16px;
  line-height: 1.55;
  color: #595959;
}
.woke-page-list { margin-top: 8px; }

.home-memes h2, .memes-page h1 {
  margin: 4px 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--red);
  line-height: 1.2;
}
@media (min-width: 640px) {
  .home-memes h2, .memes-page h1 { font-size: 1.875rem; }
}
.meme-updated {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #111;
}
@media (min-width: 640px) {
  .meme-updated { font-size: 16px; }
}
.meme-lede { margin: 8px 0 0; font-size: 14px; color: #595959; }
.meme-note { margin: 0 0 16px; font-size: 14px; color: #595959; }

.meme-date {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  overflow-x: auto;
}
.meme-date select {
  height: 36px;
  min-width: 7.5rem;
  width: auto;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--red);
  background: #fff;
  padding: 0 12px;
  font-size: 14px;
  color: #111;
}
.meme-date button {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.meme-date button:hover { background: #333; }

.meme-home-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .meme-home-grid { grid-template-columns: minmax(0, 1fr) 16rem; }
}
.meme-rotator { width: 100%; }
.meme-frame { position: relative; }
.meme-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.meme-art {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--well);
}
.meme-figure img,
.meme-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--well);
}
.meme-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: rgba(17,17,17,.15);
}
.meme-progress i {
  display: block;
  height: 100%;
  background: var(--red);
  transform-origin: left;
  animation: memeBar 8s linear infinite;
}
.meme-art:hover .meme-progress i,
.meme-rotator:hover .meme-progress i {
  animation-play-state: paused;
}
@keyframes memeBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.meme-figure figcaption { padding: 16px; }
.meme-cap {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111;
}
.meme-by { margin: 4px 0 0; font-size: 12px; color: #595959; }
.meme-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(17,17,17,.7);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.meme-nav:hover { background: #111; }
.meme-nav.prev { left: 8px; }
.meme-nav.next { right: 8px; }
.meme-share { margin-top: 16px; }
.meme-share p { margin: 0; font-size: 14px; color: #595959; }
.meme-share .share-icons { margin-top: 0; }
.meme-share.share-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.meme-count {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: #595959;
}

.meme-upload-col { position: relative; }
@media (min-width: 768px) {
  .meme-upload-col { position: sticky; top: calc(var(--header-h, 109px) + 12px); }
}
.meme-upload {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--well);
}
.meme-upload-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.meme-drop {
  border: 1px dashed #ccc;
  border-radius: 28px;
  background: #f7f7f7;
  padding: 0;
  text-align: center;
}
.meme-drop label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 148px;
  padding: 28px 16px;
  cursor: pointer;
}
.meme-drop-lead { font-size: 14px; font-weight: 500; color: #111; }
.meme-drop-hint { margin-top: 4px; font-size: 12px; color: #595959; }
.meme-choose {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin-top: 0;
  padding: 0 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.meme-drop.over { border-color: #111; background: #eee; }
.photo-drop label { min-height: 148px; }
.news-ai-art {
  margin: 8px 0 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafafa;
}
.news-ai-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.news-ai-prompt { min-width: 0; }
.news-ai-art label { display: block; font-size: 14px; font-weight: 500; color: #888; }
.news-ai-art textarea {
  min-height: 132px;
  resize: vertical;
}
.news-ai-actions { margin: 10px 0 8px; flex-wrap: wrap; gap: 8px; }
.news-ai-art #nart-status { margin: 0; }
.news-ai-preview {
  width: auto;
  min-height: 180px;
  padding: 10px;
  border: 1px dashed #ccc;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-ai-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.news-ai-ph {
  margin: 0;
  padding: 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #999;
  text-align: center;
}
@media (max-width: 700px) {
  .news-ai-row { grid-template-columns: 1fr; }
}
.news-url-field { display: block; margin: 10px 0 14px; }
.news-url-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.news-url-prefix {
  color: #888;
  font-size: 14px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.news-url-row input {
  flex: 1 1 auto;
  margin-top: 0;
  min-width: 0;
}
.news-url-status {
  flex: 0 0 auto;
  min-width: 1.25em;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.news-url-status.ok {
  color: #1a7f37;
  font-size: 20px;
  font-weight: 700;
}
.news-url-status.bad {
  color: #c4121a;
  font-size: 13px;
  font-weight: 700;
}
.meme-pick-count {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.meme-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.meme-picks li {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}
.meme-picks img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.meme-pick-x {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  padding: 0;
}
.meme-upload label {
  display: block;
  margin: 16px 0 6px;
  font-size: 14px;
  font-weight: 500;
  color: #595959;
}
.meme-upload input[type="text"],
.meme-upload #cap {
  display: block;
  width: 100%;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--well);
  padding: 0 14px;
  font-size: 14px;
}
.meme-submit {
  display: inline-flex;
  align-items: center;
  height: 36px;
  margin-top: 16px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.meme-submit:hover { background: #333; }
.meme-wall-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; }

.send-page { max-width: 48rem; margin: 0 auto; }
.send-eyebrow { font-size: 14px; font-weight: 500; color: #595959; margin: 0; }
.send-hero {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
@media (min-width: 640px) { .send-hero { font-size: 3rem; } }
.send-lede { max-width: 40rem; margin-top: 12px; font-size: 16px; line-height: 1.5; color: #595959; }
.send-intent-set { margin-top: 8px; }
.send-intents { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.send-intents .intent {
  height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid #ddd; background: #fff; cursor: pointer;
  font-size: 14px; font-weight: 500;
}
.send-intents .intent.on { background: #111; color: #fff; border-color: #111; }
.send-intents .intent.woke.on { background: var(--red); border-color: var(--red); color: #fff; }
.send-form { margin-top: 8px; }
.send-form fieldset, .send-fieldset { border: 0; padding: 0; margin: 28px 0 0; }
.send-form legend { font-size: 14px; font-weight: 500; color: #111; padding: 0; }
.send-fieldset .muted { margin: 6px 0 12px; font-size: 14px; }
.send-name-anchor {
  display: block;
  height: calc(var(--header-h, 109px) + 32px);
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
  visibility: hidden;
}
#show-name > label[for="stitle"] {
  scroll-margin-top: calc(var(--header-h, 109px) + 16px);
}
@media (max-width: 767px) {
  .send-name-anchor,
  #show-name,
  #show-name > label[for="stitle"] {
    scroll-margin-top: calc(var(--header-h, 72px) + 96px);
  }
}
.send-field { margin-top: 22px; }
.send-field > label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin: 0 0 8px;
}
.opt-pill {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #888;
  vertical-align: middle;
}
.send-form input[type="text"],
.send-form input[type="url"],
.send-form input[type="search"],
.send-form input:not([type]),
.send-form input[inputmode],
.send-form textarea,
.send-form select {
  width: 100%;
  border: 0;
  background: #f3f3f3;
  border-radius: 999px;
  padding: 14px 48px 14px 18px;
  font-size: 14px;
  color: #111;
}
.send-form input::placeholder, .send-form textarea::placeholder { color: #9a9a9a; }
.send-form textarea {
  border-radius: 24px;
  min-height: 132px;
  padding: 16px 48px 16px 18px;
  resize: vertical;
  line-height: 1.45;
}
.send-input { position: relative; }
.send-input.has-clear input {
  padding-right: 88px;
}
.send-input .title-clear {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.send-input .suggest-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 340px;
  overflow: auto;
  z-index: 30;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
  padding: 36px 0 6px;
}
.send-input .sug-close-row {
  position: absolute;
  top: 4px;
  right: 4px;
  list-style: none;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}
.send-input .suggest-list .sug-x {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.send-input .suggest-list .sug-x:hover { background: transparent; color: #000; }
.send-input .suggest-list li button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 8px 14px;
  cursor: pointer;
}
.send-input .suggest-list li button:hover { background: #f6f6f6; }
.send-input .suggest-list li.sug-status {
  padding: 10px 16px 8px;
  font-size: 13px;
  color: #888;
  list-style: none;
}
.send-input .suggest-list li.sug-close-row {
  position: absolute;
  top: 4px;
  right: 4px;
  left: auto;
  width: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}
.send-input .suggest-list li.sug-close-row .sug-x {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
}
.send-input .suggest-list li.sug-close-row .sug-x:hover {
  background: transparent;
  color: #000;
}
.sug-thumb {
  width: 32px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  background: #eee;
  flex-shrink: 0;
}
.sug-copy { flex: 1; min-width: 0; }
.sug-name { display: block; font-size: 14px; color: #111; }
.sug-year { font-weight: 700; color: #111; white-space: nowrap; }
.sug-year.unknown { font-weight: 500; color: #888; }
.sug-sub { display: block; font-size: 12px; color: #888; }
.sug-src {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #888;
  flex-shrink: 0;
}
.send-input .lookup-go {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.send-input .lookup-go svg { width: 14px; height: 14px; }
.send-input.area .lookup-go { top: auto; bottom: 12px; transform: none; }
.hold-prompt {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.35;
}
.hold-prompt[hidden] { display: none; }
.lookup-hint.got { color: var(--red); font-weight: 600; }
.send-two { display: grid; gap: 16px; margin-top: 8px; }
@media (min-width: 640px) { .send-two { grid-template-columns: 1fr 1fr; } }
.type-cards { display: grid; gap: 12px; }
@media (min-width: 700px) { .type-cards { grid-template-columns: 1fr 1fr; } }
.type-card {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.type-card > .type-ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.type-card-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.type-card.on {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.type-card.tour {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red);
  transform: translateY(-2px);
  background: #fff8f8;
}
.send-pick-hint {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
}
.type-card-title { display: block; font-weight: 600; font-size: 15px; }
.type-card-hint, .type-card-eg { font-size: 13px; color: #595959; line-height: 1.4; }
.type-card-eg { color: #888; }
.genre-picks { display: flex; flex-wrap: wrap; gap: 8px; }
.genre-pick {
  height: 36px; padding: 0 14px; border: 0; border-radius: 999px; background: #f3f3f3; cursor: pointer; font-size: 14px;
}
.genre-pick.on { background: #111; color: #fff; }
.btn-queue {
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
}
.btn-queue.woke { background: var(--red); }
.send-submit-wrap { margin-top: 16px; }
.submit-zap {
  display: block;
  margin: 0 0 12px;
  padding: 12px 14px;
  background: #fff5f5;
  border: 2px solid var(--red);
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--red);
}
.submit-zap span {
  display: inline-block;
  transform-origin: center left;
}
.submit-zap .already-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
}
.send-picked { margin-top: 16px; }
.send-picked-art {
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f3f3;
}
.send-picked-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.send-picked h2 { margin: 12px 0 0; font-size: 1.25rem; }
.already-banner {
  margin: 0 0 12px;
  padding: 0;
  background: transparent;
  display: inline-block;
  max-width: 100%;
  transform-origin: left center;
}
.already-banner p {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--red);
}
.already-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 16px;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.already-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.already-link:hover { color: #a8141a; }
.already-banner p {
  display: inline-block;
  transform-origin: center left;
}
.already-hit-1 p, .submit-zap.already-hit-1 span { animation: already-sass-1 0.55s ease; }
.already-hit-2 p, .submit-zap.already-hit-2 span { animation: already-sass-2 0.65s ease; }
.already-hit-3 p, .submit-zap.already-hit-3 span { animation: already-sass-3 0.75s ease; }
.already-hit-4 p, .submit-zap.already-hit-4 span { animation: already-sass-4 0.85s ease; }
.already-hit-5 p, .submit-zap.already-hit-5 span { animation: already-sass-5 0.95s ease; }
.already-hit-6 p,
.already-hit-7 p,
.submit-zap.already-hit-6 span,
.submit-zap.already-hit-7 span { animation: already-sass-6 1.05s ease; }
.already-hit-8 p,
.already-hit-9 p,
.submit-zap.already-hit-8 span,
.submit-zap.already-hit-9 span { animation: already-sass-7 1.15s ease; }
.already-hit-10 p,
.already-hit-11 p,
.already-hit-12 p,
.submit-zap.already-hit-10 span,
.submit-zap.already-hit-11 span,
.submit-zap.already-hit-12 span { animation: already-sass-8 1.3s ease; }
.already-pop p { animation-play-state: running; }
@keyframes already-sass-1 {
  0%, 100% { transform: none; }
  30% { transform: rotate(-4deg) scale(1.04); }
  60% { transform: rotate(3deg) scale(1.02); }
}
@keyframes already-sass-2 {
  0%, 100% { transform: none; }
  20% { transform: rotate(-6deg) translateY(-2px) scale(1.05); }
  50% { transform: rotate(5deg) translateY(1px) scale(1.06); }
  75% { transform: rotate(-2deg) scale(1.02); }
}
@keyframes already-sass-3 {
  0%, 100% { transform: none; }
  18% { transform: rotate(-8deg) scale(1.08); }
  40% { transform: rotate(7deg) scale(1.04); }
  62% { transform: rotate(-4deg) scale(1.06); }
  82% { transform: rotate(2deg); }
}
@keyframes already-sass-4 {
  0%, 100% { transform: none; }
  15% { transform: rotate(-10deg) translateY(-4px) scale(1.1); }
  35% { transform: rotate(9deg) translateY(2px) scale(1.05); }
  55% { transform: rotate(-6deg) scale(1.08); }
  75% { transform: rotate(4deg); }
}
@keyframes already-sass-5 {
  0%, 100% { transform: none; }
  12% { transform: rotate(-12deg) scale(1.12); }
  28% { transform: rotate(11deg) scale(0.96); }
  44% { transform: rotate(-8deg) scale(1.1); }
  60% { transform: rotate(6deg) scale(1.04); }
  78% { transform: rotate(-3deg); }
}
@keyframes already-sass-6 {
  0%, 100% { transform: none; }
  10% { transform: rotate(-14deg) translateY(-6px) scale(1.14); }
  22% { transform: rotate(12deg) scale(0.94); }
  36% { transform: rotate(-10deg) scale(1.12); }
  50% { transform: rotate(8deg) scale(0.97); }
  64% { transform: rotate(-5deg) scale(1.06); }
  80% { transform: rotate(3deg); }
}
@keyframes already-sass-7 {
  0%, 100% { transform: none; }
  8% { transform: rotate(-16deg) scale(1.16); }
  18% { transform: rotate(14deg) scale(0.92); }
  30% { transform: rotate(-12deg) scale(1.14); }
  42% { transform: rotate(10deg) scale(0.95); }
  54% { transform: rotate(-8deg) scale(1.08); }
  68% { transform: rotate(5deg); }
  82% { transform: rotate(-2deg); }
}
@keyframes already-sass-8 {
  0%, 100% { transform: none; }
  7% { transform: rotate(-18deg) translateY(-8px) scale(1.18); }
  16% { transform: rotate(16deg) scale(0.9); }
  26% { transform: rotate(-14deg) scale(1.16); }
  36% { transform: rotate(12deg) scale(0.93); }
  48% { transform: rotate(-10deg) scale(1.1); }
  60% { transform: rotate(7deg); }
  74% { transform: rotate(-4deg) scale(1.04); }
  86% { transform: rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .already-banner p { animation: already-flash 0.6s ease !important; }
}

.show-page { max-width: none; margin: 0 auto; }
.show-hero {
  margin: 0 auto 8px;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--well);
}
.show-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  outline: 1px solid rgba(17,17,17,.10);
  outline-offset: -1px;
}
.show-topline {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-top: 16px;
}
.show-chips, .show-status { display: flex; flex-wrap: wrap; gap: 6px; }
.show-chips .pill, .show-status .pill {
  height: auto; padding: 2px 10px; font-size: 12px; background: var(--well);
}
.show-chips .pill.status, .show-chips .pill.woke, .show-chips .pill.red,
.show-status .pill.status, .show-status .pill.woke, .show-status .pill.red {
  background: var(--red); color: #fff;
}
.show-chips .pill.type, .show-status .pill.type {
  background: #111; color: #fff;
}
.show-status .muted-pill { color: #595959; }
.show-oops {
  flex-shrink: 0; padding-top: 4px; font-size: 14px; font-weight: 500; color: var(--red);
}
.show-oops:hover { text-decoration: underline; }
.show-oops-col {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0;
}
.corr-stamp {
  font-size: 12px; font-style: italic; color: var(--muted); font-weight: 500;
}
.show-page h1.show-title {
  margin: 0;
  text-align: center;
  color: #111;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  flex: 1;
}
@media (min-width: 640px) { .show-page h1.show-title { font-size: 3rem; } }
.show-facts {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.show-facts li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.fact-kicker {
  font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #595959; margin: 0;
}
.show-facts img { width: 32px; height: 32px; margin: 0; object-fit: contain; }
@media (min-width: 640px) { .show-facts img { width: 40px; height: 40px; margin: 4px 0; } }
.fact-kicker, .fact-val { line-height: 1.15; }
.fact-val {
  font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #111; margin: 0;
}
@media (min-width: 640px) {
  .fact-kicker, .fact-val { font-size: 12px; }
}
.show-cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 28rem;
  margin: 20px auto 0;
  align-items: start;
  justify-items: center;
}
@media (min-width: 640px) { .show-cta { max-width: 32rem; gap: 24px; } }
.show-cta a, .show-cta span { display: block; width: 100%; max-width: 7.5rem; }
.show-cta img { width: 100%; height: auto; }
.show-watchlist { display: flex; justify-content: center; margin-top: 12px; }
.watchlist-btn {
  height: 36px; padding: 0 16px; border-radius: 999px; border: 1px solid #ccc; background: #fff;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; font-weight: 500;
}
.watchlist-btn.on { background: #111; color: #fff; border-color: #111; }
.watchlist-hint {
  margin: 8px 0 0;
  font-size: 14px;
  color: #595959;
  line-height: 1.55;
}
.watchlist-hint .watchlist-chip {
  display: inline-flex;
  vertical-align: middle;
  pointer-events: none;
  height: 28px;
  padding: 0 10px;
  font-size: 13px;
  cursor: default;
  margin: 0 4px;
}
.watchlist-hint i { font-style: italic; }
.show-copy { margin-top: 20px; font-size: 16px; line-height: 1.65; color: #595959; }
.show-copy p { margin: 0 0 1em; font-weight: 400; color: #595959; }
.show-copy p:last-child { margin-bottom: 0; }
.show-dek { font-weight: 700; color: #111; margin: 0 0 1.35em; font-size: 16px; line-height: 1.65; }
.jw-watch {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}
.jw-lead { font-size: 14px; color: #333; margin: 0 0 12px; width: 100%; text-align: center; }
.jw-powered { font-size: 11px; text-align: center; margin: 10px 0 0; }
.jw-icons,
.jw-watch [data-jw-widget] {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px 18px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.jw-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 64px;
  text-decoration: none;
  color: #111;
  font-size: 11px;
  line-height: 1.2;
}
.jw-icon img,
.jw-watch .jw-package-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 1px 1px 2px rgba(0,0,0,.08);
}
.jw-watch .jw-offer {
  float: none !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.jw-widget-iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.show-grid { display: grid; gap: 16px; margin-top: 32px; }
.show-grid-lift { margin-top: 16px; margin-bottom: 8px; }
@media (min-width: 800px) { .show-grid { grid-template-columns: 1fr 1fr; } }
.show-panel { border: 1px solid var(--line); border-radius: 16px; padding: 18px; background: #fff; }
#rank, #verdict, #comments { scroll-margin-top: calc(var(--header-h, 109px) + 12px); }
.show-panel-red { border: 2px solid var(--red); }
.show-grid-lift .show-panel-red {
  animation: queue-call 2.8s ease-in-out infinite;
}
.show-grid-lift .show-panel-red:nth-child(2) {
  animation-delay: 1.4s;
}
@keyframes queue-call {
  0%, 40% {
    box-shadow: none;
    background: #fff;
  }
  50% {
    box-shadow: 0 0 0 4px rgba(213, 25, 32, .45);
    background: #fff5f5;
  }
  60%, 100% {
    box-shadow: none;
    background: #fff;
  }
}
@media (prefers-reduced-motion: reduce) {
  .show-grid-lift .show-panel-red { animation: none; }
}
.panel-kicker { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #888; margin: 0; }
.panel-title { font-size: 1.25rem; font-weight: 600; margin: 8px 0; letter-spacing: -0.02em; }
.verdict-actions { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
@media (min-width: 1024px) { .verdict-actions { flex-direction: row; } }
.verdict-actions button {
  height: 36px; padding: 0 16px; font-size: 14px; font-weight: 500; border-radius: 999px; cursor: pointer;
}
.woke-btn, .not-woke-btn {
  background: #fff; color: var(--red); border: 1px solid var(--red);
}
.verdict-bar { position: relative; height: 8px; background: #eee; border-radius: 999px; overflow: hidden; margin-top: 8px; }
.verdict-bar i { display: block; height: 100%; background: #111; }
.verdict-bar span { position: absolute; top: -4px; width: 2px; height: 16px; background: var(--red); }
.verdict-tally { font-size: 13px; color: #595959; margin: 8px 0 0; }
.rank-row { display: flex; align-items: center; gap: 8px; margin: 12px 0; }
.star-btn { border: 0; background: transparent; color: #bbb; cursor: pointer; font-size: 22px; display: inline-flex; align-items: center; padding: 0; }
.star-btn.on { color: #111; }
.rank-focus {
  box-shadow: 0 0 0 2px var(--red);
}
.show-comments { margin-top: 48px; }
.show-comments h2, .show-foot-sec h2 {
  margin: 0; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.025em; color: #111;
}
.show-foot-sec { margin-top: 48px; scroll-margin-top: calc(var(--header-h, 109px) + 1rem); }
.show-review { padding: 20px 0; border-top: 1px solid var(--line); }
.vote-pill {
  display: inline-flex; height: 32px; align-items: center; padding: 0 10px;
  border: 1px solid #ccc; border-radius: 999px; background: #fff; color: #595959;
  font-size: 12px; font-weight: 500; cursor: pointer;
}
.vote-pill.on { border-color: #111; color: #111; }
.reply-btn { border: 0; background: none; color: var(--red); font-weight: 500; cursor: pointer; font-size: 12px; }
.flag-link { color: var(--red); font-size: 12px; font-weight: 500; }
.flag-link.is-flagged { color: #595959; cursor: default; text-decoration: none; }
.comment-net { font-size: 13px; color: #595959; font-variant-numeric: tabular-nums; }
.review-stars { display: inline-flex; gap: 2px; }
.review-star { width: 16px; height: 16px; color: #ddd; }
.review-star.on { color: #111; }
.flag-list { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 12px; }
.flag-card { border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.flag-head { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.flag-votes { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.flag-votes button {
  height: 32px; padding: 0 10px; border-radius: 999px; border: 1px solid #ccc; background: #fff; cursor: pointer;
}
.flag-votes button.on { border-color: #111; }

.corr-none { margin: 16px 0 0; color: var(--muted); }
.corr-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.corr-card { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 20px; }
.corr-card-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.corr-meta { font-size: 12px; font-weight: 500; color: var(--muted); }
.corr-meta.accent { color: var(--red); }
.corr-change { margin: 12px 0 0; font-size: 14px; color: var(--muted); }
.corr-change span { color: #111; }
.corr-why { margin: 8px 0 0; color: #111; }
.corr-votes { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 12px; }
.corr-votes button {
  height: 36px; padding: 0 12px; border: 1px solid #ccc; border-radius: 999px;
  background: #fff; color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer;
}
.corr-votes button:hover { color: #111; }
.corr-votes button.on { border-color: #111; color: #111; }
.corr-votes button.on.down { border-color: var(--red); color: var(--red); }
.corr-votes span { font-size: 14px; font-variant-numeric: tabular-nums; }
.corr-votes span i { font-style: normal; color: var(--muted); }
.corr-apply { height: 36px; padding: 0 12px; font-size: 13px; }
.corr-form { margin-top: 32px; width: 100%; background: var(--well); border-radius: 12px; padding: 20px; }
.corr-form-title { margin: 0 0 4px; font-size: 14px; font-weight: 600; letter-spacing: -0.02em; }
.corr-form label { display: block; font-size: 14px; font-weight: 500; margin: 12px 0 6px; color: #111; }
.corr-form select, .corr-form .corr-control {
  display: block; width: 100%; height: 44px;
  border: 1px solid var(--red); border-radius: 999px; background: #fff; color: #111;
  padding: 0 14px; font-size: 16px; line-height: 44px;
}
.corr-form textarea.corr-area, .corr-form #corr-why {
  height: auto; min-height: 7rem; border-radius: 12px; border: 1px solid var(--red);
  padding: 12px 14px; font-size: 16px; resize: vertical; line-height: 1.4;
}
.corr-genre-hint { margin: 0 0 8px; font-size: 14px; color: var(--muted); }
.corr-genre-hint span { color: #111; }
.corr-genres { display: flex; flex-wrap: wrap; gap: 8px; }
.corr-genre {
  display: inline-flex; align-items: center; height: 36px; padding: 0 14px;
  border: 0; border-radius: 999px; background: #fff; color: #111; font-size: 14px; font-weight: 500; cursor: pointer;
}
.corr-genre.on { background: #111; color: #fff; }
.corr-genre .now { margin-left: 4px; font-size: 10px; opacity: .7; }
.corr-genre-note { margin: 8px 0 0; font-size: 12px; color: #888; }
.corr-flash { margin: 8px 0 0; font-size: 14px; color: #111; }
.corr-sign { margin: 16px 0 0; font-size: 14px; }
.corr-sign a { color: #111; text-decoration: underline; }
.corr-form .btn { height: 36px; padding: 0 16px; font-size: 14px; font-weight: 500; }
.admin-count {
  display: inline-flex; align-items: center; margin-left: 8px; padding: 2px 10px;
  border-radius: 999px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em; vertical-align: middle;
}
.corr-admin { list-style: none; margin: 16px 0 0; padding: 0; }
.corr-admin-title { font-weight: 600; letter-spacing: -0.02em; }
.corr-admin-title:hover { text-decoration: underline; }
.corr-admin-change { margin: 8px 0 4px; font-size: 14px; }
.tabular { font-variant-numeric: tabular-nums; font-size: 12px; }

.join-page { max-width: 48rem; margin: 0 auto; }
.join-page .queue-kicker { color: #595959; }
.join-page h1 {
  margin: 8px 0 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
@media (min-width: 640px) { .join-page h1 { font-size: 3rem; line-height: 1; } }
.join-lede { margin: 12px 0 0; max-width: 42rem; color: #595959; font-size: 16px; line-height: 1.5; }
.join-plans {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 640px) { .join-plans { grid-template-columns: 1fr 1fr; } }
.join-plan {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.join-plan-free { grid-column: 1 / -1; }
.join-plan.featured {
  border-color: var(--red);
  background: rgba(213,25,32,.05);
}
.join-best {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
}
.join-plan h2 {
  margin: 4px 0 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.join-price {
  margin: 4px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.join-plan ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #595959;
  line-height: 1.45;
}
.join-plan li { margin: 0 0 4px; }
.join-plan .btn, .join-plan .join-cta {
  margin-top: auto;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  padding-top: 12px;
}
.join-cta {
  border: 1px solid #ccc;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.join-cta:hover { background: #f7f7f7; }
.join-info {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}
@media (min-width: 640px) { .join-info { padding: 24px; } }
.join-info h2 {
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
}
.join-info h2:first-child { margin-top: 0; }
.join-get { list-style: none; margin: 12px 0 0; padding: 0; }
.join-get li { margin: 0 0 12px; }
.join-get-t { margin: 0; font-weight: 600; color: #111; }
.join-get p { margin: 2px 0 0; font-size: 14px; line-height: 1.5; color: #595959; }
.join-cost, .join-dont {
  margin: 12px 0 0;
  padding: 0 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #595959;
}
.join-cost { list-style: none; padding-left: 0; }
.join-cost li { margin: 0 0 4px; }
.join-cost b { font-weight: 600; color: #111; }
.join-dont li { margin: 0 0 8px; }
.join-links { margin: 12px 0 0; font-size: 14px; color: #595959; }
.join-links a { color: #111; font-weight: 500; text-decoration: underline; text-underline-offset: 4px; }
.join-stripe { margin: 32px 0 0; font-size: 14px; color: #595959; line-height: 1.5; }
.join-cancel { margin: 16px 0 0; font-size: 14px; color: var(--red); font-weight: 600; }

.login-page { max-width: 28rem; margin: 0 auto; }
.login-page .queue-kicker { line-height: 20px; color: #595959; }
.login-page h1 {
  margin: 8px 0 0; font-size: 2.25rem; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1;
}
@media (min-width: 640px) { .login-page h1 { font-size: 3rem; line-height: 1; } }
.login-lede { margin: 12px 0 0; color: #595959; font-size: 16px; line-height: 24px; }
.login-stack { margin-top: 32px; }
.login-oauth {
  display: inline-flex; width: 100%; height: 44px; align-items: center; justify-content: center;
  gap: 8px; margin: 0 0 12px; padding: 0 20px; border: 1px solid #dedfe1; border-radius: 999px;
  background: #fff; color: #111; font-size: 14px; font-weight: 500; line-height: 20px; cursor: pointer;
}
.login-oauth:hover { background: #f7f7f7; }
.login-or { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.login-or span { flex: 1; height: 1px; background: #e6e6e6; }
.login-or b { font-size: 12px; font-weight: 500; color: #888; line-height: 16px; }
.login-stack > .login-form { margin-top: 12px; }
.login-form { display: flex; flex-direction: column; gap: 12px; }
.login-field { display: flex; flex-direction: column; gap: 6px; }
.login-form label {
  display: block; font-size: 14px; font-weight: 500; color: #595959; line-height: 20px; margin: 0;
}
.login-form input {
  width: 100%; height: 44px; margin: 0; border: 1px solid transparent; border-radius: 24px;
  background: #f7f7f7; padding: 0 14px; font-size: 16px; color: #111; line-height: 24px;
}
.login-form input:focus {
  outline: none; background: #fff; border-color: #dedfe1;
  box-shadow: 0 0 0 2px rgba(17,17,17,.15);
}
.login-hint { margin: 0; font-size: 12px; color: #595959; line-height: 16px; }
.login-pw { position: relative; }
.login-pw input { padding-right: 48px; margin: 0; }
.login-eye {
  position: absolute; top: 50%; right: 4px; transform: translateY(-50%);
  width: 36px; height: 36px; border: 0; border-radius: 8px; background: transparent;
  color: #595959; cursor: pointer; display: grid; place-items: center;
}
.login-eye:hover { color: #111; }
.login-forgot { margin: 0; text-align: right; line-height: 20px; }
.login-forgot a { font-size: 14px; font-weight: 500; color: #595959; line-height: 20px; }
.login-forgot a:hover { color: #111; }
.login-err {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fdecec;
  border: 1px solid #f3c4c4;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--red);
}
.login-err[hidden] { display: none !important; }
@keyframes login-err-flash {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}
.login-err-flash { animation: login-err-flash .45s ease; }
.login-submit {
  width: 100%; height: 44px; padding: 0 20px; gap: 8px; justify-content: center;
  background: #111; color: #fff; font-size: 14px; font-weight: 500; line-height: 20px;
  border: 0; border-radius: 999px;
}
.login-submit:hover { background: #1f1f1f; }
.login-switch {
  display: block; width: 100%; margin: 12px 0 0; padding: 8px 0 0; border: 0; background: transparent;
  text-align: center; font-size: 14px; font-weight: 500; color: #595959; line-height: 20px; cursor: pointer;
}
.login-switch:hover, a.login-switch:hover { color: #111; }
.login-switch-wrap { margin-top: 24px; text-align: center; }
.login-legal { margin: 40px 0 0; font-size: 14px; color: #595959; line-height: 20px; }
.login-legal a {
  color: #111; text-decoration: underline; text-decoration-color: #dedfe1; text-underline-offset: 4px;
}
.login-forgot-form { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

.crit-icons { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 16px 0; }
.crit-icons img { width: 40px; height: 40px; }

/* Bother us — match notwokeshows.com/bother-us */
.bother-page { max-width: 48rem; margin: 0 auto; }
.bother-page h1 {
  color: var(--red);
  margin: 8px 0 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .bother-page h1 { font-size: 3rem; line-height: 1; }
}
.bother-lede {
  margin: 12px 0 0;
  color: #595959;
  font-size: 1rem;
  line-height: 1.625;
}
.bother-form { position: relative; margin-top: 32px; }
.bother-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}
.bother-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .bother-grid { grid-template-columns: 1fr 1fr; }
}
.bother-fields { display: flex; flex-direction: column; gap: 20px; }
.bother-field { display: flex; flex-direction: column; gap: 6px; }
.bother-field label,
.bother-why legend {
  font-size: 14px;
  font-weight: 500;
  color: #595959;
  line-height: 20px;
}
.bother-why legend { color: #111; }
.bother-field input[type="text"],
.bother-field input[type="email"],
.bother-field input[type="tel"],
.bother-field input:not([type]),
.bother-field input[type="search"] {
  width: 100%;
  height: 44px;
  margin: 0;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: #fff;
  padding: 0 14px;
  font-size: 16px;
  color: #111;
  line-height: 24px;
}
.bother-field input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(17,17,17,.15);
}
.bother-field textarea {
  width: 100%;
  min-height: 112px;
  margin: 0;
  border: 1px solid var(--red);
  border-radius: 24px;
  background: #fff;
  padding: 12px 14px;
  font-size: 16px;
  color: #111;
  line-height: 1.5;
  resize: vertical;
}
.bother-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(17,17,17,.15);
}
.bother-why { margin: 0; padding: 0; border: 0; display: flex; flex-direction: column; gap: 8px; }
.bother-checks { display: flex; flex-direction: column; gap: 8px; }
.bother-checks label {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #111;
}
.bother-checks input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 16px;
  accent-color: var(--red);
}
.bother-err {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
  line-height: 20px;
}
.bother-form .bother-field:last-of-type { margin-top: 20px; }
.bother-captcha {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bother-captcha > label {
  font-size: 14px;
  font-weight: 500;
  color: #595959;
  line-height: 20px;
}
.bother-captcha-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.bother-captcha-img {
  flex: 1;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F7F7;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.bother-captcha-img svg {
  display: block;
  width: 100%;
  height: 72px;
}
.bother-captcha-wait {
  font-size: 13px;
  color: #888;
}
.bother-captcha-refresh {
  width: 44px;
  min-width: 44px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.bother-captcha-refresh:hover { background: #f7f7f7; }
.bother-captcha input[name="captcha"] {
  width: 100%;
  height: 44px;
  margin: 0;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: #fff;
  padding: 0 14px;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  line-height: 24px;
}
.bother-captcha input[name="captcha"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(17,17,17,.15);
}
.bother-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-top: 20px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 150ms ease-out, transform 150ms ease-out, opacity 150ms ease-out;
}
@media (min-width: 640px) {
  .bother-submit { width: auto; }
}
.bother-submit:hover { background: #bf161c; }
.bother-submit:active:not(:disabled) { transform: scale(0.96); }
.bother-submit:disabled { opacity: 0.4; cursor: default; }

.thanks-page {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}
.thanks-page h1 {
  color: var(--red);
  margin: 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .thanks-page h1 { font-size: 3rem; line-height: 1; }
}
.thanks-page img {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 32px auto 0;
}
.thanks-note {
  margin: 24px 0 0;
  font-size: 14px;
  color: #595959;
  line-height: 20px;
}
.thanks-slogan {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #111;
  line-height: 20px;
}

/* Woke evidence — match notwokeshows.com/show/conclave */
.woke-why { margin-top: 24px; width: 100%; }
.woke-crit-kicker,
.woke-ev-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--red);
}
.woke-crit-kicker a { color: #111; text-decoration: none; }
.woke-crit-kicker a:hover { text-decoration: underline; text-underline-offset: 3px; }
.woke-crit-icons {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
.woke-crit-icons li { min-width: 72px; }
.woke-crit-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: #111;
  text-decoration: none;
}
.woke-crit-icons a:hover { opacity: 0.8; }
.woke-crit-icons img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .woke-crit-icons img { width: 64px; height: 64px; }
}
.woke-crit-icons span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}
.woke-ev-kicker { margin-top: 32px; }
.woke-ev-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
  width: 100%;
}
.woke-ev-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.woke-ev-author {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}
.woke-ev-author img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
  background: #f7f7f7;
}
.woke-ev-author img.round { border-radius: 50%; object-fit: cover; }
.woke-ev-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
  line-height: 1.25;
}
.woke-ev-author .comment-clout {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  line-height: 1.3;
}
.woke-ev-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}
.woke-ev-chip:hover { opacity: 0.9; }
.woke-ev-reasons {
  margin: 8px 0 0;
  padding-left: 20px;
}
.woke-ev-reasons li {
  font-size: 11px;
  line-height: 1.35;
  color: #111;
}
@media (min-width: 640px) {
  .woke-ev-reasons li { font-size: 12px; }
}
.woke-ev-votes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.woke-withdraw {
  margin-left: auto;
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
}
.woke-ev-item.gathering {
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fafafa;
}

/* Continuum comments + member woke form + profile */
.comment-list { list-style: none; margin: 24px 0 0; padding: 0; }
.comment-list > li { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 20px; }
.comment-list > li:first-child { margin-top: 0; }
.comment-replies {
  list-style: none;
  margin: 16px 0 0;
  padding: 0 0 0 16px;
  border-left: 2px solid #e6e6e6;
}
.comment-replies > li {
  margin-top: 16px;
  padding-top: 0;
  border-top: 0;
}
.comment-replies .comment-row img { width: 36px; height: 36px; }
.reply-to {
  margin: 0 0 8px;
  font-size: 12px;
  color: #888;
}
.reply-to a { color: var(--red); text-decoration: none; }
.reply-to a:hover { text-decoration: underline; }
.reply-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #111;
  font-weight: 500;
}
.reply-hint[hidden] { display: none !important; }
.reply-cancel {
  border: 0;
  background: none;
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}
.comment-name { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -0.025em; color: #111; }
.comment-date { margin: 0; font-size: 11px; color: #9a9a9a; }
.comment-body { margin: 4px 0 0; white-space: pre-wrap; color: #111; }
.comment-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 2px; }
.comment-row img.round { border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px var(--line); }
.comment-hint { margin: 12px 0 0; font-size: 12px; color: #595959; line-height: 1.45; }
.comment-submit { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px; margin-top: 12px; }
.comment-post { height: 36px; padding: 0 16px; border-radius: 999px; background: #111; color: #fff; font-size: 14px; font-weight: 500; }
.honeypot { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }
.show-review { padding: 0; border: 0; }
.site-review-kicker {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
}
.vote-pill { display: inline-flex; height: 32px; align-items: center; padding: 0 10px; border: 1px solid #ccc; border-radius: 999px; background: #fff; color: #595959; font-size: 12px; font-weight: 500; cursor: pointer; text-decoration: none; }
.vote-pill:hover { color: #111; }
.vote-pill.on { border-color: #111; color: #111; }
.reply-btn, .flag-link { border: 0; background: none; color: var(--red); font-weight: 500; cursor: pointer; font-size: 12px; padding: 0; text-decoration: none; }
.reply-btn:hover, .flag-link:hover { text-decoration: underline; }
.flag-link.is-flagged, .flag-link.is-flagged:hover { color: #595959; cursor: default; text-decoration: none; }
.review-stars { display: inline-flex; align-items: center; gap: 2px; }
.review-star { width: 14px; height: 14px; color: #c8c8c8; display: grid; place-items: center; line-height: 0; }
.review-star.on { color: #111; }
.review-star svg { display: block; }
.comment-captcha { margin: 0; }
.comment-captcha > label { display: block; font-size: 14px; font-weight: 500; color: #595959; margin-bottom: 6px; }
.comment-captcha-img { width: 220px; height: 72px; border-radius: 8px; border: 1px solid var(--line); background: var(--well); overflow: hidden; }
.comment-captcha-img svg, .comment-captcha-img img { display: block; width: 220px; height: 72px; }
.comment-captcha-ans { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.comment-captcha-ans input { height: 44px; width: 8rem; border: 0; border-radius: 12px; background: var(--well); padding: 0 14px; font: inherit; font-size: 1rem; }
.comment-captcha-ans input:focus { outline: 2px solid rgba(17,17,17,.15); background: #fff; }
.captcha-new { border: 0; background: none; padding: 0; font-size: 12px; font-weight: 500; color: #595959; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.captcha-new:hover { color: #111; }
.woke-labels-lead { margin: 8px 0 0; font-size: 14px; line-height: 1.5; color: #595959; }
.woke-labels-empty { margin: 16px 0 0; color: #595959; }
.woke-file-form { margin-top: 16px; background: var(--well); border-radius: 24px; padding: 20px 22px 22px; }
.woke-file-title { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -0.02em; color: #111; }
.woke-file-label { display: block; margin: 14px 0 6px; font-size: 14px; font-weight: 500; color: #595959; }
.woke-file-select {
  display: block; width: 100%; height: 44px;
  border: 1px solid var(--red); border-radius: 999px; background: #fff; color: #111;
  padding: 0 40px 0 16px; font-size: 16px; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d51920' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
}
.woke-file-select:focus { outline: none; box-shadow: 0 0 0 2px rgba(213,25,32,.25); }
.woke-ev-line { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.woke-ev-bullet { flex-shrink: 0; width: 12px; color: #888; font-size: 18px; line-height: 1; text-align: center; }
.woke-ev-input { flex: 1; min-width: 0; height: 44px; border: 1px solid #d0d0d0; border-radius: 999px; background: #fff; padding: 0 16px; font: inherit; font-size: 16px; color: #111; }
.woke-ev-input:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 2px rgba(37,99,235,.35); }
.woke-file-hint { margin: 0 0 12px 20px; font-size: 12px; color: #888; }
.woke-ev-add { display: grid; place-items: center; width: 36px; height: 36px; margin: 0 0 12px; border: 1px solid var(--red); border-radius: 999px; background: #fff; color: var(--red); font-size: 22px; font-weight: 400; line-height: 1; cursor: pointer; }
.woke-ev-add:hover { background: rgba(213,25,32,.06); }
.woke-file-submit { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 16px; border: 1px solid var(--red); border-radius: 999px; background: #fff; color: var(--red); font-size: 14px; font-weight: 500; cursor: pointer; }
.woke-file-submit:hover { background: var(--red); color: #fff; }
.member-badge { display: inline-block; margin-left: 8px; padding: 1px 8px; border-radius: 999px; background: #111; color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; vertical-align: middle; }
.join-page { max-width: 48rem; }
.join-copy { margin-top: 24px; }
.join-plans { display: grid; gap: 16px; margin-top: 40px; }
@media (min-width: 640px) { .join-plans { grid-template-columns: 1fr 1fr; } }
.join-card { border: 1px solid #e6e6e6; border-radius: 16px; padding: 20px; background: #fff; }
.join-card.best { border-color: var(--red); background: rgba(213, 25, 32, 0.05); }
.join-best { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); }
.join-card h2 { margin: 4px 0 0; font-size: 20px; font-weight: 600; }
.join-price { margin: 4px 0 0; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.join-card ul { margin: 12px 0 0; padding: 0; list-style: none; font-size: 14px; color: #555; }
.join-card li { margin: 0 0 4px; }
.join-card .btn { width: 100%; margin-top: 20px; }
.join-stripe { margin-top: 32px; }
.profile-page h2 { margin: 0 0 8px; font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; color: #111; }
.profile-card { margin-top: 24px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.profile-id { display: flex; align-items: flex-start; gap: 16px; }
.profile-id-copy { min-width: 0; flex: 1; }
.profile-member {
  margin-left: auto;
  max-width: 22rem;
  text-align: right;
}
.profile-member-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #888;
}
.profile-member p { margin: 0; font-size: 14px; color: #595959; line-height: 1.45; }
.profile-member .profile-faq { margin-left: 0; white-space: nowrap; }
.profile-member .btn { margin: 0; }
.profile-upgrades {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}
.profile-upgrades .btn { white-space: nowrap; }
@media (max-width: 639px) {
  .profile-upgrades { align-items: flex-start; }
}
.hh-list { list-style: none; margin: 12px 0 0; padding: 0; }
.hh-seat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.hh-invite { margin-top: 14px; max-width: 28rem; }
.hh-invite label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.hh-invite-row { display: flex; gap: 8px; }
.hh-invite-row input {
  flex: 1;
  border: 0;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 10px 12px;
}
.member-watch { margin-top: 12px; }
@media (max-width: 639px) {
  .profile-id { flex-wrap: wrap; }
  .profile-member { margin-left: 0; max-width: none; text-align: left; width: 100%; }
}
.profile-avatar-edit { position: relative; display: grid; place-items: center; cursor: pointer; }
.profile-avatar-edit img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px var(--line); background: var(--well); }
.profile-avatar-edit span { display: block; margin-top: 6px; font-size: 12px; font-weight: 500; color: var(--red); text-align: center; }
.profile-name { margin: 0; font-size: 18px; font-weight: 600; }
.profile-clout { margin: 4px 0 0; font-size: 14px; }
.profile-clout a { color: var(--red); font-weight: 500; }
.profile-toggle {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: #111;
  cursor: pointer;
  position: relative;
}
.admin-page label.profile-toggle {
  display: flex;
  font-size: 14px;
  color: #111;
  margin-top: 16px;
}
.profile-toggle input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: transparent;
}
.admin-page .profile-toggle input[type="checkbox"] {
  width: 1px;
  margin: -1px;
  padding: 0;
  background: transparent;
}
.toggle-ui {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: #ccc;
  position: relative;
  flex: 0 0 44px;
  display: inline-block;
  margin-top: 1px;
  transition: background-color 150ms;
}
.toggle-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  transition: transform 150ms;
}
.profile-toggle > span:last-child {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 2px;
}
.profile-toggle .chip.notify-woke {
  display: inline-flex;
  vertical-align: middle;
  height: 22px;
  padding: 0 8px;
  margin: 0 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  background: #fff;
  border: 1px solid var(--red);
  color: #111;
  cursor: default;
  pointer-events: none;
}
.profile-toggle input:checked + .toggle-ui { background: var(--red); }
.profile-toggle input:checked + .toggle-ui::after { transform: translateX(18px); }
.profile-toggle input:focus-visible + .toggle-ui { box-shadow: 0 0 0 2px rgba(213,25,32,.35); }
.profile-ledger { list-style: none; margin: 12px 0 0; padding: 0; }
.profile-ledger li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); font-size: 14px; }
.profile-ledger a { color: #111; text-decoration: underline; text-underline-offset: 2px; }
.profile-delta { min-width: 2.2em; font-variant-numeric: tabular-nums; font-weight: 600; color: #595959; }
.profile-delta.up { color: #0a7a32; }
.profile-delta.down { color: var(--red); }
.clout-admin {
  margin: 16px 0 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--well);
}
.clout-admin label { display: block; margin: 10px 0 6px; font-size: 14px; font-weight: 500; }
.clout-admin input {
  display: block; width: 100%; max-width: 24rem; height: 44px;
  border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; font: inherit; background: #fff;
}
.clout-admin .btn { margin-top: 12px; }
.clout-admin .admin-note { margin: 0 0 8px; }
.profile-pw input {
  display: block; width: 100%; max-width: 24rem; height: 44px;
  border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; font: inherit;
}
.profile-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  align-items: start;
  max-width: 52rem;
}
.profile-pair label { display: block; }
.profile-pair input,
.profile-pair select,
.profile-pair .pw-wrap {
  max-width: none;
  width: 100%;
}
@media (max-width: 700px) {
  .profile-pair { grid-template-columns: 1fr; }
}
.pw-wrap { position: relative; max-width: 24rem; }
.pw-wrap input { max-width: none; width: 100%; padding-right: 48px; }
.pw-wrap .login-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #595959;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.pw-wrap .login-eye:hover { color: #111; }
.admin-page .pw-wrap input { margin-top: 0; }
.admin-page .profile-card { margin-top: 24px; }
.profile-pw .btn { margin-top: 12px; }
.profile-flash { margin: 8px 0 0; font-size: 14px; color: var(--red); }
.profile-flash.ok { color: #0a7a32; }
.profile-faq { margin-left: 12px; font-size: 14px; font-weight: 500; color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.part-fold {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
}
.part-fold summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}
.part-fold summary::-webkit-details-marker { display: none; }
.part-fold summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform .15s ease;
  flex-shrink: 0;
}
.admin-fold { margin-top: 12px; }
.admin-fold-body { padding: 0 0 16px; }
.admin-fold-body > .admin-note:first-child { margin-top: 0; }
.part-count {
  margin-left: auto;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #595959;
}
.part-fold .profile-ledger { margin: 0 0 8px; }
.part-status { margin: 2px 0 0; font-size: 13px; color: #595959; }
.part-note { margin: 4px 0 0; font-size: 13px; color: #888; }

.bar-total { margin: 8px 0 0; font-size: 13px; color: #595959; }
.nws-email { margin-top: 16px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: visible; }
.nws-email-logo {
  display: block !important;
  width: 100% !important;
  max-width: 280px !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 735 / 115;
  object-fit: contain !important;
  object-position: left center !important;
}
.nws-email-sub {
  margin: 20px 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--red);
}
.nws-email-card { background: var(--well); border-radius: 16px; padding: 16px; }
.nws-email-card p { margin: 0 0 12px; font-size: 14px; color: #333; }
.nws-email-card p:last-child { margin-bottom: 0; }
.nws-email-cta { margin: 16px 0 0; }
.nws-email-btn { display: inline-flex; align-items: center; height: 36px; padding: 0 16px; border-radius: 999px; background: var(--red); color: #fff; font-size: 14px; font-weight: 500; }
.nws-email-opt { margin: 12px 0 0; font-size: 12px; }
.nws-email-opt a { color: #888; text-decoration: underline; }
.unsub-page form label { display: block; font-size: 14px; }
.unsub-page input[type="email"] {
  display: block; width: 100%; max-width: 24rem; height: 44px;
  border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; margin-top: 6px; font: inherit;
}
.email-picks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 16px 0 4px;
  max-width: 360px;
}
.email-picks .card { margin: 0; }
.nws-email .card .art img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}
.mail-view { max-width: 640px; margin: 24px auto; }
.email-edit { padding: 20px; }
.email-edit h3 { margin: 0 0 8px; font-size: 15px; }
.email-edit .nws-email { margin-top: 8px; margin-bottom: 16px; }
.email-edit label { margin-top: 10px; }
.pager { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.pager a, .pager button {
  display: inline-flex; min-width: 32px; height: 32px; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--line); color: #111; font-size: 13px; padding: 0 8px;
  background: #fff;
}
.pager a.on, .pager button.on { background: #111; color: #fff; border-color: #111; }
.pager button:hover { border-color: #111; }
.drop-photo.on { border-color: var(--red); background: #fff5f5; }
.html-picker {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(17,17,17,.45);
  display: grid; place-items: center;
  padding: 20px;
}
.html-picker-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.html-picker-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.html-picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}
.html-picker-grid button {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.html-picker-grid button:hover { border-color: #111; background: var(--well); }
.admin-page h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }

.admin-edit-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 1px 3px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.08);
}
.admin-edit-btn:hover { background: #111; color: #fff; }
.news-index li > .admin-edit-btn,
.queue-item > .admin-edit-btn,
.woke-item > .admin-edit-btn {
  top: 8px;
  right: 0;
}
.show-title-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 0;
}
.news-article .show-title-row { margin: 8px 0 0; }
.show-title-row .admin-edit-btn {
  position: static;
  flex-shrink: 0;
  margin-top: 8px;
}
.edit-page .lede { margin-bottom: 20px; }
.edit-form .corr-genres { margin: 8px 0 16px; }
.edit-form .photo-drop { margin-bottom: 12px; }
.edit-form #se-art-preview,
.edit-form #ne-art-preview {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  background: #111;
  margin: 0;
  border-radius: 0;
}
.edit-form .photo-url-label { margin-top: 8px; }

body.welcome-open { overflow: hidden; }
.welcome-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(20, 16, 16, 0.48);
}
.welcome-card {
  position: relative;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 22px 28px 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.welcome-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  margin: 0 0 14px;
}
.welcome-kicker {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.welcome-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: -6px -8px 0 0;
  border: 0;
  background: none;
  color: #111;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.welcome-x:hover { color: #555; }
.welcome-logo {
  display: block;
  width: min(340px, 100%);
  height: auto;
  margin: 0 0 18px;
}
.welcome-card h2 {
  margin: 0 0 12px;
  color: #111;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.welcome-lede {
  margin: 0 0 22px;
  color: #6b6b6b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.welcome-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.welcome-btn.primary {
  background: var(--red);
  color: #fff;
  border: 0;
  margin-bottom: 12px;
}
.welcome-btn.primary:hover { background: #c2161c; }
.welcome-btn.ghost {
  background: #fff;
  color: #111;
  border: 1px solid #d8d8d8;
}
.welcome-btn.ghost:hover { border-color: #111; }
@media (max-width: 480px) {
  .welcome-card { padding: 20px 22px 24px; border-radius: 24px; }
  .welcome-card h2 { font-size: 28px; }
}

/* 16px is the iOS threshold: smaller zooms in, much larger (16pt) can pull the page back. */
@media (hover: none) and (pointer: coarse), (max-width: 767px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]),
  textarea,
  select,
  [contenteditable="true"] {
    font-size: 16px !important;
    line-height: 1.4;
  }
}

.send-art-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.send-picked-art-wrap .send-art-actions .send-refresh { margin: 0; }

.tp-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20,16,16,.52);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.tp-card {
  position: relative;
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.tp-x {
  position: absolute; top: 10px; right: 12px;
  width: 32px; height: 32px; border: 0; background: transparent;
  font-size: 24px; line-height: 1; cursor: pointer; color: #111;
}
.tp-kicker { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #c00; }
.tp-help { margin: 6px 0 12px; font-size: 14px; color: #444; }
.tp-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.tp-stage img { position: absolute; display: block; }
#tp-bg { inset: 0; width: 100%; height: 100%; object-fit: cover; }
#tp-logo {
  cursor: grab;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
}
#tp-logo:active { cursor: grabbing; }
.tp-handle {
  position: absolute;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid #fff;
  background: #c00;
  border-radius: 3px;
  cursor: nwse-resize;
  z-index: 2;
  padding: 0;
}
.tp-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-top: 12px;
}
.tp-scale-label { display: flex; align-items: center; gap: 8px; font-size: 13px; flex: 1; min-width: 160px; }
.tp-scale-label input { flex: 1; }
.tp-file { font-size: 12px; font-weight: 700; color: #111; }
.tp-file input { display: block; margin-top: 4px; font-weight: 500; }
.tp-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 14px; }

.sa-stage { cursor: grab; }
.sa-stage:active { cursor: grabbing; }
#sa-img {
  position: absolute;
  max-width: none;
  max-height: none;
  cursor: grab;
  user-select: none;
}
#sa-img:active { cursor: grabbing; }
.sa-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
  border-radius: 10px;
}
#sa-scale-val { min-width: 3.2em; font-variant-numeric: tabular-nums; }

.art-edit-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 8px; }
.art-edit-actions .send-refresh { margin: 0; }
.art-edit-hint { margin: 0 0 10px; font-size: 13px; }

/* send-refresh pills */
.send-refresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  margin: 0;
  padding: 0 12px 0 10px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
}
.send-refresh:hover { background: #111; color: #fff; }
.send-refresh:disabled { opacity: .45; cursor: wait; }
.send-refresh .btn-ico {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}
.send-fieldset legend .send-refresh,
.send-field > label .send-refresh,
.muted .send-refresh { margin-left: 10px; }

.photo-drop.has-art img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #111;
}
.photo-drop.has-art label {
  min-height: 0;
  padding: 10px 12px 14px;
  gap: 8px;
}
.photo-drop.has-art .meme-drop-lead,
.photo-drop.has-art .meme-drop-hint { display: none; }

.art-missing {
  margin: 8px 0 0;
  color: var(--red, #c00);
  font-size: 14px;
  font-weight: 700;
}
.send-picked-art .art-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 16px;
  text-align: center;
}
