:root {
  --bg: #f4efe6;
  --paper: #fffaf1;
  --ink: #1f1c17;
  --muted: #5e564d;
  --line: #d7c9b5;
  --accent: #b54a2d;
  --accent-2: #1f5f5b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(181, 74, 45, 0.12), transparent 24rem),
    radial-gradient(circle at top right, rgba(31, 95, 91, 0.12), transparent 24rem),
    linear-gradient(180deg, #f8f2e8 0%, var(--bg) 100%);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: var(--accent);
}

.hub,
.page {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
}

.hub {
  padding: 4rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font: 600 0.85rem/1.2 "Helvetica Neue", Arial, sans-serif;
}

.hub h1,
.page h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.96;
}

.lede {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.choice-card,
.digest-item,
.summary-box {
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(60, 42, 19, 0.08);
}

.choice-card {
  overflow: hidden;
}

.choice-card img {
  display: block;
  width: 100%;
  height: auto;
}

.choice-copy {
  padding: 1.2rem 1.2rem 1.4rem;
}

.choice-copy .lang {
  margin: 0 0 0.35rem;
  color: var(--accent-2);
  font: 600 0.85rem/1.2 "Helvetica Neue", Arial, sans-serif;
}

.choice-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.choice-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.choice-copy a {
  font-weight: 700;
}

.rtl-card {
  direction: rtl;
  text-align: right;
}

.page {
  padding: 3rem 0 5rem;
}

.page-header {
  margin-bottom: 2rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font: 600 0.95rem/1.2 "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
}

.page-meta {
  margin-top: 1rem;
  color: var(--muted);
  font: 500 0.95rem/1.6 "Helvetica Neue", Arial, sans-serif;
}

.summary-box {
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0 2rem;
}

.summary-box p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.digest-list {
  display: grid;
  gap: 1.25rem;
}

.digest-item {
  padding: 1.35rem 1.4rem 1.45rem;
}

.digest-item h2 {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.digest-item p {
  margin: 0 0 0.8rem;
  line-height: 1.75;
}

.digest-item .satire {
  color: var(--accent-2);
  font-style: italic;
}

.digest-item .source {
  margin: 0;
  font: 600 0.95rem/1.3 "Helvetica Neue", Arial, sans-serif;
}

.digest-item .source a {
  text-decoration: none;
}

.page-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.rtl {
  direction: rtl;
  text-align: right;
}

@media (max-width: 640px) {
  .page,
  .hub {
    width: min(100% - 1.25rem, 980px);
  }

  .digest-item,
  .summary-box,
  .choice-copy {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
