/*
 * What's on our desk — index page.
 * Intro paragraph + grid of weekly issue cards. Renamed from
 * reading.css in Phase 1 (the /reading URL now lives at /wood).
 */

/* === Hide the redundant page-title h1 — all viewports =================
   The URL and page identity already tell the visitor where they are;
   repeating "What's on our desk" as a big h1 inside is decorative
   redundancy. Same visually-hidden idiom as .shop > .h1 / .contact > .h1
   / .about > .h1 — kept in markup for SEO and screen readers. */
.wood > .h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wood > .intro {
  max-width: 65ch;
  margin-bottom: 3rem;
}

.wood > h2.h2 {
  margin-top: 3rem;
}

.wood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.wood-grid li { margin: 0; }

.wood-grid a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity .2s;
}

.wood-grid a:hover { opacity: .85; }

.wood-grid figure { margin: 0; }

.wood-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f4f4f4;
}

.wood-grid figcaption {
  margin-top: .75rem;
  font-size: .9rem;
  line-height: 1.4;
}

.wood-grid .issue-title {
  /* unified typography — no bold (was font-weight: 600). */
  display: block;
}

.wood-grid .issue-date {
  display: block;
  color: #777;
  margin-top: .15rem;
}

.wood-grid .issue-intro {
  display: block;
  margin-top: .35rem;
  color: #555;
}
