﻿/* === Číselný seznam === */


ol.pk-steps-guide{
  counter-reset:i;
  list-style:none !important;
  padding-left:0 !important;
  margin:16px 0;

  font-family:"Poppins",sans-serif;
  font-size:17px;
  color:#111;
}

ol.pk-steps-guide > li{
  counter-increment:i;

  display:flex !important;
  align-items:center !important;
  gap:12px;

  margin:0 0 10px;
  line-height:1.6;

  list-style:none !important;
}

/* schová defaultní čísla (marker) i když by je něco nutilo */
ol.pk-steps-guide > li::marker{
  content:"";
}

ol.pk-steps-guide > li::before{
  content:counter(i) !important;

  width:26px;
  height:26px;
  border-radius:999px;

  background:#222222;
  color:#ffffff;

  flex:0 0 26px;
  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:500;   /* tenčí číslo */
  font-size:13px;
  line-height:1;

  font-variant-numeric:tabular-nums;
  font-feature-settings:"tnum" 1;
}

/* optická korekce pro 10+ */
ol.pk-steps-guide > li:nth-child(n+10)::before{
  padding-left:1px;
  box-sizing:border-box;
}
