﻿/* Jednoduché odrážky */


.pk-bullets--dot{
  --bullet-color:#9e8644;      /* brand akcent */
  list-style:none;
  margin:0;
  padding:0;
}


.pk-bullets--dot li{
  position:relative;
  padding-left:16px;
  margin:8px 0;
  line-height:1.45;


  font-family: Helvetica, Arial, sans-serif; /* stejné jako web */
  font-size: inherit;         /* KLÍČ: nefixovat, dědit z webu */
  color:#000000;
}


.pk-bullets--dot li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.72em;
  width:6px;
  height:6px;
  border-radius:0;            /* ostré rohy */
  background:var(--bullet-color);
  transform:translateY(-50%);
}