/* Newsletter index — plain archive list */

:root {
  --bg: #e2e4df;
  --ink: #1a221c;
  --muted: rgba(26, 34, 28, 0.55);
  --line: rgba(26, 34, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}

.archive-shell {
  width: min(640px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.kicker {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.08em;
  opacity: 0.55;
  text-transform: lowercase;
}

.archive-header {
  margin: 0 0 2rem;
}

.archive-title {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: normal;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.archive-lede {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  max-width: 42ch;
}

.edition-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.edition-list > li {
  border-bottom: 1px solid var(--line);
}

.edition-list a {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0.15rem 1rem 0;
  text-decoration: none;
  color: inherit;
}

.edition-list a:hover .edition-title,
.edition-list a:focus-visible .edition-title {
  text-decoration: underline;
}

.edition-list a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.edition-thumb-wrap {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.edition-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edition-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.edition-title {
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
}

.edition-date {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.edition-slug {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: lowercase;
  opacity: 0.9;
}
