/* Texto del estado: fino, sin transformaciones ni bold heredados */
#HORARIOS #estadoLocal.status{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif ;
  font-weight: 400 ;
  letter-spacing: .1px;                  /* sutil claridad */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none ;          /* sin relieve */
}

/* Fuerza el punto a existir (por si algo hace content:none) */
#HORARIOS #estadoLocal.status::before{
  content: "" ;
  display: inline-block;
  width: .72rem; height: .72rem; border-radius: 50%;
  vertical-align: -.12em;
  margin-right: .45rem;
  /* brillo usando el color del texto */
  background: radial-gradient(circle at 30% 30%, #fff 12%, currentColor 88%);   
  box-shadow:
    0 0 0 .12rem color-mix(in oklch, currentColor 25%, transparent),
    0 0 .55rem .05rem color-mix(in oklch, currentColor 45%, transparent);
}

/* Variantes: forzamos el color (si Pigga lo pisa) */
#HORARIOS #estadoLocal.status--open{
  color: oklch(0.78 0.17 145); /* verde vivo */
  color: #22a05a ;              /* fallback sRGB */
}
#HORARIOS #estadoLocal.status--closed{
  color: oklch(0.70 0.18 25) ;  /* rojo vivo */
  color: #d9363e ;              /* fallback sRGB */
}
