/* === Shared Divider ===
   Amber bar pair used as section separator in chapter dividers and content slides.
*/
.chapter-divider__divider {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 0.25rem 0 0.5rem;
}

.chapter-divider__divider-bar {
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

.chapter-divider__divider-bar:first-child {
  width: 48px;
}

.chapter-divider__divider-bar:last-child {
  width: 24px;
  opacity: 0.5;
}

/* Adjacency spacing for content slides */
.slide__title + .chapter-divider__divider {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.slide__eyebrow + .chapter-divider__divider {
  margin-top: 0.15rem;
  margin-bottom: 0.75rem;
}
