/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #151515;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --blue: #3269e8;
  --orange: #fb6a3d;
  --line: #cbc6bb;
  --muted: #716f69;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button, a {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  border-bottom: 1px solid var(--line);
  z-index: 20;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #f5f1e8f0;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  padding: 0 4.5vw;
  display: flex;
  position: sticky;
  top: 0;
}

.logo {
  letter-spacing: -.6px;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
}

.logo-mark {
  background: var(--ink);
  color: var(--paper);
  place-items: center;
  width: 36px;
  height: 36px;
  font: 500 13px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: grid;
  transform: rotate(-3deg);
}

.dot {
  color: var(--orange);
}

.nav {
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.nav a:hover {
  text-underline-offset: 4px;
  text-decoration: underline;
}

.header-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.icon-btn, .text-btn {
  background: none;
  border: 0;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  display: flex;
}

.icon-btn {
  padding: 8px;
}

.notification {
  position: relative;
}

.notification i {
  background: var(--orange);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.primary {
  border: 1px solid var(--ink);
  background: var(--blue);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 21px;
  font-weight: 800;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
}

.primary:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(2px, 2px);
}

.primary.small {
  padding: 10px 14px;
  font-size: 13px;
}

.mobile-menu {
  display: none;
}

.hero {
  border-bottom: 1px solid var(--ink);
  min-height: 620px;
  padding: 88px 8vw 60px;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  border: 75px solid var(--orange);
  opacity: .93;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  top: 75px;
  right: -90px;
}

.eyebrow, .section-no, .modal-label {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font: 500 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.eyebrow {
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  display: flex;
}

.hero h1 {
  letter-spacing: -7px;
  z-index: 2;
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 8.4vw, 128px);
  line-height: .78;
  position: relative;
}

.hero h1 em, .trust h2 em {
  color: var(--blue);
  font-family: Georgia, serif;
  font-weight: 500;
}

.hero-copy {
  max-width: 560px;
  margin: 40px 0 26px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  align-items: center;
  gap: 24px;
  display: flex;
}

.link-btn {
  border-bottom: 1px solid;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}

.mini-proof {
  z-index: 2;
  align-items: center;
  gap: 12px;
  display: flex;
  position: absolute;
  bottom: 58px;
  right: 10vw;
}

.mini-proof p {
  font-size: 11px;
  line-height: 1.5;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  border: 2px solid var(--paper);
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-left: -8px;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: grid;
}

.avatar-stack span:nth-child(2) {
  background: var(--orange);
}

.avatar-stack span:nth-child(3) {
  background: var(--blue);
}

.score-scribble {
  z-index: 2;
  text-align: center;
  position: absolute;
  top: 120px;
  right: 15vw;
  transform: rotate(7deg);
}

.score-scribble span {
  color: #fff;
  border-bottom: 3px solid #fff;
  font: 500 68px Newsreader;
}

.score-scribble small {
  color: #fff;
  margin-top: 9px;
  font: 500 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: block;
}

.ticker {
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
  align-items: center;
  gap: 22px;
  height: 44px;
  padding: 0 4vw;
  font: 12px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex;
  overflow: hidden;
}

.ticker div {
  color: #ffce46;
  align-items: center;
  gap: 8px;
  display: flex;
}

.ticker b {
  color: #8eb0ff;
}

.feed {
  padding: 100px 6vw;
}

.feed-head {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
  display: flex;
}

.feed h2, .trust h2, .manifesto h2 {
  letter-spacing: -3.5px;
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
}

.search {
  border-bottom: 1px solid var(--ink);
  align-items: center;
  gap: 10px;
  width: 300px;
  padding: 9px 2px;
  display: flex;
}

.search input {
  background: none;
  border: 0;
  outline: 0;
  width: 100%;
}

.filter-row {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 24px;
  display: flex;
}

.categories {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.categories button {
  border: 1px solid var(--line);
  background: none;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 700;
}

.categories button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.sort {
  font: 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.sort select {
  background: none;
  border: 0;
  font-weight: 600;
}

.post-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  display: grid;
}

.card {
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}

.card-art {
  background: var(--accent);
  height: 210px;
  padding: 17px;
  position: relative;
  overflow: hidden;
}

.card-art:before {
  content: "";
  border: 32px solid #ffffff47;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: -50px;
  right: -30px;
}

.category {
  background: var(--ink);
  color: #fff;
  text-transform: uppercase;
  padding: 6px 9px;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.big-score {
  letter-spacing: -7px;
  margin-top: 22px;
  font-size: 79px;
  font-weight: 800;
  line-height: 1;
}

.verdict {
  border-bottom: 2px solid;
  font: 500 12px ui-monospace, SFMono-Regular, Menlo, monospace;
  position: absolute;
  bottom: 20px;
  left: 19px;
}

.art-star {
  width: 39px;
  height: 39px;
  position: absolute;
  top: 24px;
  right: 23px;
  transform: rotate(12deg);
}

.card-2 .card-art, .card-5 .card-art {
  color: #fff;
}

.card-body {
  padding: 18px;
}

.byline {
  text-transform: uppercase;
  align-items: center;
  gap: 5px;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex;
}

.byline i {
  background: var(--ink);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-left: 4px;
}

.card h3 {
  letter-spacing: -.8px;
  margin: 18px 0 8px;
  font-size: 21px;
  line-height: 1.1;
}

.card-body > p {
  color: var(--muted);
  min-height: 40px;
  font-size: 13px;
  line-height: 1.5;
}

.card-meta {
  align-items: center;
  gap: 6px;
  margin: 20px 0 13px;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex;
}

.card-meta span {
  background: var(--muted);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin: 0 4px;
}

.card-actions {
  border-top: 1px solid var(--line);
  gap: 4px;
  padding-top: 12px;
  display: flex;
}

.card-actions div {
  margin-right: auto;
  display: flex;
}

.card-actions button {
  background: none;
  border: 0;
  place-items: center;
  width: 35px;
  height: 32px;
  display: grid;
}

.card-actions button:hover, .card-actions .chosen {
  background: #e7e1d5;
}

.card-actions .heart {
  color: #e04444;
}

.empty {
  text-align: center;
  border: 1px dashed var(--line);
  padding: 70px;
}

.empty svg {
  color: var(--blue);
}

.trust {
  background: var(--ink);
  color: #fff;
  grid-template-columns: 1fr 1.4fr;
  gap: 8vw;
  padding: 100px 7vw;
  display: grid;
}

.trust-copy > p {
  color: #bcbab5;
  max-width: 490px;
  line-height: 1.7;
}

.trust-copy > a {
  color: #ffcc45;
  border-bottom: 1px solid;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.principles {
  border-top: 1px solid #4b4b4b;
}

.principles > div {
  border-bottom: 1px solid #4b4b4b;
  grid-template-columns: 36px 38px 1fr 1.2fr;
  align-items: center;
  gap: 17px;
  padding: 28px 0;
  display: grid;
}

.principles span {
  color: #8c8c8c;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.principles svg {
  color: #ffcc45;
}

.principles h3 {
  font-size: 17px;
}

.principles p {
  color: #aaa;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.manifesto {
  background: var(--orange);
  text-align: center;
  padding: 100px 8vw;
}

.manifesto > p {
  letter-spacing: 2px;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.manifesto h2 {
  font-size: clamp(48px, 7vw, 95px);
}

.manifesto h2 span {
  color: #fff;
  font-family: Georgia, serif;
  font-style: italic;
}

.manifesto button, .manifesto .contact-link {
  border: 1px solid var(--ink);
  background: none;
  align-items: center;
  gap: 9px;
  margin-top: 35px;
  padding: 13px 18px;
  font-weight: 800;
  display: inline-flex;
}

footer {
  grid-template-columns: 1.5fr 1fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  padding: 55px 5vw;
  font-size: 11px;
  display: grid;
}

footer > p {
  color: var(--muted);
}

footer > div:nth-of-type(2) {
  justify-content: center;
  gap: 19px;
  display: flex;
}

.modal-backdrop {
  z-index: 50;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #0f0f0fc7;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 var(--blue);
  width: min(550px, 100%);
  max-height: 92vh;
  padding: 36px;
  position: relative;
  overflow: auto;
}

.modal-close {
  background: none;
  border: 0;
  position: absolute;
  top: 17px;
  right: 17px;
}

.modal h2 {
  letter-spacing: -2px;
  margin: 8px 0;
  font-size: 38px;
}

.modal > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.modal form {
  gap: 15px;
  margin-top: 26px;
  display: grid;
}

.modal label {
  text-transform: uppercase;
  letter-spacing: .7px;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  display: grid;
}

.modal input, .modal textarea, .modal select {
  border: 1px solid var(--ink);
  background: var(--white);
  outline: none;
  padding: 12px;
}

.modal input:focus, .modal textarea:focus, .modal select:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.modal textarea {
  resize: vertical;
  min-height: 82px;
}

.form-split {
  grid-template-columns: 1.4fr .6fr;
  gap: 12px;
  display: grid;
}

.privacy-note {
  gap: 7px;
  display: flex;
  color: var(--muted) !important;
  align-items: center !important;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace !important;
}

.submit {
  width: 100%;
  margin-top: 2px;
}

.toast {
  z-index: 80;
  background: var(--ink);
  color: #fff;
  box-shadow: 4px 4px 0 var(--orange);
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 13px;
  animation: .2s pop;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

.hero-search {
  border: 1px solid var(--ink);
  background: var(--white);
  width: min(680px, 100%);
  height: 58px;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 3;
  align-items: center;
  gap: 12px;
  margin: 28px 0 24px;
  padding: 0 8px 0 17px;
  display: flex;
  position: relative;
}

.hero-search input {
  background: none;
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  font-size: 15px;
}

.hero-search a {
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
}

.stats-strip {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 1fr 3fr;
  align-items: stretch;
  display: grid;
}

.stats-strip > div {
  color: #ffcc45;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-items: center;
  gap: 10px;
  padding: 24px 5vw;
  font: 500 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex;
}

.stats-strip dl {
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  display: grid;
}

.stats-strip dl > div {
  border-left: 1px solid #444;
  padding: 19px 25px;
}

.stats-strip dt {
  font-size: 27px;
  font-weight: 800;
}

.stats-strip dd {
  color: #aaa;
  text-transform: uppercase;
  margin: 3px 0 0;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.post-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.card {
  grid-template-columns: 190px 1fr;
  display: grid;
}

.card-art {
  height: auto;
  min-height: 220px;
}

.card-body > p {
  min-height: 0;
}

.feed {
  background: #eee9df;
}

.feed-head, .filter-row {
  max-width: 1100px;
}

.empty {
  background: var(--white);
  max-width: 920px;
}

.user-chip {
  border: 1px solid var(--line);
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  font: 600 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex;
}

.account-tabs {
  border: 1px solid var(--ink);
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 4px;
  display: grid;
}

.account-tabs button {
  background: none;
  border: 0;
  padding: 11px;
  font-weight: 800;
}

.account-tabs button.active {
  background: var(--ink);
  color: #fff;
}

.account-id {
  border: 1px solid var(--ink);
  background: var(--white);
  align-items: center;
  gap: 8px;
  margin: 22px 0;
  padding: 12px;
  display: flex;
}

.account-id code {
  overflow-wrap: anywhere;
  flex: 1;
  min-width: 0;
  font: 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.account-id button {
  background: var(--ink);
  color: #fff;
  border: 0;
  place-items: center;
  padding: 9px;
  display: grid;
}

.local-warning {
  border-left: 4px solid var(--blue);
  background: #e5ebff;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0 20px;
  padding: 14px;
  font-size: 11px;
  line-height: 1.5;
  display: flex;
}

.local-warning strong {
  margin-bottom: 3px;
  display: block;
}

.account-result > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .nav, .text-btn {
    display: none;
  }

  .post-grid, .trust {
    grid-template-columns: 1fr;
  }

  .hero:after {
    width: 260px;
    height: 260px;
    top: 220px;
    right: -120px;
  }

  .score-scribble {
    display: none;
  }

  .mini-proof {
    right: 6vw;
  }

  .principles > div {
    grid-template-columns: 30px 35px 1fr;
  }

  .principles p {
    grid-column: 3;
  }

  .feed-head {
    align-items: flex-start;
    gap: 25px;
  }

  .search {
    width: 240px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > div:nth-of-type(2) {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .card {
    grid-template-columns: 1fr;
  }

  .card-art {
    height: 190px;
    min-height: 0;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip dl > div:nth-child(odd) {
    border-left: 0;
  }

  .stats-strip > div {
    padding-bottom: 12px;
  }

  .hero-search {
    height: 54px;
  }

  .topbar {
    padding: 0 18px;
  }

  .header-actions > .primary, .notification {
    display: none;
  }

  .mobile-menu {
    display: grid;
  }

  .nav.open {
    background: var(--paper);
    border-bottom: 1px solid;
    flex-direction: column;
    padding: 20px;
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
  }

  .hero {
    min-height: 650px;
    padding: 65px 22px 90px;
  }

  .hero h1 {
    letter-spacing: -4px;
    font-size: 62px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-proof {
    bottom: 50px;
    left: 30px;
    right: auto;
  }

  .ticker {
    gap: 16px;
  }

  .feed {
    padding: 70px 18px;
  }

  .feed-head {
    display: block;
  }

  .search {
    width: 100%;
    margin-top: 28px;
  }

  .filter-row {
    display: block;
  }

  .sort {
    margin-top: 15px;
    display: block;
  }

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

  .trust {
    padding: 75px 23px;
  }

  .principles > div {
    grid-template-columns: 30px 33px 1fr;
  }

  .manifesto {
    padding: 70px 20px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > div:nth-of-type(2) {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .modal {
    padding: 30px 20px;
  }

  .form-split {
    grid-template-columns: 1fr;
  }

  .hero:after {
    top: 360px;
    right: -175px;
  }
}

.comment-list {
  gap: 10px;
  max-height: 300px;
  margin: 22px 0;
  display: grid;
  overflow: auto;
}

.comment-list article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 13px;
}

.comment-list article > div {
  justify-content: space-between;
  gap: 15px;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex;
}

.comment-list article span, .muted {
  color: var(--muted);
}

.comment-list article p {
  white-space: pre-wrap;
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.field-help {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.simple-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  height: 76px;
  padding: 0 5vw;
  display: flex;
}

.simple-header > a:last-child {
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
}

.legal-page, .category-page {
  min-height: 100vh;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--ink);
  width: min(820px, 100% - 36px);
  box-shadow: 6px 6px 0 var(--ink);
  margin: 70px auto 100px;
  padding: clamp(28px, 6vw, 70px);
}

.legal-card h1, .category-browser h1 {
  letter-spacing: -4px;
  margin: 12px 0 18px;
  font-size: clamp(45px, 7vw, 82px);
  line-height: .95;
}

.legal-card h2 {
  margin: 36px 0 8px;
  font-size: 22px;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card a:not(.primary) {
  color: var(--blue);
  text-decoration: underline;
}

.legal-updated {
  text-transform: uppercase;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace !important;
}

.legal-card .primary {
  color: #fff;
  margin-top: 28px;
}

.category-browser {
  padding: 70px 7vw 100px;
}

.browser-heading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  display: flex;
}

.browser-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.sync-status {
  color: var(--muted);
  margin: 35px 0 18px;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.live-dot {
  background: #25a55f;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
  box-shadow: 0 0 0 4px #25a55f22;
}

.category-directory {
  gap: 8px;
  display: grid;
}

.category-directory > a {
  --indent: calc(var(--depth) * 28px);
  margin-left: var(--indent);
  background: var(--white);
  border: 1px solid var(--line);
  grid-template-columns: minmax(150px, 1fr) minmax(180px, 2fr) auto 22px;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  display: grid;
}

.category-directory > a:hover {
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.category-directory span {
  font-weight: 800;
}

.category-directory small {
  color: var(--muted);
}

.category-directory strong {
  font-size: 11px;
}

@media (max-width: 620px) {
  .simple-header {
    padding: 0 18px;
  }

  .simple-header .logo > span:last-child {
    display: none;
  }

  .category-browser {
    padding: 55px 18px;
  }

  .browser-heading {
    display: block;
  }

  .browser-heading button {
    margin-top: 18px;
  }

  .category-directory > a {
    margin-left: calc(var(--depth) * 10px);
    grid-template-columns: 1fr auto 20px;
  }

  .category-directory small {
    display: none;
  }

  .legal-card {
    margin-top: 30px;
  }

  .legal-card h1 {
    letter-spacing: -2px;
  }
}

.legal-notice {
  border-left: 5px solid var(--orange);
  background: #fff0c9;
  margin: 28px 0;
  padding: 17px 20px;
}

.legal-notice p {
  margin: 6px 0 0 !important;
}

.legal-table {
  border: 1px solid var(--line);
  margin: 16px 0;
}

.legal-table > div {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 13px 15px;
  font-size: 13px;
  display: grid;
}

.legal-table > div:last-child {
  border-bottom: 0;
}

.legal-table span {
  color: var(--muted);
  line-height: 1.5;
}

.legal-card code {
  background: #e9e3d8;
  padding: 2px 5px;
}

.post-page {
  background: #eee9df;
  min-height: 100vh;
}

.post-detail {
  background: var(--white);
  border: 1px solid var(--ink);
  width: min(1000px, 100% - 36px);
  box-shadow: 5px 5px 0 var(--ink);
  grid-template-columns: 270px 1fr;
  margin: 55px auto 25px;
  display: grid;
}

.post-score {
  flex-direction: column;
  min-height: 310px;
  padding: 25px;
  display: flex;
  position: relative;
}

.post-score > span {
  background: var(--ink);
  color: #fff;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 7px 9px;
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.post-score > strong {
  letter-spacing: -8px;
  margin-top: 35px;
  font-size: 92px;
  line-height: 1;
}

.post-score > small {
  border-bottom: 2px solid;
  align-self: flex-start;
  font-weight: 800;
}

.post-score > svg {
  position: absolute;
  top: 24px;
  right: 22px;
}

.post-copy {
  padding: 42px;
}

.post-copy h1 {
  letter-spacing: -3px;
  margin: 30px 0 15px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: .98;
}

.post-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.detail-votes {
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  display: flex;
}

.detail-votes button {
  border: 1px solid var(--line);
  background: none;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  font-weight: 800;
  display: flex;
}

.detail-votes button.chosen {
  background: var(--ink);
  color: #fff;
}

.discussion {
  width: min(850px, 100% - 36px);
  margin: 55px auto 100px;
}

.discussion-head {
  border-bottom: 1px solid var(--ink);
  justify-content: space-between;
  align-items: end;
  padding-bottom: 18px;
  display: flex;
}

.discussion-head h2 {
  letter-spacing: -2px;
  margin: 6px 0 0;
  font-size: 40px;
}

.discussion-head > span {
  color: var(--muted);
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.comment-composer {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 22px 0;
  padding: 20px;
}

.comment-composer > div {
  align-items: center;
  gap: 9px;
  display: flex;
}

.comment-composer textarea {
  border: 1px solid var(--line);
  resize: vertical;
  width: 100%;
  min-height: 100px;
  margin: 14px 0 10px;
  padding: 13px;
}

.comment-composer > p {
  color: var(--muted);
  gap: 6px;
  font-size: 10px;
  display: flex;
}

.reddit-comments {
  gap: 10px;
  display: grid;
}

.reddit-comments > article {
  background: var(--white);
  border: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  min-height: 110px;
  display: grid;
}

.thread-rail {
  border-right: 1px solid var(--line);
  justify-content: center;
  padding-top: 18px;
  display: flex;
  position: relative;
}

.thread-rail:after {
  content: "";
  background: var(--line);
  width: 2px;
  position: absolute;
  top: 43px;
  bottom: 13px;
}

.thread-rail span {
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.reddit-comments article > div:last-child {
  padding: 17px 20px;
}

.reddit-comments header {
  align-items: center;
  gap: 10px;
  display: flex;
}

.reddit-comments header small {
  color: var(--muted);
}

.reddit-comments p {
  white-space: pre-wrap;
  margin-bottom: 3px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .legal-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .post-detail {
    grid-template-columns: 1fr;
  }

  .post-score {
    min-height: 230px;
  }

  .post-copy {
    padding: 26px;
  }

  .detail-votes {
    flex-wrap: wrap;
  }

  .discussion-head {
    align-items: start;
    gap: 15px;
  }
}

.consent-loading {
  min-height: 100vh;
  color: var(--muted);
  place-items: center;
  display: grid;
}

.consent-backdrop {
  z-index: 200;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background: #0f0f0fe0;
  place-items: center;
  padding: 18px;
  display: grid;
  position: fixed;
  inset: 0;
}

.consent-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  width: min(560px, 100%);
  max-height: 94vh;
  box-shadow: 8px 8px 0 var(--orange);
  padding: clamp(26px, 5vw, 44px);
  overflow: auto;
}

.consent-icon {
  background: var(--ink);
  color: #fff;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: grid;
}

.consent-card h1 {
  letter-spacing: -3px;
  margin: 10px 0 15px;
  font-size: clamp(36px, 7vw, 55px);
  line-height: .95;
}

.consent-card > p {
  color: var(--muted);
  line-height: 1.6;
}

.consent-checks {
  gap: 10px;
  margin: 25px 0 20px;
  display: grid;
}

.consent-checks label {
  background: var(--white);
  border: 1px solid var(--line);
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  padding: 13px;
  font-size: 13px;
  line-height: 1.45;
  display: grid;
}

.consent-checks input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.consent-checks a, .consent-declined a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}

.consent-accept {
  width: 100%;
}

.consent-accept:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: 3px 3px 0 var(--ink);
  transform: none;
}

.consent-decline {
  color: var(--muted);
  background: none;
  border: 0;
  margin: 18px auto 0;
  text-decoration: underline;
  display: block;
}

.consent-declined {
  background: var(--white);
  border: 1px solid var(--line);
  margin-top: 24px;
  padding: 20px;
}

.consent-declined p {
  color: var(--muted);
  line-height: 1.5;
}

.category-browser-link {
  color: var(--blue);
}

@media (max-width: 620px) {
  .category-browser-link {
    margin-top: -10px;
  }
}

.category-tools {
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  margin: 38px 0 14px;
  display: grid;
}

.category-search {
  background: var(--white);
  border: 1px solid var(--ink);
  height: 52px;
  box-shadow: 3px 3px 0 var(--ink);
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  display: flex;
}

.category-search input {
  background: none;
  border: 0;
  outline: 0;
  width: 100%;
}

.category-filters {
  align-items: center;
  gap: 10px;
  display: flex;
}

.category-filters > span {
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}

.category-filters label {
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex;
}

.category-filters select {
  background: none;
  border: 0;
  outline: 0;
  font-weight: 800;
}

.category-filters button {
  color: var(--muted);
  background: none;
  border: 0;
  font-size: 11px;
  text-decoration: underline;
}

.directory-status {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.directory-status .sync-status {
  margin: 0;
}

.directory-status > strong {
  color: var(--muted);
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (max-width: 850px) {
  .category-tools {
    grid-template-columns: 1fr;
  }

  .category-filters {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .category-filters > span {
    width: 100%;
  }

  .category-filters label {
    flex: 1;
    justify-content: space-between;
  }

  .directory-status {
    align-items: flex-start;
    gap: 10px;
  }

  .directory-status > strong {
    text-align: right;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/