/* home page: open sections on the page background, separated by thin rules (no boxes) */
.home-hero { padding: 72px 0 44px; }
.home-hero h1 { font-size: clamp(44px, 9vw, 72px); line-height: 1.1; margin: 0 0 16px; font-weight: 700; }
.home-hero h1 span { color: var(--accent); margin-left: -0.2em; }
.home-hero .lede { font-size: 18px; color: var(--ink-soft); margin: 0; max-width: 40ch; }
.home-hero .lede span { display: block; }

.home-sec { border-top: 1px solid var(--border-strong); padding: 26px 0 34px; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.sec-head h2 { font-size: 24px; margin: 0; font-weight: 600; }
.sec-head h2 a { color: inherit; text-decoration: none; }
.sec-head h2 a:hover { color: var(--accent); }
.sec-more { font-size: 14px; color: var(--accent); text-decoration: none; white-space: nowrap; }
.sec-more:hover { text-decoration: underline; }
.sec-desc { margin: 6px 0 0; font-size: 15px; color: var(--ink-soft); }

.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.thumbs a { display: block; }
.thumbs img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; display: block; }

.latest { list-style: none; margin: 10px 0 0; padding: 0; }
.latest li { border-top: 1px solid var(--border); }
.latest li:first-child { border-top: 0; }
.latest a { display: flex; gap: 16px; align-items: baseline; padding: 9px 0; color: var(--ink); text-decoration: none; font-size: 16px; }
.latest a:hover { color: var(--accent); }
.latest time { flex: none; min-width: 5.6rem; font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }

.home-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 64px; }

@media (max-width: 640px) {
  .home-hero { padding: 44px 0 30px; }
  .thumbs { grid-template-columns: repeat(2, 1fr); }
  .latest a { flex-direction: column; gap: 0; }
  .latest time { min-width: 0; }
  .home-duo { grid-template-columns: 1fr; }
}
