/* Anthology — curated reading paths through the journal */

.anth-hero {
  padding: 10rem var(--gutter) 4rem;
  background: var(--cream-light);
  text-align: center;
}
.anth-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.anth-hero h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
  color: var(--ink);
}
.anth-hero p {
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto;
}

.anth-intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem var(--gutter) 1rem;
  text-align: center;
}
.anth-intro p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Path block */
.anth-path {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem var(--gutter) 1rem;
  border-top: 1px solid var(--line);
}
.anth-path:first-of-type {
  border-top: none;
  padding-top: 2.5rem;
}

.anth-path-header {
  margin-bottom: 2.5rem;
}
.anth-path-header .eyebrow {
  margin-bottom: 0.5rem;
}
.anth-path-header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.anth-path-header p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* Article in path */
.anth-article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.anth-article:last-child {
  border-bottom: none;
}

.anth-article-marker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}

.anth-article-body h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
}
.anth-article-body h3 a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.anth-article-body h3 a:hover {
  border-bottom-color: var(--accent);
}
.anth-article-meta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.anth-article-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.anth-article-why {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  margin-top: 0.75rem;
}

/* Special highlight block */
.anth-recommendation {
  max-width: 700px;
  margin: 4rem auto 0;
  padding: 3rem var(--gutter);
  background: var(--ink);
  color: var(--cream-light);
  text-align: center;
}
.anth-recommendation .eyebrow {
  color: var(--tan);
}
.anth-recommendation h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0.75rem 0 1rem;
  color: var(--cream-light);
}
.anth-recommendation p {
  color: var(--tan);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.anth-recommendation .btn-outline {
  color: var(--cream-light);
  border-color: var(--tan);
}
.anth-recommendation .btn-outline:hover {
  background: var(--cream-light);
  color: var(--ink);
}

/* End CTA */
.anth-end {
  padding: 6rem var(--gutter);
  text-align: center;
  background: var(--cream-light);
  border-top: 1px solid var(--line);
}
.anth-end h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--ink);
  margin: 0 0 1rem;
}
.anth-end p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .anth-article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  .anth-article-marker {
    font-size: 1.25rem;
  }
  .anth-path {
    padding: 3rem var(--gutter) 1rem;
  }
}
