/* ═══════════════════════════════════════════════════
   MODULES — Actus, Blog, Communauté, Accueil extras
   ═══════════════════════════════════════════════════ */

/* ── Cat card color variants ───────────────────── */
.cat-card--blue  { border-color: rgba(60,120,200,.35); }
.cat-card--blue:hover { border-color: rgba(100,160,240,.7); box-shadow: 0 0 30px rgba(60,120,200,.2); }
.cat-card--green { border-color: rgba(40,140,60,.35); }
.cat-card--green:hover { border-color: rgba(60,180,80,.7); box-shadow: 0 0 30px rgba(40,140,60,.2); }
.cat-card--purple{ border-color: rgba(120,60,200,.35); }
.cat-card--purple:hover { border-color: rgba(160,80,240,.7); box-shadow: 0 0 30px rgba(120,60,200,.2); }
.cat-card--amber { border-color: rgba(201,162,39,.35); }

.cat-card-count {
  font-family: var(--font-heading);
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  margin-top: auto;
  position: relative;
}

/* ── Home: Synopsis ────────────────────────────── */
.synopsis-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .synopsis-grid { grid-template-columns: 1fr; }
  .synopsis-aside { order: -1; }
}

.synopsis-text p {
  color: var(--parchment-dark);
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.synopsis-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.25rem;
}

/* Book card */
.book-card {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-medium));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.book-cover {
  background: linear-gradient(135deg, #1a0e05 0%, #2e1a08 50%, #1a0e05 100%);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--gold-dark);
  position: relative;
  overflow: hidden;
}

.book-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent, transparent 20px,
      rgba(201,162,39,.03) 20px, rgba(201,162,39,.03) 21px
    );
}

.book-cover-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.book-cover-ornament {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: .8;
  letter-spacing: .3rem;
}

.book-cover-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .1em;
  text-shadow: 0 0 20px rgba(201,162,39,.5), 0 2px 4px rgba(0,0,0,.9);
  line-height: 1.3;
  text-align: center;
}

.book-cover-sub {
  font-family: var(--font-heading);
  font-size: .7rem;
  color: var(--parchment-dark);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
}

.book-info {
  padding: .9rem 1rem;
  display: grid;
  gap: 0;
}

.book-info dt {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: .6rem;
  padding-bottom: .1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.book-info dt:first-child { margin-top: 0; }

.book-info dd {
  font-size: .83rem;
  color: var(--parchment-dark);
  margin-top: .2rem;
}

/* ── Home: Quote ───────────────────────────────── */
.home-quote {
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 560px;
  padding: 1.5rem 2rem;
  border-left: none;
  position: relative;
}

.home-quote::before,
.home-quote::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin-bottom: .75rem;
}

.home-quote::after { margin-bottom: 0; margin-top: .75rem; }

.home-quote p {
  font-family: var(--font-flavor);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--parchment-mid);
  margin-bottom: .5rem;
}

.home-quote cite {
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  font-style: normal;
}

/* ── Home: Actus mini ──────────────────────────── */
.actus-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}

.actus-mini-card {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .9rem 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s;
}

.actus-mini-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-light);
  box-shadow: 0 0 15px var(--gold-glow);
}

.actus-mini-tag {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.actus-mini-title {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.4;
}

.actus-mini-date {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: .2rem;
}

/* ── Actus ─────────────────────────────────────── */
.actus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.actus-card {
  padding: 1.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: border-color .2s, box-shadow .2s;
}

.actus-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 20px var(--shadow-dark), 0 0 20px var(--gold-glow);
}

.actus-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.actus-tag {
  font-family: var(--font-heading);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2em .6em;
  border-radius: var(--radius-sm);
  background: rgba(201,162,39,.15);
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}

.actus-tag--encyclopédie, .actus-tag--encyclopedie {
  background: rgba(60,120,200,.15);
  color: #a0c8e0;
  border-color: rgba(60,120,200,.4);
}

.actus-tag--lore {
  background: rgba(120,60,200,.15);
  color: #c8b0e0;
  border-color: rgba(120,60,200,.4);
}

.actus-date {
  font-family: var(--font-heading);
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

.actus-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.actus-title a { color: var(--gold-light); }
.actus-title a:hover { color: var(--gold); }

.actus-excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.actus-lire {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .07em;
  align-self: flex-start;
  margin-top: auto;
  transition: color .15s;
}

.actus-lire:hover { color: var(--gold-light); }

/* ── Post (actus detail + blog detail) ────────── */
.post-article {
  max-width: 760px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: .5rem;
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.post-date {
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.post-author {
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  margin-top: .25rem;
}

/* Prose content */
.prose {
  color: var(--parchment-dark);
  font-size: .97rem;
  line-height: 1.85;
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  margin: 1.75rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin: 1.25rem 0 .5rem;
}

.prose p { margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }

.prose strong { color: var(--parchment); font-weight: 700; }

.prose em {
  font-family: var(--font-flavor);
  font-style: italic;
  color: var(--parchment);
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: .35rem;
  color: var(--parchment-dark);
}

.prose blockquote {
  border-left: 3px solid var(--gold-dark);
  padding: .75rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--bg-panel);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-flavor);
  font-style: italic;
  color: var(--parchment);
}

.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold-light); }

