/* Show a subtle dashed guide in edit mode so authors can see the spacer. */
body.cms-edit .block-eada-spacer {
  outline: 1px dashed rgba(217,58,90,0.35);
  outline-offset: -4px;
  position: relative;
}
body.cms-edit .block-eada-spacer::before {
  content: 'SPACER';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(217,58,90,0.5);
  pointer-events: none;
}
@media (max-width: 900px) {
  .block-eada-spacer { height: max(32px, calc(var(--sp, 80px) * 0.6)) !important; }
}
