﻿/* === Číselný seznam === */


ol.pk-steps{
  --pk:#239ceb;


  /* desktop */
  --num-pad-top-1d: 3px;  /* 1–9 */
  --num-pad-top-2d: 2px;  /* 10+ */


  counter-reset:i;
  list-style:none;
  padding:0;
  margin:16px 0;
}


ol.pk-steps>li{
  counter-increment:i;
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:10px 0;
  line-height:1.6;
}


ol.pk-steps>li::before{
  content:counter(i);
  width:26px;
  height:26px;
  border-radius:999px;
  background:var(--pk);
  color:#fff;


  flex:0 0 26px;


  display:flex;
  align-items:center;
  justify-content:center;


  box-sizing:border-box;
  padding-top:var(--num-pad-top-1d);


  font-weight:700;
  font-size:13px;
  line-height:1;
  text-align:center;


  font-variant-numeric:tabular-nums;
  font-feature-settings:"tnum" 1;
}


ol.pk-steps>li:nth-child(n+10)::before{
  padding-top:var(--num-pad-top-2d);
}


/* pouze mobil */
@media (max-width: 767px){
  ol.pk-steps{
    --num-pad-top-1d: 1px;  /* 1–9 */
    --num-pad-top-2d: 0px;  /* 10+ */
  }
}