﻿/* Jednoduché odrážky */

.pk-split__content .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; /* pojistka – barva jako okolní text */
}

.pk-split__content .pk-bullets--dot li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin:0 0 12px;

  font-size:inherit;
  line-height:inherit;
  color:inherit; /* KLÍČ: stejná barva jako text v bloku */
}

.pk-split__content .pk-bullets--dot li:last-child{ margin-bottom:0; }

.pk-split__content .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;
}
