/* Manu Arcade — the "More from the Arcade" related-games nav under each
   game's notes leaf. Same parchment shell as notes.css, quieter: it is a
   signpost, not a chapter. No em dashes in on-screen copy. */

.related {
  width: min(720px, 100%);
  margin: clamp(10px, 2vw, 22px) auto 0;
  padding: clamp(18px, 3vw, 28px);
  text-align: left;
  font-family: var(--body);
  color: var(--ink-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .02)), var(--parchment);
  box-shadow:
    inset 0 0 0 1px rgba(200, 156, 58, .38),
    inset 0 0 0 3px rgba(122, 104, 80, .14),
    0 8px 22px rgba(58, 46, 34, .14);
}

.related > h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(21px, 3.6vw, 27px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.related-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}

@media (max-width: 560px) {
  .related-links { grid-template-columns: 1fr; }
}

.related-links li {
  font-size: 15px;
  line-height: 1.45;
  padding: 4px 0;
  border-bottom: 1px solid rgba(122, 104, 80, .18);
}

.related-links a {
  font-family: var(--caps, var(--body));
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--oxblood, #7a2f22);
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 47, 34, .35);
}

.related-links a:hover { border-bottom-color: currentColor; }

.related-links span {
  display: block;
  font-size: 13.5px;
  color: var(--ink-faint, var(--ink-soft));
  opacity: .85;
}

.related-browse {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
}

.related-browse a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 156, 58, .55);
}

.related-browse a:hover { border-bottom-color: currentColor; }