/* Wiki prose (encyclopédie detail) */
.wiki-prose h1 { display: none; } /* title already in article-title */

.wiki-prose h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 1.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.wiki-prose h3 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 1rem 0 .4rem;
}

.wiki-prose p {
  color: var(--parchment-dark);
  font-size: .94rem;
  line-height: 1.8;
  margin-bottom: .9rem;
}

.wiki-prose ul, .wiki-prose ol {
  padding-left: 1.25rem;
  margin-bottom: .9rem;
  list-style: none;
}

.wiki-prose li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: .3rem;
  color: var(--parchment-dark);
  font-size: .92rem;
  line-height: 1.6;
}

.wiki-prose li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: .5rem;
  top: .45em;
}

.wiki-prose strong { color: var(--parchment); }

.wiki-prose em {
  font-family: var(--font-flavor);
  font-style: italic;
}

.wiki-prose hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 1.5rem 0;
}

/* ── Wiki-links ─────────────────────────────────── */

.wiki-prose a,
.prose a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,39,.35);
  text-underline-offset: 3px;
  transition: color .15s, text-decoration-color .15s;
}
.wiki-prose a:hover,
.prose a:hover {
  color: var(--parchment);
  text-decoration-color: var(--gold-light);
}

.wiki-link-missing {
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(160,128,80,.4);
  cursor: help;
}

/* ── Images Obsidian ────────────────────────────── */

.wiki-prose img,
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  display: block;
  margin: 1.25rem auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}

/* ── Callouts Obsidian ──────────────────────────── */

.callout {
  border-left: 3px solid var(--border);
  border-radius: 0 4px 4px 0;
  margin: 1.25rem 0;
  background: rgba(0,0,0,.2);
  overflow: hidden;
}
.callout-title {
  padding: .45rem .9rem;
  font-family: var(--font-heading);
  font-size: .82rem;
  letter-spacing: .06em;
  font-weight: 600;
  background: rgba(255,255,255,.04);
}
.callout-body {
  padding: .6rem .9rem;
  font-size: .9rem;
  color: var(--parchment-dark);
  line-height: 1.7;
}
.callout-body p:last-child { margin-bottom: 0; }

.callout--tip     { border-color: #6a9e7a; }
.callout--tip     .callout-title { color: #6a9e7a; }
.callout--note,
.callout--info    { border-color: var(--gold-light); }
.callout--note    .callout-title,
.callout--info    .callout-title { color: var(--gold-light); }
.callout--warning { border-color: #c49a4a; }
.callout--warning .callout-title { color: #c49a4a; }
.callout--danger  { border-color: #a05252; }
.callout--danger  .callout-title { color: #a05252; }
.callout--important,
.callout--quote,
.callout--summary { border-color: var(--border); }
.callout--important .callout-title,
.callout--quote     .callout-title,
.callout--summary   .callout-title { color: var(--text-muted); }

/* ── Blog ──────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  padding: 1.75rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity .2s;
}

.blog-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 6px 30px var(--shadow-dark), 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.blog-card:hover::before { opacity: 1; }

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.blog-tag {
  font-family: var(--font-heading);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2em .65em;
  border-radius: var(--radius-sm);
  background: rgba(201,162,39,.12);
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}

.blog-date {
  font-family: var(--font-heading);
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gold-light);
}

.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--gold); }

.blog-excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-lire {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .07em;
  align-self: flex-start;
  margin-top: auto;
  transition: color .15s;
}

.blog-lire:hover { color: var(--gold-light); }

/* ── Communauté ────────────────────────────────── */
.communaute-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .communaute-layout { grid-template-columns: 1fr; }
}

.communaute-section {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Form */
.comm-form {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1rem;
}

.comm-form-row { display: flex; gap: .5rem; }

.comm-input {
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: .88rem;
  padding: .55rem .85rem;
  outline: none;
  transition: border-color .2s;
  flex: 1;
}

.comm-input:focus { border-color: var(--gold); }
.comm-input::placeholder { color: var(--text-muted); opacity: .7; }

.comm-textarea {
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: .88rem;
  padding: .65rem .85rem;
  resize: vertical;
  outline: none;
  transition: border-color .2s;
  min-height: 90px;
}

.comm-textarea:focus { border-color: var(--gold); }
.comm-textarea::placeholder { color: var(--text-muted); opacity: .7; }

.comm-submit {
  background: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--parchment);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .6rem 1.25rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  align-self: flex-start;
}

.comm-submit:hover {
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* Cards */
.comm-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: .25rem;
}

.comm-card {
  padding: 1rem 1.1rem;
  background: var(--bg-medium);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.comm-card--theorie {
  border-left: 3px solid rgba(120,60,200,.5);
}

.comm-card-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
}

.comm-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--parchment);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comm-pseudo {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-light);
  flex: 1;
}

.comm-date {
  font-family: var(--font-heading);
  font-size: .68rem;
  color: var(--text-muted);
}

.comm-text {
  font-size: .88rem;
  color: var(--parchment-dark);
  line-height: 1.6;
}

.comm-empty {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-flavor);
  font-size: .9rem;
}

/* ── Recherche ─────────────────────────────────── */
.recherche-form {
  margin-bottom: 1rem;
}

.recherche-input-wrap {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel);
}

.recherche-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem 1rem;
}

