/* ─── Book Cover Cards ───────────────────────────────────────────── */
.book-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.book-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  gap: 12px;
  transition: transform .22s var(--ease);
}
.book-card:hover { transform: translateY(-4px); }
.book-cover-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 4px 6px 20px rgba(24,21,28,.22), 1px 1px 0 rgba(0,0,0,.08);
  aspect-ratio: 2/3;
  background: var(--ink);
}
.book-cover-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.book-card-info { padding: 0 2px; }
.book-card-title {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}
.book-card-sub {
  font-size: .76rem;
  color: var(--ink-3);
  margin-top: 3px;
  display: block;
}
.book-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
}
.book-card-link::after { content: "→"; }

/* Book detail: cover + text side by side */
.book-detail {
  display: grid;
  gap: 24px;
  align-items: start;
}
.book-detail-cover {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 6px 10px 28px rgba(24,21,28,.25);
}
.book-detail-cover img { width: 100%; display: block; }

@media (min-width: 580px) {
  .book-detail { grid-template-columns: 200px 1fr; }
  .book-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (min-width: 900px) {
  .book-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── SLUSH Book Feature ─────────────────────────────────────────── */
.slush-book-feature {
  display: grid;
  gap: 0;
  background: var(--ink);
  border-radius: var(--r);
  overflow: hidden;
  color: #fff;
}
.slush-book-cover {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.slush-book-body {
  padding: 22px 22px 26px;
}
.slush-book-body .eyebrow { color: rgba(255,255,255,.55); }
.slush-book-body h3 { color: #fff; margin-top: 8px; }
.slush-book-body p { color: rgba(255,255,255,.72); margin-top: 10px; font-size: .93rem; line-height: 1.6; }

@media (min-width: 640px) {
  .slush-book-feature { grid-template-columns: 240px 1fr; }
  .slush-book-cover { max-height: none; width: 240px; height: 100%; min-height: 240px; object-position: center; }
}

/* ─── Grete Characters ───────────────────────────────────────────── */
.character-grid {
  display: grid;
  gap: 12px;
}
.character-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
}
.character-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.character-card p { font-size: .88rem; color: var(--ink-2); line-height: 1.55; }

@media (min-width: 600px) {
  .character-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Reduced Footer ─────────────────────────────────────────────── */
.site-footer-slim {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
  background: var(--paper);
}
.footer-slim-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-slim-copy { font-size: .78rem; color: var(--ink-3); }
.footer-slim-nav { display: flex; gap: 16px; }
.footer-slim-nav a {
  font-size: .78rem; color: var(--ink-3);
  text-decoration: none; font-weight: 500;
}
.footer-slim-nav a:hover { color: var(--accent); }
