﻿/* Box s fajfkami */
.bullets-box{padding:16px 18px;margin:18px 0;background:#fbfdff;border:1px solid #e6f2f8;border-left:4px solid #1aa3d9;border-radius:14px}


/* ZÁKLAD seznam (default = 1 sloupec) */
.bullets-box ul{list-style:none;margin:0;padding:0}
.bullets-box li{position:relative;padding-left:34px;line-height:1.6;margin:10px 0}


/* Kolečko – zarovnání na střed textu (1. řádku) */
.bullets-box li:before{
  content:"";
  position:absolute;
  left:0;
  top:0.8em;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  background:#e6f6ff;
  border:1px solid #9fd6f0;
}


/* Fajfka – také na stejný vertikální střed */
.bullets-box li:after{
  content:"";
  position:absolute;
  left:7px;
  top:0.8em;
  transform:translateY(-60%) rotate(-45deg);
  width:9px;
  height:5px;
  border-left:3px solid #1aa3d9;
  border-bottom:3px solid #1aa3d9;
}


/* MODIFIKÁTOR: 2 sloupce */
.bullets-box.is-2cols ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:28px;row-gap:10px}
.bullets-box.is-2cols li{margin:0}
.bullets-box.is-2cols li:nth-child(even)::after{
  left:6px; 
}

@media(max-width:640px){.bullets-box.is-2cols ul{grid-template-columns:1fr}}