/* Stafflancer Blog Control - A11Y: slider dot tap targets + consistent visuals
   - Tap target: 32x32 (meets WCAG practical + Lighthouse usually passes)
   - Visual dot: 12px
   - Active visual dot: 30px (per Stafflancer standard)
*/
@media (max-width: 1024px){
  button.slc-latest-posts__dot{
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent !important;
    box-sizing: border-box;
    touch-action: manipulation;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* keep any existing background rules from inline CSS from affecting size */
  button.slc-latest-posts__dot.is-active{
    background: transparent !important;
  }

  button.slc-latest-posts__dot::before{
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    display: block;
  }

  html.sl-theme-dark button.slc-latest-posts__dot::before{
    background: rgba(255,255,255,.32);
  }

  button.slc-latest-posts__dot.is-active::before{
    width: 30px;
    height: 30px;
    background: var(--sl-primary,var(--slc-primary,#5209E5));
  }
}
