/* Lee Stoneking archive hub — readable, mobile-first */
.stone-hub {
  --stone-ink: #1a1a1a;
  --stone-muted: #475569;
  --stone-gold: #8b6914;
  --stone-gold-bright: #c9a227;
  --stone-navy: #1e3a5f;
  --stone-panel: #fff;
  --stone-wash: #f5efe6;
  --stone-line: #e8e0d4;
}

.stone-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--stone-line);
  font-family: system-ui, sans-serif;
}

.stone-subnav a {
  color: var(--stone-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.stone-subnav a:hover,
.stone-subnav a[aria-current="page"] {
  color: var(--stone-gold);
}

.stone-hero {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin-bottom: 2.5rem;
}

.stone-hero-copy h1 {
  margin-top: 0.35em;
  color: var(--stone-navy);
}

.stone-hero-copy .lead {
  color: var(--stone-muted);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 40rem;
}

.stone-hero-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stone-line);
  background: #000;
  box-shadow: 0 12px 32px #1e3a5f14;
}

.stone-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 176 / 406;
  object-fit: cover;
  object-position: center top;
  max-height: 420px;
}

.stone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.stone-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stone-card {
  background: var(--stone-panel);
  border: 1px solid var(--stone-line);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 24px #1e3a5f0a;
}

.stone-card h2,
.stone-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--stone-navy);
  font-family: system-ui, sans-serif;
}

.stone-card p {
  margin: 0 0 0.85rem;
  color: var(--stone-muted);
  line-height: 1.65;
}

.stone-card .links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}

.stone-card .links a {
  color: var(--stone-gold);
  font-weight: 700;
  text-decoration: none;
}

.stone-card .links a:hover {
  text-decoration: underline;
}

.stone-section {
  margin: 2.75rem 0;
}

.stone-section > h2 {
  color: var(--stone-navy);
  margin-bottom: 0.35em;
}

.stone-section > .section-intro {
  color: var(--stone-muted);
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

.stone-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stone-pill-list a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--stone-wash);
  border: 1px solid var(--stone-line);
  color: var(--stone-navy);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.stone-pill-list a:hover {
  background: #ebe0cc;
}

.stone-photo-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stone-photo-grid figure {
  margin: 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stone-line);
}

.stone-photo-grid img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.stone-photo-grid figcaption {
  padding: 0.55rem 0.7rem;
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: #e8dcc8;
  background: #1e3a5f;
}

.stone-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.4rem;
  border-radius: 12px;
  background: var(--stone-wash);
  border: 1px solid var(--stone-line);
  color: #5c4a32;
  line-height: 1.65;
}

.stone-note a {
  color: var(--stone-gold);
  font-weight: 700;
}

@media (max-width: 860px) {
  .stone-hero {
    grid-template-columns: 1fr;
  }
  .stone-hero-media img {
    max-height: 280px;
    aspect-ratio: 16 / 10;
  }
}
