/* ====== SECTION DOT (springs between Frameworks & Narrative Frames) ====== */

.section-dot {
  position: absolute;
  /* Sit just left of heading text: card-left + card-padding - dot - gap */
  left: calc(var(--site-gutter) + clamp(2rem, 3.5vw, 3.2rem) - clamp(1.4rem, 1.8vw, 1.8rem) - 0.6rem);
  width: clamp(1.4rem, 1.8vw, 1.8rem);
  height: clamp(1.4rem, 1.8vw, 1.8rem);
  border-radius: 50%;
  background: var(--color-yellow);
  z-index: 11;
  pointer-events: none;
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (max-width: 768px) {
  .section-dot {
    display: none;
  }
}
