/* ============================================================
   NEWSLETTER — archive + single
   ============================================================ */

/* ---- Shared eyebrow variant ---- */
.eyebrow--light {
  color: rgba(251,246,238,0.75);
  border-color: rgba(251,246,238,0.3);
}

/* ============================================================
   ARCHIVE — nl-archive-page
   ============================================================ */
.nl-archive-page { background: var(--background); }

/* Hero */
.nl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.nl-hero-bg {
  position: absolute;
  inset: 0;
}
.nl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.nl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43,31,18,0.25) 0%,
    rgba(43,31,18,0.72) 60%,
    rgba(43,31,18,0.92) 100%
  );
}
.nl-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4.5rem;
  max-width: 860px;
}
.nl-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: #fff;
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}
.nl-hero-lead {
  color: rgba(251,246,238,0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 0 2rem;
  line-height: 1.7;
}
.nl-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nl-hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(251,246,238,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.nl-hero-stat svg { color: var(--accent); flex-shrink: 0; }

/* Grid */
.nl-list-section { padding: 4.5rem 0; }
.nl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .nl-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-card--featured { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .nl-grid { grid-template-columns: repeat(3, 1fr); }
  .nl-card--featured { grid-column: span 2; }
}

/* Card */
.nl-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.nl-card:hover {
  box-shadow: 0 20px 48px -18px rgba(43,31,18,0.22);
  transform: translateY(-3px);
}
.nl-card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--muted);
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.nl-card--featured .nl-card-thumb { aspect-ratio: 21/9; }
.nl-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.nl-card:hover .nl-card-thumb img { transform: scale(1.04); }
.nl-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}
.nl-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.nl-card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nl-card-date svg { color: var(--accent); }
.nl-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0;
}
.nl-card--featured .nl-card-title { font-size: 1.65rem; }
.nl-card-title a { color: var(--foreground); }
.nl-card-title a:hover { color: var(--primary); }
.nl-card-excerpt {
  color: var(--muted-foreground);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.nl-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  transition: gap 0.2s;
}
.nl-card-cta:hover { gap: 0.7rem; }

/* CTA strip */
.nl-cta-strip {
  background: var(--foreground);
  padding: 4rem 0;
  margin-top: 2rem;
}
.nl-cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nl-cta-strip h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}
.nl-cta-strip p { color: rgba(251,246,238,0.65); margin: 0; }
.nl-cta-strip .btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  flex-shrink: 0;
}

/* ============================================================
   SINGLE — nl-single-page
   ============================================================ */
.nl-single-page { background: var(--background); }

/* Hero */
.nl-single-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--foreground) var(--nl-thumb, '') center/cover no-repeat;
}
.nl-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43,31,18,0.2) 0%,
    rgba(43,31,18,0.68) 55%,
    rgba(43,31,18,0.94) 100%
  );
}
.nl-single-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 820px;
}
.nl-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(251,246,238,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.nl-back-link:hover { color: #fff; }
.nl-back-link svg { color: var(--accent); }
.nl-single-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #fff;
  margin: 0.4rem 0 1rem;
  line-height: 1.12;
}
.nl-single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(251,246,238,0.7);
  font-size: 0.9rem;
}
.nl-single-meta svg { color: var(--accent); }
.nl-single-meta-sep { opacity: 0.5; }

/* Body layout */
.nl-single-body {
  padding: 3.5rem 0 5rem;
}
.nl-single-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .nl-single-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

/* Article */
.nl-single-article { min-width: 0; }

/* Download card */
.nl-download-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 2.5rem;
}
.nl-download-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nl-download-text { flex: 1; min-width: 160px; }
.nl-download-text strong { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.nl-download-text p { margin: 0; font-size: 0.9rem; color: var(--muted-foreground); }

/* Sidebar */
.nl-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nl-sidebar-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nl-sidebar-donate svg { color: var(--primary); }
.nl-sidebar-donate h3 {
  font-size: 1.2rem;
  margin: 0;
}
.nl-sidebar-donate p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.nl-sidebar-archive svg { color: var(--secondary); }
.nl-sidebar-archive h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* Pager */
.nl-pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.nl-pager-link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 42%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nl-pager-link:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px -12px rgba(194,65,12,0.25);
}
.nl-pager-link--next { margin-left: auto; text-align: right; }
.nl-pager-dir {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nl-pager-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--foreground);
  line-height: 1.3;
}