.recherche-input::placeholder { color: var(--text-muted); opacity: .7; }

.recherche-btn {
  background: var(--gold-dark);
  border: none;
  color: var(--parchment);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .75rem 1.25rem;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.recherche-btn:hover { background: var(--gold); }

.recherche-suggestions {
  margin-top: .6rem;
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.recherche-suggestions a {
  color: var(--gold-dark);
  text-decoration: none;
  padding: .15em .5em;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all .15s;
}

.recherche-suggestions a:hover {
  color: var(--gold);
  border-color: var(--border-strong);
  background: var(--bg-panel);
}

/* ── Timeline ──────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: .55rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-dark), transparent);
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
  padding: .5rem 0;
  position: relative;
}

.timeline-item::before {
  content: '◆';
  position: absolute;
  left: -1.6rem;
  color: var(--gold-dark);
  font-size: .45rem;
  top: .8rem;
}

.timeline-item--highlight::before { color: var(--gold); font-size: .55rem; }

.timeline-item--now {
  background: rgba(201,162,39,.05);
  border-radius: var(--radius);
  padding-left: .5rem;
  margin-left: -.5rem;
  border-left: 2px solid var(--gold-dark);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  white-space: nowrap;
  min-width: 4.5rem;
}

.timeline-event {
  font-size: .88rem;
  color: var(--parchment-dark);
  line-height: 1.5;
}

.timeline-item--highlight .timeline-event { color: var(--parchment); }

/* ── Newsletter CTA ────────────────────────────── */
.nl-cta {
  position: relative;
  margin: 2rem 0 0;
  padding: 3rem 2rem;
  background:
    linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-medium) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-dark);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.nl-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent, transparent 40px,
      rgba(201,162,39,.02) 40px, rgba(201,162,39,.02) 41px
    );
  pointer-events: none;
}

/* Corner ornaments */
.nl-cta::after {
  content: '✦';
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  color: var(--gold-dark);
  font-size: .8rem;
  opacity: .5;
  pointer-events: none;
}

.nl-cta--compact {
  padding: 2rem 1.75rem;
  border-top-width: 2px;
}

.nl-cta-inner {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.nl-cta-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.nl-cta-rune {
  color: var(--gold-dark);
  font-size: .85rem;
  opacity: .8;
}

.nl-cta-rune--center {
  color: var(--gold);
  font-size: 1.4rem;
  text-shadow: 0 0 10px var(--gold-glow);
}

.nl-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: .7rem;
  text-shadow: 0 0 20px var(--gold-glow);
}

.nl-cta--compact .nl-cta-title {
  font-size: 1.2rem;
}

.nl-cta-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.nl-cta--compact .nl-cta-text {
  font-size: .88rem;
  margin-bottom: 1.1rem;
}

.nl-cta-alert {
  margin-bottom: 1rem;
  padding: .6rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.nl-cta-alert--success {
  background: rgba(45,106,45,.25);
  color: #7acc7a;
  border: 1px solid rgba(90,172,90,.3);
}

.nl-cta-alert--error {
  background: rgba(106,26,26,.25);
  color: #d44a4a;
  border: 1px solid rgba(212,74,74,.3);
}

.nl-cta-alert--info {
  background: rgba(26,58,90,.25);
  color: #5aaad4;
  border: 1px solid rgba(90,170,212,.3);
}

.nl-cta-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.nl-cta-field {
  display: flex;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-darkest);
  transition: border-color .2s, box-shadow .2s;
}

.nl-cta-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.nl-cta-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  min-width: 0;
}

.nl-cta-input::placeholder {
  color: var(--text-muted);
  opacity: .65;
}

.nl-cta-btn {
  background: var(--gold-dark);
  border: none;
  color: var(--parchment);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .75rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nl-cta-btn:hover {
  background: var(--gold);
  box-shadow: -4px 0 15px rgba(201,162,39,.2);
}

.nl-cta-btn-arrow {
  transition: transform .2s;
  font-size: .9rem;
}

.nl-cta-btn:hover .nl-cta-btn-arrow {
  transform: translateX(3px);
}

.nl-cta-legal {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .07em;
  color: var(--text-muted);
  opacity: .7;
}

/* ── Admin newsletter grid ─────────────────────── */
.nl-admin-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 1000px) {
  .nl-admin-grid { grid-template-columns: 1fr; }
}

/* ── Featured card variant ─────────────────────── */
.featured-card--more {
  border-style: dashed;
  opacity: .8;
}

.featured-card--more:hover { opacity: 1; }
