﻿/* === Light banner === */


.pk-banner-lite{
  background: transparent; /* nebo #fff, pokud chcete bílé */
  width:100%;
  padding:28px 18px;
  box-sizing:border-box;
}

.pk-banner-lite__title{
  margin:0;
  text-align:center;

  /* H2 jako na webu */
  font-family:Poppins, sans-serif;
  font-size:40px;
  line-height:1.15;
  font-weight:700;

  color:#111;
}


/* zvýraznění: žluté "podtržení" */
.pk-hl{
  font-weight:700;      
  padding:0 .10em;

  background-image:linear-gradient(
    to top,
    rgba(237,222,0,.65) 0,
    rgba(237,222,0,.65) 0.52em,
    transparent 0.52em
  );
  background-repeat:repeat-x;
  border-radius:2px;

  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
}

/* mobil */
@media (max-width: 560px){
  .pk-banner-lite{
    padding:22px 14px;
  }
  .pk-banner-lite__title{
    font-size:28px;
    line-height:1.2;
  }
}
