﻿/* Jednoduché barevné odrážky */


.pk-bullets--dot{
  --bullet-color:#b8af9f;


  list-style:none !important;
  margin:0 0 12px;
  padding:0 0 0 28px;


  font-family:inherit !important;  /* nedovolí změnu fontu */
  font-size:inherit;
  line-height:1.8;
  color:inherit;
}


.pk-bullets--dot > li{
  display:flex !important;          /* vynutí flex i když to šablona přepíše */
  align-items:flex-start !important;
  gap:14px;


  margin:0 0 12px;
  padding:0;


  font-family:inherit !important;   /* pojistka i na položkách */
  font-size:inherit !important;
  line-height:inherit !important;
  color:inherit;


  min-width:0;                      /* správné zalamování ve flexu */
}


.pk-bullets--dot > li:last-child{ margin-bottom:0; }


.pk-bullets--dot > li::before{
  content:"";
  width:6px;
  height:6px;
  background:var(--bullet-color);
  border-radius:0;
  flex:0 0 6px;
  margin-top:0.55em;
}


/* textový wrapper – fix na rozpad při <strong> */
.pk-bullets--dot > li > .pk-bullets__text{
  flex:1;
  min-width:0;
  overflow-wrap:anywhere;
}


/* strong nesmí měnit velikost/řádkování ani display */
.pk-bullets--dot strong{
  display:inline;
  font-family:inherit;
  font-size:inherit;
  line-height:inherit;
  font-weight:800;
  color:inherit;
}