﻿/* Jednoduché barevné odrážky */


.pk-bullets--dot{
  --bullet-color:#b8af9f;


  list-style:none;
  margin:0 0 12px;
  padding:0 0 0 28px;
  font-size:16px;
  line-height:1.8;
  color:inherit;
}


.pk-bullets--dot li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin:0 0 12px;


  font-size:inherit;
  line-height:inherit;
  color:inherit;


  min-width:0;
}


.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;
}


.pk-bullets--dot .pk-bullets__text{
  flex:1;
  min-width:0;
  overflow-wrap:anywhere;
}


.pk-bullets--dot strong{
  font-size:inherit;
  line-height:inherit;
  font-weight:800;
  color:inherit;
}