﻿/* === Úvodní CTA rámeček === */


.pk-callout{
  width:100%;
  margin:60px 0 40px;
  position:relative;
  box-sizing:border-box;
}

/* horní kolečko s ikonou */
.pk-callout__badge{
  position:absolute;
  top:-30px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:60px;

  background:#ffffff;
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;
  color:#333333;

  border:0;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
}

/* hlavní box (ostré rohy + jemná vnitřní linka) */
.pk-callout__box{
  background:#F8F9FA;
  border:0;
  border-radius:0;
  padding:42px 28px 22px;
  text-align:center;
  box-shadow:0 0 0 1px rgba(0,0,0,.06) inset;
  box-sizing:border-box;
}

/* Nadpis (H3) – vynuceně podle webu */
.pk-callout__title{
  margin:0 0 14px;
  color:inherit;

  font-family:Poppins, sans-serif;
  font-size:22px;
  line-height:1.25;     /* evergreen, vizuálně sedí k 22px */
  font-weight:700;      /* bezpečný standard pro H3; když řeknete, upravím */
}

/* texty – běžný webový font, jen spacing */
.pk-callout__p{
  margin:0;
  color:inherit;
  line-height:1.6;
}

.pk-callout__p + .pk-callout__p{
  margin-top:12px;
}

/* CTA wrapper – tlačítko uprostřed */
.pk-callout__cta{
  margin-top:18px;
  display:flex;
  justify-content:center;
}

/* CTA button – vyšší jako původně + tučný text */
.pk-cta{
  background:#edde00;
  color:#111;

  display:inline-flex;
  align-items:center;
  gap:12px;

  padding:24px 26px;        /* vyšší */
  border-radius:999px;

  text-decoration:none;

  font:inherit;
  font-weight:700;          /* tučný text v tlačítku */
  line-height:1;

  border:0;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  white-space:nowrap;

  transition:transform .15s ease, box-shadow .15s ease;
}

.pk-cta__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
}

.pk-cta__text{
  font:inherit;
  font-weight:inherit;
  line-height:inherit;
}

.pk-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,.10);
}

.pk-cta:active{
  transform:translateY(0);
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.pk-cta:focus-visible{
  outline:3px solid rgba(17,17,17,.22);
  outline-offset:3px;
}

/* text pod tlačítkem – mnohem menší */
.pk-callout__note{
  margin:10px 0 0;
  font-size:10px;          /* výrazně menší */
  line-height:1.25;
  color:rgba(17,17,17,.60);
}

/* mobil */
@media (max-width:560px){
  .pk-callout{
    margin:52px 0 28px;
  }

  .pk-callout__box{
    padding:40px 18px 18px;
  }

  .pk-callout__badge{
    width:54px;
    height:54px;
    top:-27px;
    font-size:26px;
  }

  .pk-callout__title{
    font-size:20px;       /* jemné zmenšení na mobilu */
  }
}

@media (max-width:520px){
  .pk-cta{
    padding:22px 20px;
    gap:10px;
    white-space:normal;
    text-align:center;
  }
}
