/* ===== ZÚŽENÍ A SJEDNOCENÍ TEXTU – blog, stránky, kategorie ===== */

/* --- BLOG --- */
.news-item-detail .text {
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.news-item-detail .text span[style*="pt"] {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.news-item-detail .text p {
  line-height: 1.7;
}

/* --- STRÁNKA (CMS) --- */
.pageArticleDetail [itemprop="about"] {
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.pageArticleDetail [itemprop="about"] span[style*="pt"] {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.pageArticleDetail [itemprop="about"] p {
  line-height: 1.7;
}

/* --- KATEGORIE: spodní popisek --- */
.category__secondDescription {
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.category__secondDescription span[style*="pt"] {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.category__secondDescription p,
.category__secondDescription li {
  line-height: 1.7;
}

/* === FAQ === */
.kg-faq {
  box-sizing: border-box;
  width: 100%;
  font-family: inherit;
}
.kg-faq *,
.kg-faq *::before,
.kg-faq *::after { box-sizing: border-box; }
.kg-faq__title {
  margin: 0 0 1.5rem !important;
  font-family: inherit;
  font-size: 30px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
}
.kg-faq__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.kg-faq__item {
  border-bottom: 1px solid #ECE0E1; /* sjednoceno: rámeček/linka */
}
/* Trigger – řádek s otázkou */
.kg-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 18px 4px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}
.kg-faq__trigger:focus-visible {
  outline: 2px solid rgba(181,125,132,.35); /* sjednoceno: focus ring */
  outline-offset: 2px;
  border-radius: 2px;
}
.kg-faq__question {
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.45;
  color: #000000;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}
.kg-faq__trigger:hover .kg-faq__question { color: #3a3936; }
/* +/- ikona */
.kg-faq__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.kg-faq__icon::before,
.kg-faq__icon::after {
  content: "";
  position: absolute;
  background: #B57D84;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.kg-faq__icon::before { /* vodorovná čára */
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.kg-faq__icon::after { /* svislá čára */
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.kg-faq__item.is-open .kg-faq__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
/* Odpověď – plynulé rozbalení bez max-height */
.kg-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.kg-faq__item.is-open .kg-faq__answer {
  grid-template-rows: 1fr;
}
.kg-faq__answer-inner {
  overflow: hidden;
}
/* zdvojená třída .kg-faq.kg-faq přebije specificitu šablony Shoptetu */
.kg-faq.kg-faq .kg-faq__answer-inner p {
  margin: 0 !important;
  padding: 0 4px 22px !important;
  padding-left: 4px !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.7;
  color: inherit;
  overflow-wrap: anywhere;
}
/* Mobil */
@media (max-width: 640px) {
  .kg-faq__title { font-size: 24px; }
  .kg-faq__trigger { padding: 15px 0; gap: 12px; }
  .kg-faq.kg-faq .kg-faq__answer-inner p {
    padding: 0 0 18px !important;
    padding-left: 0 !important;
  }
}
/* === TABULKA === */

.kg-table-wrap {
  box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}
.kg-table {
  box-sizing: border-box;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #ECE0E1; /* sjednoceno: rámeček */
  border-radius: 14px;       /* sjednoceno: box radius */
  overflow: hidden;
}
.kg-table th,
.kg-table td {
  box-sizing: border-box;
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
  overflow-wrap: normal;   /* bylo "anywhere" – TO lámalo slova v půlce */
  word-break: normal;      /* slova se nedělí uprostřed */
  hyphens: none;           /* žádné dělení pomlčkou */
  white-space: normal;     /* věty se klidně zalomí u mezer */
}
.kg-table th {
  font-family: inherit;
  font-weight: 700;
  color: #7F484F;        /* sjednoceno: tmavší mauve */
  background: #EED3D7;   /* brand hlavička – ponecháno záměrně */
}
.kg-table td {
  padding: 15px 18px;
}
.kg-table tbody tr {
  transition: background-color 0.2s ease;
}
.kg-table tbody tr:nth-child(even) {
  background: #fdf7f8;
}
.kg-table tbody tr:hover {
  background: #f9eef0;
}
@media (max-width: 640px) {
  .kg-table th,
  .kg-table td { padding: 12px 14px; }
}


/* ===== CITACE EXPERTA / ODBORNÍKA ===== */
.kg-quote {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 2.5rem auto;
  font-family: inherit;
}
.kg-quote *,
.kg-quote *::before { box-sizing: border-box; }
.kg-quote__text {
  margin: 0 0 18px !important;
  font-family: inherit;
  font-style: italic;
  font-weight: 400;       /* sjednoceno se statistikou */
  font-size: 16px;        /* sjednoceno se statistikou */
  line-height: 1.6;
  color: #3a3936;
  letter-spacing: 0.005em;
}
.kg-quote__name {
  display: block;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;        /* vedlejší úroveň (popisek) */
  color: #3a3936;
}
.kg-quote__role {
  display: block;
  font-size: 14px;        /* vedlejší úroveň (popisek) */
  color: #a39b99; /* neutrální muted – ponecháno (role autora) */
  margin-top: 5px;
}
/* ---- Varianta: centrovaná ---- */
.kg-quote--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 1rem 0.5rem 0;
}
.kg-quote--center::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #B57D84;
  margin: 0 auto 30px;
}
/* ---- Varianta: vlevo s uvozovkou (bez fotky) ---- */
/* NENÍ flex – uvozovka je absolutní, obsah jen odsazený zleva,
   takže text i autor vždy stojí pod sebou (autor pod citací). */
.kg-quote--side {
  position: relative;
  display: block;
  padding-left: 92px;
}
.kg-quote--side .kg-quote__mark {
  position: absolute;
  left: 0;
  top: 0;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.8;
  color: #EED3D7;
}
.kg-quote--side .kg-quote__body { display: block; }
.kg-quote--side figcaption { display: block; margin-top: 2px; }
/* ---- Mobil ---- */
@media (max-width: 640px) {
  .kg-quote__text { font-size: 15px; }   /* sjednoceno se statistikou (mobil) */
  .kg-quote--side { padding-left: 62px; }
  .kg-quote--side .kg-quote__mark { font-size: 48px; }
}

/* =====STATISTIKA SE ZDROJEM ===== */

.kg-finding-c{
  box-sizing:border-box; width:100%;
  background:#FBF9F9; border:1px solid #ECE0E1;
  border-radius:14px; padding:24px 26px; margin:24px 0 !important;
  font-family:inherit;
}
.kg-finding-c *{box-sizing:border-box; font-family:inherit;}

.kg-finding-c__label{
  display:inline-flex; align-items:center; gap:8px;
  margin:0 0 12px; font-size:12px; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; color:#B57D84;
}
.kg-finding-c__label::before{
  content:""; width:22px; height:2px; background:#B57D84; border-radius:2px;
}

.kg-finding-c__text{
  margin:0 0 16px !important; font-size:16px; line-height:1.6;
  color:#3a3936; overflow-wrap:anywhere;
}

.kg-finding-c__src{
  margin:0 !important; padding-top:14px; border-top:1px solid #EFE6E7;
  font-size:14px; color:#7E5D62; line-height:1.5;
}
.kg-finding-c__link{
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-finding-c__link:hover{color:#3a3936;}
.kg-finding-c__link:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}

@media(max-width:640px){
  .kg-finding-c{padding:20px 18px;}
  .kg-finding-c__text{font-size:15px;}
}

/* =====NÁVOD KROK ZA KROKEM ===== */

.kg-steps{
  box-sizing:border-box; width:100%; margin:24px 0 !important;
  font-family:inherit;
}
.kg-steps *{box-sizing:border-box; font-family:inherit;}
.kg-steps__step{
  position:relative; display:flex; gap:18px; padding-bottom:26px;
}
.kg-steps__step:last-child{padding-bottom:0;}
.kg-steps__step:not(:last-child)::before{
  content:""; position:absolute; left:17px; top:38px; bottom:0;
  width:2px; background:#ECE0E1; /* sjednoceno: linka */
}
.kg-steps__num{
  position:relative; z-index:1; flex:0 0 auto;
  width:36px; height:36px; border-radius:50%;
  background:#B57D84; color:#ffffff;
  font-size:16px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.kg-steps__body{padding-top:5px; min-width:0;}
.kg-steps__title{
  margin:0 0 5px !important; font-size:16px; font-weight:600;
  color:#7F484F; line-height:1.4;
}
.kg-steps__desc{
  margin:0 !important; font-size:inherit; line-height:1.6;
  color:#3a3936; overflow-wrap:anywhere;
}
.kg-steps__desc strong{
  display:inline; font-family:inherit; font-size:inherit;
  line-height:inherit; font-weight:700; color:#7F484F;
}
.kg-steps__desc a,
.kg-steps__link{
  font-family:inherit; font-size:inherit; line-height:inherit;
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-steps__desc a:hover,
.kg-steps__link:hover{color:#3a3936;}
.kg-steps__desc a:focus-visible,
.kg-steps__link:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}
@media(max-width:640px){
  .kg-steps__step{gap:14px; padding-bottom:22px;}
  .kg-steps__num{width:32px; height:32px; font-size:15px;}
  .kg-steps__step:not(:last-child)::before{left:15px; top:34px;}
  .kg-steps__desc{font-size:14px;}
}


/* =====PRŮVODCE VÝBĚREM ===== */
.kg-guide{
  box-sizing:border-box; width:100%; margin:0 !important;
  border-radius:14px; overflow:hidden; font-family:inherit;
}
.kg-guide *{box-sizing:border-box; font-family:inherit;}
.kg-guide__summary{
  list-style:none; cursor:pointer; display:flex; align-items:center; gap:16px;
  padding:22px 28px; background:#7F484F; /* tmavá brand hlavička – ponecháno */
}
.kg-guide__summary::-webkit-details-marker{display:none;}
.kg-guide__summary:hover .kg-guide__title{color:#ffffff;}
.kg-guide__summary:focus-visible{outline:2px solid rgba(255,255,255,.5); outline-offset:-3px;}
.kg-guide__head{flex:1; min-width:0;}
.kg-guide__title{display:block; font-size:18px; font-weight:700; color:#FBF1F2; line-height:1.3; transition:color .18s ease;}
.kg-guide__sub{display:block; font-size:13px; color:#E0B9BF; margin-top:3px; overflow-wrap:anywhere;}
.kg-guide__chev{flex:0 0 auto; color:#E0B9BF; transition:transform .2s ease,color .18s ease;}
.kg-guide__summary:hover .kg-guide__chev{color:#ffffff;}
.kg-guide[open] .kg-guide__chev{transform:rotate(180deg);}
.kg-guide__inner{
  background:#ffffff; padding:22px 28px 26px;
  border:1px solid #ECE0E1; border-top:none; border-radius:0 0 14px 14px; /* sjednoceno: rámeček */
}
.kg-guide__intro{margin:0 0 6px !important; font-size:16px; line-height:1.7; color:#7F484F; max-width:66ch;}
.kg-guide__row{padding:22px 0; border-top:1px solid #EFE6E7;} /* sjednoceno: jemná vnitřní linka */
.kg-guide__row:first-of-type{border-top:none; padding-top:14px;}
.kg-guide__row-title{
  display:inline-block; font-size:16px; font-weight:600; color:#7F484F;
  text-decoration:none; line-height:1.4; transition:color .18s ease;
}
.kg-guide__row-title::after{content:" →"; opacity:0; transition:opacity .18s ease;}
.kg-guide__row-title:hover{color:#3a3936;}
.kg-guide__row-title:hover::after{opacity:1;}
.kg-guide__row-title:focus-visible{outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;}
.kg-guide__row-text{margin:7px 0 0 !important; font-size:16px; line-height:1.7; color:#3a3936; max-width:60ch; overflow-wrap:anywhere;}
.kg-guide__row-ingr{margin:11px 0 0 !important; font-size:14px; line-height:1.6; color:#7E5D62; overflow-wrap:anywhere;}
.kg-guide__row-ingr a{
  font-family:inherit; font-size:inherit; line-height:inherit;
  color:#7F484F; text-decoration:none; border-bottom:1px solid #E3C0C4; padding-bottom:1px;
  transition:color .15s ease,border-color .15s ease;
}
.kg-guide__row-ingr a:hover{color:#3a3936; border-color:#3a3936;}
.kg-guide__row-ingr a:focus-visible{outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;}
.kg-guide__tip{margin-top:24px; background:#F8F1F2; border-radius:8px; padding:17px 20px;} /* sjednoceno: drobný prvek 8px */
.kg-guide__tip-text{margin:0 !important; font-size:14px; line-height:1.7; color:#3a3936; max-width:72ch; overflow-wrap:anywhere;}
.kg-guide__tip-label{display:inline; font-family:inherit; font-size:inherit; line-height:inherit; font-weight:700; color:#7F484F;}
.kg-guide__tip-text a{font-family:inherit; font-size:inherit; line-height:inherit; color:#7F484F; text-decoration:underline; text-underline-offset:2px; transition:color .18s ease;}
.kg-guide__tip-text a:hover{color:#3a3936;}
.kg-guide__tip-text a:focus-visible{outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;}
@media(max-width:640px){
  .kg-guide__summary{padding:18px 20px;}
  .kg-guide__inner{padding:18px 20px 22px;}
  .kg-guide__title{font-size:18px;}
  .kg-guide__row{padding:18px 0;}
}

/* ===== FIX: editor přidává prázdné odstavce kolem komponenty ===== */
.kg-guide-wrap{ box-sizing:border-box; width:100%; margin:24px 0; }

/* odstavce bez třídy = vložené editorem → srazit na nulu */
.kg-guide-wrap > p:not([class]),
.kg-guide-wrap p:empty{
  margin:0 !important;
  padding:0 !important;
  height:0 !important;
  min-height:0 !important;
  line-height:0 !important;
  font-size:0 !important;
}

/* =====TRUST SEKCE ===== */
.kg-trust{
  box-sizing:border-box;width:100%;
  background:#EEECEA;border-radius:14px; /* béžová plocha – ponecháno záměrně */
  padding:32px 36px;
  font-family:inherit;
}
.kg-trust *{box-sizing:border-box;}

.kg-trust__intro{max-width:820px;margin:0 0 22px;}
.kg-trust__intro p{
  margin:0 !important;font-family:inherit;font-size:16px;line-height:1.7;color:#5a5350;
}
.kg-trust__brand{color:#B57D84;font-weight:600;}

.kg-trust__strip{
  display:flex;flex-wrap:wrap;gap:16px;
  border-top:1px solid #dcd2d3;padding-top:22px; /* tmavší linka kvůli čitelnosti na béžové */
}
.kg-trust__item{
  flex:1 1 0;min-width:120px;
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;
  padding:0 8px;position:relative;
}
.kg-trust__item::after{
  content:"";position:absolute;right:-8px;top:50%;transform:translateY(-50%);
  width:1px;height:42px;background:#dcd2d3; /* tmavší linka kvůli čitelnosti na béžové */
}
.kg-trust__item:last-child::after{display:none;}

.kg-trust__txt{
  font-family:inherit;font-size:12px;line-height:1.3;font-weight:500;color:#3a3936;
}

/* === CSS ikony (mask-image, barví se přes background) === */
.kg-trust__ic{
  flex:0 0 auto;width:28px;height:28px;background:#B57D84;
  -webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
}
.kg-trust__ic--star{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%203.6l2.5%205.2%205.7.8-4.1%204%201%205.7L12%2016.6%206.9%2019.3l1-5.7-4.1-4%205.7-.8z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%203.6l2.5%205.2%205.7.8-4.1%204%201%205.7L12%2016.6%206.9%2019.3l1-5.7-4.1-4%205.7-.8z'/%3E%3C/svg%3E");
}
.kg-trust__ic--chat{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4.5%205h15v10.5h-9.5L5.5%2019v-3.5h-1z'/%3E%3Cpath%20d='M8%209h8'/%3E%3Cpath%20d='M8%2012h5'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4.5%205h15v10.5h-9.5L5.5%2019v-3.5h-1z'/%3E%3Cpath%20d='M8%209h8'/%3E%3Cpath%20d='M8%2012h5'/%3E%3C/svg%3E");
}
.kg-trust__ic--truck{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%206.5h11V16H3z'/%3E%3Cpath%20d='M14%209.5h3.5L21%2013v3h-7z'/%3E%3Ccircle%20cx='7'%20cy='17.5'%20r='1.6'/%3E%3Ccircle%20cx='17.5'%20cy='17.5'%20r='1.6'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%206.5h11V16H3z'/%3E%3Cpath%20d='M14%209.5h3.5L21%2013v3h-7z'/%3E%3Ccircle%20cx='7'%20cy='17.5'%20r='1.6'/%3E%3Ccircle%20cx='17.5'%20cy='17.5'%20r='1.6'/%3E%3C/svg%3E");
}
.kg-trust__ic--drop{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M9.5%203.5h5'/%3E%3Cpath%20d='M10.5%203.5v3l-1.7%202.2v9a1.7%201.7%200%200%200%201.7%201.7h3a1.7%201.7%200%200%200%201.7-1.7v-9L13.5%206.5v-3'/%3E%3Cpath%20d='M9%2014h6'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M9.5%203.5h5'/%3E%3Cpath%20d='M10.5%203.5v3l-1.7%202.2v9a1.7%201.7%200%200%200%201.7%201.7h3a1.7%201.7%200%200%200%201.7-1.7v-9L13.5%206.5v-3'/%3E%3Cpath%20d='M9%2014h6'/%3E%3C/svg%3E");
}
.kg-trust__ic--gift{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4.5%209.5h15V20h-15z'/%3E%3Cpath%20d='M3.5%209.5h17'/%3E%3Cpath%20d='M12%209.5V20'/%3E%3Cpath%20d='M12%209.5C12%209.5%2010.3%204.5%208.2%205.4%206.6%206.1%208.4%209.5%2012%209.5z'/%3E%3Cpath%20d='M12%209.5C12%209.5%2013.7%204.5%2015.8%205.4%2017.4%206.1%2015.6%209.5%2012%209.5z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4.5%209.5h15V20h-15z'/%3E%3Cpath%20d='M3.5%209.5h17'/%3E%3Cpath%20d='M12%209.5V20'/%3E%3Cpath%20d='M12%209.5C12%209.5%2010.3%204.5%208.2%205.4%206.6%206.1%208.4%209.5%2012%209.5z'/%3E%3Cpath%20d='M12%209.5C12%209.5%2013.7%204.5%2015.8%205.4%2017.4%206.1%2015.6%209.5%2012%209.5z'/%3E%3C/svg%3E");
}

/* === Responzivita === */
@media (max-width:680px){
  .kg-trust{padding:26px 20px;}
  .kg-trust__strip{gap:20px 12px;}
  .kg-trust__item{flex:1 1 30%;min-width:90px;}
  .kg-trust__item::after{display:none;}
}
@media (max-width:420px){
  .kg-trust__item{flex:1 1 45%;}
}



/* ===== TIP BOX ===== */
.kg-tip{
  box-sizing:border-box; width:100%; position:relative;
  margin:34px 0 24px !important;            /* horní mezera kvůli přesahu kolečka */
  background:#FBF9F9; border:1px solid #ECE0E1;
  border-radius:14px; padding:30px 26px 22px;
  font-family:inherit;
}
.kg-tip *{box-sizing:border-box; font-family:inherit;}
.kg-tip__badge{
  position:absolute; top:-20px; left:24px;
  width:42px; height:42px; border-radius:50%;
  background:#B57D84;
  box-shadow:0 4px 10px rgba(127,72,79,0.18);
}
.kg-tip__badge::before{                      /* žárovka jako mask-image */
  content:""; position:absolute; inset:0; margin:auto;
  width:22px; height:22px; background:#ffffff;
  -webkit-mask-position:center; mask-position:center;
  -webkit-mask-size:contain; mask-size:contain;
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M9%2018h6'/%3E%3Cpath%20d='M10%2021h4'/%3E%3Cpath%20d='M12%203a6%206%200%200%200-3.6%2010.8c.5.4.8.9.9%201.5l.1.7h5.2l.1-.7c.1-.6.4-1.1.9-1.5A6%206%200%200%200%2012%203z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M9%2018h6'/%3E%3Cpath%20d='M10%2021h4'/%3E%3Cpath%20d='M12%203a6%206%200%200%200-3.6%2010.8c.5.4.8.9.9%201.5l.1.7h5.2l.1-.7c.1-.6.4-1.1.9-1.5A6%206%200%200%200%2012%203z'/%3E%3C/svg%3E");
}
.kg-tip__text{
  margin:0 !important; font-family:inherit; font-size:16px;
  line-height:1.7; color:#3a3936; overflow-wrap:anywhere;
}
.kg-tip__label{
  font-family:inherit; font-size:inherit; line-height:inherit;
  font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:#B57D84; margin-right:8px;
}
.kg-tip__text strong{
  display:inline; font-family:inherit; font-size:inherit;
  line-height:inherit; font-weight:700; color:#7F484F;
}
.kg-tip__text a{
  font-family:inherit; font-size:inherit; line-height:inherit;
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-tip__text a:hover{color:#3a3936;}
.kg-tip__text a:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}
@media (max-width:640px){
  .kg-tip{padding:28px 18px 20px; margin:30px 0 22px !important;}
  .kg-tip__badge{width:38px; height:38px; top:-18px; left:18px;}
  .kg-tip__badge::before{width:20px; height:20px;}
  .kg-tip__text{font-size:15px;}
}

/* ===== OBRÁZEK + TEXT v blogu ===== */
.kg-media{
  box-sizing:border-box; width:100%; margin:28px 0 !important;
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:28px;
  align-items:center; font-family:inherit;
}
.kg-media *{box-sizing:border-box; font-family:inherit;}

.kg-media__img{display:block; width:100%; height:auto; border-radius:14px;}

.kg-media__label{
  display:block; margin:0 0 8px !important;
  font-size:12px; font-weight:600; letter-spacing:.12em;
  text-transform:uppercase; color:#B57D84;
}
.kg-media__title{
  margin:0 0 12px !important; font-size:22px; font-weight:700;
  line-height:1.3; color:#7F484F;
}
.kg-media__text{
  margin:0 !important; font-size:16px; line-height:1.7;
  color:#3a3936; overflow-wrap:anywhere;
}
.kg-media__text strong{
  display:inline; font-family:inherit; font-size:inherit;
  line-height:inherit; font-weight:700; color:#7F484F;
}
.kg-media__text a{
  font-family:inherit; font-size:inherit; line-height:inherit;
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-media__text a:hover{color:#3a3936;}
.kg-media__text a:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}

/* obrázek vpravo + otočený poměr sloupců */
.kg-media--reverse{grid-template-columns:1.1fr 0.9fr;}
.kg-media--reverse .kg-media__img-col{order:2;}
.kg-media--reverse .kg-media__body{order:1;}

@media (max-width:640px){
  .kg-media,
  .kg-media--reverse{grid-template-columns:1fr; gap:18px; margin:22px 0 !important;}
  .kg-media__title{font-size:20px;}
  .kg-media--reverse .kg-media__img-col,
  .kg-media--reverse .kg-media__body{order:0;}
}


/* ===== ZDROJE / REFERENCE (konec článku) ===== */
.kg-sources{
  box-sizing:border-box; width:100%; margin:32px 0 0 !important;
  border-top:1px solid #ECE0E1; padding-top:20px;
  font-family:inherit;
}
.kg-sources *{box-sizing:border-box; font-family:inherit;}

.kg-sources__label{
  display:inline-flex; align-items:center; gap:8px;
  margin:0 0 14px !important; font-size:12px; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; color:#B57D84;
}
.kg-sources__label::before{
  content:""; width:22px; height:2px; background:#B57D84; border-radius:2px;
}

.kg-sources__list{
  margin:0 !important; padding:0 !important; list-style:none !important;
}
.kg-sources__item{
  position:relative; padding:0 0 0 26px; margin:0 0 12px !important;
  font-size:14px; line-height:1.6; color:#7E5D62; overflow-wrap:anywhere;
  counter-increment:kg-src;
}
.kg-sources__item:last-child{margin-bottom:0 !important;}
.kg-sources__item::before{
  content:counter(kg-src) ".";
  position:absolute; left:0; top:0; color:#B57D84; font-weight:600;
}
.kg-sources__list{counter-reset:kg-src;}

.kg-sources__item a{
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-sources__item a:hover{color:#3a3936;}
.kg-sources__item a:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}

@media (max-width:640px){
  .kg-sources{margin-top:26px !important;}
  .kg-sources__item{font-size:13px;}
}


/* ===== TŘÍDY NADPISŮ ===== */
.kg-h1,
.kg-h2,
.kg-h3,
.kg-h4,
.kg-h5,
.kg-h6{
  font-family:inherit;
  color:#7F484F;
  margin:0 0 14px;
}

.kg-h1{ font-size:34px; font-weight:800; line-height:1.2; }
.kg-h2{ font-size:26px; font-weight:700; line-height:1.25; margin-top:2rem; }
.kg-h3{ font-size:21px; font-weight:700; line-height:1.3; margin-top:1.6rem; }
.kg-h4{ font-size:18px; font-weight:600; line-height:1.35; margin-top:1.4rem; }
.kg-h5{ font-size:16px; font-weight:600; line-height:1.4; margin-top:1.2rem; }
.kg-h6{
  font-size:13px; font-weight:600; line-height:1.4;
  letter-spacing:.08em; text-transform:uppercase;
  margin-top:1.2rem;
}

@media (max-width:640px){
  .kg-h1{ font-size:28px; }
  .kg-h2{ font-size:23px; }
  .kg-h3{ font-size:19px; }
  .kg-h4{ font-size:17px; }
}

/* ===== ODRÁŽKY — kolečko ===== */
.kg-bullets{ box-sizing:border-box; width:100%; font-family:inherit; }
.kg-bullets.kg-bullets.kg-bullets{
  margin:18px 0 !important; padding:0 !important;
  padding-left:0 !important; margin-left:0 !important;
  list-style:none !important;
}
.kg-bullets *{ box-sizing:border-box; font-family:inherit; }

.kg-bullets.kg-bullets.kg-bullets .kg-bullets__item{
  margin:0 0 12px !important; margin-left:0 !important;
  padding:0 0 0 26px !important; text-indent:0 !important;
  list-style:none !important;
  background-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2010%2010'%3E%3Ccircle%20cx='5'%20cy='5'%20r='4.5'%20fill='%23B57D84'/%3E%3C/svg%3E") !important;
  background-repeat:no-repeat !important;
 background-position:0 0.5em !important;
  background-size:9px 9px !important;
  font-size:inherit; line-height:1.7; color:#3a3936; overflow-wrap:anywhere;
}
.kg-bullets.kg-bullets.kg-bullets .kg-bullets__item:last-child{ margin-bottom:0 !important; }
.kg-bullets.kg-bullets.kg-bullets .kg-bullets__item::marker{ content:"" !important; }
.kg-bullets.kg-bullets.kg-bullets .kg-bullets__item::before{ content:none !important; }

.kg-bullets__item strong{
  font-family:inherit; font-size:inherit; line-height:inherit;
  font-weight:700; color:#7F484F;
}
.kg-bullets__item a{
  font-family:inherit; font-size:inherit; line-height:inherit;
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-bullets__item a:hover{ color:#3a3936; }
.kg-bullets__item a:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}

/* ===== ODRÁŽKY — fajfka v kroužku ===== */
.kg-checks{ box-sizing:border-box; width:100%; font-family:inherit; }
.kg-checks.kg-checks.kg-checks{
  margin:18px 0 !important; padding:0 !important;
  padding-left:0 !important; margin-left:0 !important;
  list-style:none !important;
}
.kg-checks *{ box-sizing:border-box; font-family:inherit; }

.kg-checks.kg-checks.kg-checks .kg-checks__item{
  margin:0 0 14px !important; margin-left:0 !important;
  padding:0 0 0 34px !important; text-indent:0 !important;
  list-style:none !important;
background-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'%20fill='%23F3C7CE'/%3E%3Cpath%20d='M8%2012.2l2.6%202.6L16%209.4'%20fill='none'%20stroke='%237F484F'%20stroke-width='1.9'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat:no-repeat !important; 
background-position:0 0.18em !important;
  background-size:20px 20px !important;
  font-size:inherit; line-height:1.7; color:#3a3936; overflow-wrap:anywhere;
}
.kg-checks.kg-checks.kg-checks .kg-checks__item:last-child{ margin-bottom:0 !important; }
.kg-checks.kg-checks.kg-checks .kg-checks__item::marker{ content:"" !important; }
.kg-checks.kg-checks.kg-checks .kg-checks__item::before{ content:none !important; }

.kg-checks__item strong{
  font-family:inherit; font-size:inherit; line-height:inherit;
  font-weight:700; color:#7F484F;
}
.kg-checks__item a{
  font-family:inherit; font-size:inherit; line-height:inherit;
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-checks__item a:hover{ color:#3a3936; }
.kg-checks__item a:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}

/* ===== POROVNÁNÍ (dva bloky) ===== */
.kg-compare{
  box-sizing:border-box; width:100%; position:relative;
  margin:24px 0 !important;
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
  font-family:inherit;
}
.kg-compare *{box-sizing:border-box; font-family:inherit;}

.kg-compare__col{
  background:#FBF9F9; border:1px solid #ECE0E1;
  border-radius:14px; padding:24px 24px 22px;
}
.kg-compare__label{
  display:block; margin:0 0 4px !important;
  font-size:12px; font-weight:600; letter-spacing:.12em;
  text-transform:uppercase; color:#B57D84;
}
.kg-compare__title{
  margin:0 0 16px !important; font-size:18px; font-weight:700;
  line-height:1.3; color:#7F484F;
}
.kg-compare__list{
  margin:0 !important; padding:0 !important; list-style:none !important;
}
.kg-compare__item{
  position:relative; padding:0 0 0 22px; margin:0 0 10px !important;
  font-size:14px; line-height:1.6; color:#3a3936; overflow-wrap:anywhere;
}
.kg-compare__item:last-child{margin-bottom:0 !important;}
.kg-compare__item::before{
  content:""; position:absolute; left:0; top:0.5em;
  width:7px; height:7px; border-radius:50%; background:#B57D84;
}
.kg-compare__item strong{
  display:inline; font-family:inherit; font-size:inherit;
  line-height:inherit; font-weight:700; color:#7F484F;
}

/* "vs" odznak uprostřed */
.kg-compare__vs{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:40px; height:40px; border-radius:50%;
  background:#7F484F; color:#ffffff;
  font-size:13px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 4px #ffffff;
}

@media (max-width:640px){
  .kg-compare{grid-template-columns:1fr; gap:32px;}
  .kg-compare__col{padding:20px 18px;}
  .kg-compare__title{font-size:17px;}
  .kg-compare__item{font-size:13px;}
  .kg-compare__vs{top:50%; left:50%;}
}

/* ===== PLUSY A MINUSY ===== */
.kg-proscons{
  box-sizing:border-box; width:100%; margin:24px 0 !important;
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
  font-family:inherit;
}
.kg-proscons *{box-sizing:border-box; font-family:inherit;}

.kg-proscons__col{
  border-radius:14px; padding:22px 24px;
}
.kg-proscons__col--pros{ background:#F6F3EE; border:1px solid #E4DDD0; }
.kg-proscons__col--cons{ background:#FBF9F9; border:1px solid #ECE0E1; }

.kg-proscons__head{
  display:flex; align-items:center; gap:10px; margin:0 0 16px;
}
.kg-proscons__badge{
  flex:0 0 auto; width:24px; height:24px; border-radius:50%;
}
.kg-proscons__col--pros .kg-proscons__badge{ background:#7C8A5A; }
.kg-proscons__col--cons .kg-proscons__badge{ background:#B57D84; }
.kg-proscons__badge::before{   /* + nebo − jako mask-image */
  content:""; display:block; width:100%; height:100%; background:#ffffff;
  -webkit-mask-position:center; mask-position:center;
  -webkit-mask-size:14px; mask-size:14px;
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
}
.kg-proscons__col--pros .kg-proscons__badge::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.6'%20stroke-linecap='round'%3E%3Cpath%20d='M12%206v12M6%2012h12'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.6'%20stroke-linecap='round'%3E%3Cpath%20d='M12%206v12M6%2012h12'/%3E%3C/svg%3E");
}
.kg-proscons__col--cons .kg-proscons__badge::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.6'%20stroke-linecap='round'%3E%3Cpath%20d='M6%2012h12'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.6'%20stroke-linecap='round'%3E%3Cpath%20d='M6%2012h12'/%3E%3C/svg%3E");
}
.kg-proscons__label{
  font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
}
.kg-proscons__col--pros .kg-proscons__label{ color:#5E6B41; }
.kg-proscons__col--cons .kg-proscons__label{ color:#7F484F; }

.kg-proscons__list{
  margin:0 !important; padding:0 !important; list-style:none !important;
}
.kg-proscons__item{
  position:relative; padding:0 0 0 24px; margin:0 0 11px !important;
  font-size:14px; line-height:1.6; color:#3a3936; overflow-wrap:anywhere;
}
.kg-proscons__item:last-child{ margin-bottom:0 !important; }
.kg-proscons__item::before{
  content:""; position:absolute; left:0; top:0.5em;
  width:8px; height:8px; border-radius:50%;
}
.kg-proscons__col--pros .kg-proscons__item::before{ background:#7C8A5A; }
.kg-proscons__col--cons .kg-proscons__item::before{ background:#B57D84; }
.kg-proscons__item strong{
  display:inline; font-family:inherit; font-size:inherit;
  line-height:inherit; font-weight:700; color:#7F484F;
}

@media (max-width:640px){
  .kg-proscons{grid-template-columns:1fr; gap:14px;}
  .kg-proscons__col{padding:20px 18px;}
  .kg-proscons__item{font-size:13px;}
}


/* ===== PEREX / ÚVODNÍ ODSTAVEC ===== */
.kg-perex{
  box-sizing:border-box; width:100%;
  max-width:820px;                 /* sjednoceno se šířkou textu blogu */
  margin:0 0 24px !important;
  padding-bottom:22px;
  border-bottom:1px solid #ECE0E1; /* sjednoceno: dělící linka */
  font-family:inherit;
}
.kg-perex *{box-sizing:border-box; font-family:inherit;}

.kg-perex__text{
  margin:0 !important;
  font-size:17px;                  /* DESKTOP */
  line-height:1.6;
  font-weight:400;
  color:#3a3936;
  letter-spacing:.002em;
  overflow-wrap:anywhere;
}
.kg-perex__text strong{
  display:inline; font-family:inherit; font-size:inherit;
  line-height:inherit; font-weight:700; color:#7F484F;
}
.kg-perex__text a{
  font-family:inherit; font-size:inherit; line-height:inherit;
  color:#7F484F; text-decoration:underline; text-underline-offset:2px;
  overflow-wrap:anywhere; transition:color .18s ease;
}
.kg-perex__text a:hover{color:#3a3936;}
.kg-perex__text a:focus-visible{
  outline:2px solid rgba(181,125,132,.35); outline-offset:2px; border-radius:2px;
}

@media (max-width:640px){
  .kg-perex{margin:0 0 20px !important; padding-bottom:18px;}
  .kg-perex__text{font-size:16px; line-height:1.55;}  /* MOBIL */
}

