﻿/* === Průvodce krok za krokem === */


.step-guide,
.step-guide *{
  box-sizing:border-box;
}


/* Reset jen toho, co Shoptet často rozhází v blogu */
.step-guide ol,
.step-guide ul{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}


.step-guide li{
  margin:0 !important;
  list-style:none !important;
  /* POZOR: žádné padding:0 na li – to by zabilo "ochrannou zónu" u .step */
}


.step-guide p{
  margin:0 !important;
}


/* Karta */
.step-guide__card{
  background:#ffffff;
  border:1px solid #c8dbec;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(15,64,93,.05);
  width:100%;
}


/* Hlavička */
.step-guide__head{
  padding:14px 18px !important;
  background:#f3f8fd;
  border-bottom:1px solid #b9cfe3;
}


/* Hlavní nadpis: bere font/velikost/barvu ze šablony,
   ale na blogu ho vynutíme jako tučný */
.step-guide__title{
  margin:0 !important;
  padding:0 !important;
  font-weight:700 !important; /* fix: blog někdy dává h2 normal */
}


.step-guide__subtitle{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.45;
  color:#5f758b;
}


/* Seznam kroků */
.step-guide__list{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}


/* Krok */
.step-guide__list > .step{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  padding:16px 18px !important; /* ochranná zóna */
  border-bottom:1px solid #eef3f8;
  position:relative;
  background:#ffffff;
}


.step-guide__list > .step:last-child{
  border-bottom:0;
}


/* Číslo + linka */
.step__index{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}


.step__badge{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#ecf6fd;
  border:1px solid #d9ecfb;
  color:#0f405d;
  font-weight:700;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
}


/* Svislá spojnice */
.step__index:after{
  content:"";
  position:absolute;
  top:34px;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:calc(100% - 34px);
  background:#eef3f8;
}


.step-guide__list > .step:last-child .step__index:after{
  display:none;
}


/* Obsah kroku */
.step__topline{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}


.step__heading{
  margin:0 !important;
  font-size:14px;
  line-height:1.35;
  font-weight:700; /* aby to vypadalo jako na obrázku */
  color:#0f405d;
}


.step__tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#ecf6fd;
  color:#0f405d;
  font-size:12px;
  line-height:1.2;
  border:1px solid #d9ecfb;
  white-space:nowrap;
  text-decoration:none;
}


.step__text{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.5;
  color:#0f405d;
}


/* Hover */
.step-guide__list > .step:hover{
  background:#f9fcff;
}


/* Volitelně “hotovo” */
.step-guide__list > .step.is-done .step__badge{
  background:#f3f8fd;
  border-color:#b9cfe3;
}


/* Mobil */
@media (max-width:640px){
  .step-guide__head{
    padding:12px 14px !important;
  }
  .step-guide__list > .step{
    padding:14px 14px !important;
    grid-template-columns:32px 1fr;
    gap:10px;
  }
}