/* ══════════════════════════════════════════════════════════════════════════════
   SECTION — PROCHAIN ROMAN : Là où les Corbeaux se Taisent
   ══════════════════════════════════════════════════════════════════════════════ */

.section-prochain-roman {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 4, 28, 1) 30%, rgba(10, 4, 28, 1) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 200, 122, 0.15);
}

.section-prochain-roman::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(232, 200, 122, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.roman-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.roman-header {
  text-align: center;
  margin-bottom: 60px;
}

.roman-sous-titre {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
}

.roman-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.roman-visuel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.roman-corbeaux-symbole {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.corbeau-img {
  width: 110px;
  height: auto;
  /* fond supprimé directement dans le PNG — aucun filtre nécessaire */
}

.corbeau-img-miroir {
  transform: scaleX(-1);
}

.corbeau-gauche {
  display: inline-block;
  animation: vol-gauche 6s ease-in-out infinite;
}

.corbeau-droit {
  display: inline-block;
  animation: vol-droit 6s ease-in-out infinite;
}

@keyframes vol-gauche {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes vol-droit {
  0%, 100% { transform: translateY(-10px); }
  50%       { transform: translateY(0px); }
}

.roman-lieux {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 200, 122, 0.6);
}

.roman-lieux-sep {
  color: rgba(255, 255, 255, 0.2);
}

.roman-badge {
  display: inline-block;
  margin-top: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(232, 200, 122, 0.3);
  border-radius: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 200, 122, 0.7);
  background: rgba(232, 200, 122, 0.04);
}

@media (max-width: 768px) {
  .roman-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .roman-header {
    margin-bottom: 40px;
  }
}
