﻿/* === TLAČÍTKA === */
















/* === CTA tlačítko oranžové === */








.cta-center{
  width: 100%;
  display: flex;
  justify-content: center; /* střed vodorovně */
}








/* === CTA tlačítko === */
.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;








  background-color: #ff660e; /* základní oranžová*/
  color: #ffffff;








  /* Zrušení podtržení odkazu */
  text-decoration: none;








  border-radius: 4px; /* jemný radius */
  padding: 18px 34px;








  /* Font se přebírá z webu */
  font: inherit;
  font-weight: 600;
  line-height: 1;








  border: 0;
  cursor: pointer;








  transition: background-color .15s ease, transform .05s ease;
}








/* I kdyby web globálně podtrhával odkazy, tady to vypneme i na hover/focus */
.cta-btn:hover,
.cta-btn:focus,
.cta-btn:focus-visible,
.cta-btn:active,
.cta-btn:visited{
  text-decoration: none;
}








/* Velmi jemné ztmavení po najetí myši */
.cta-btn:hover{
  background-color: #FF5100;
}








/* Jemné „kliknutí“ */
.cta-btn:active{
  transform: translateY(1px);
}








/* Přístupný focus pro klávesnici */
.cta-btn:focus-visible{
  outline: 3px solid rgba(35, 156, 235, .35);
  outline-offset: 3px;
}




















/* === Mini buttony s TOP tématy === */








 .top-topics-wrap{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:6px;              
    margin: 0 0 16px;
    font-family:"Nunito Sans", sans-serif;
  }








  .top-topics-wrap a.top-topic{
    padding:6px 14px;
    background:#fff2ea;
    color:#7a2e00 !important;
    text-decoration:none !important;
    border-radius:999px;
    font-size:14px;
    line-height:1.2;
    font-weight:400;      
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
    transition: background-color .2s ease;
  }








  .top-topics-wrap a.top-topic:hover{
    background:#ffe5d6;
    text-decoration:none !important;
  }








  .top-topics-wrap a.top-topic:focus-visible{
    outline: 3px solid rgba(15,64,93,.25);
    outline-offset: 2px;
  }












/* === USP bloky === */
.usp-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 vedle sebe */
  gap: 16px;
  width: 100%;
}








.usp-card{
  background: #fff2ea;
  border-radius: 4px;
  padding: 18px 16px;








  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;








  text-align: center;








  /* Font se dědí z webu */
  font: inherit;
}








.usp-icon{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  margin: 0 0 10px 0;
}








.usp-text{
  font: inherit;         /* dědí font z webu */
  font-weight: 600;
  font-size: 15px;
  line-height: 1.15;
  color: #24242e;
}








/* Tablet / menší obrazovky (volitelné zjemnění) */
@media (max-width: 1024px){
  .usp-grid{
    gap: 12px;
  }
}








/* Mobil: 2 vedle sebe */
@media (max-width: 640px){
  .usp-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 vedle sebe */
    gap: 10px;
  }








  .usp-card{
    padding: 16px 12px;
  }








  .usp-text{
    font-size: 14px;
  }
}
































/* === Tip box === */








.tip-note{
  background: #fffaf7;
  border: 1px solid #ff660e;   /* výrazné, ale sedí na brand */
  border-radius: 4px;          /* pokud chcete přesně 4px, změňte na 4px */
  padding: 14px 16px;
  margin: 16px 0;








  font: inherit;               /* font se dědí z webu */
  color: #24242E;








  /* Jemné odlišení od okolí bez toho, aby to splývalo s USP */
  box-shadow: 0 8px 20px rgba(0,0,0,.03);
}








/* „TIP →“ */
.tip-note__label{
  font: inherit;
  font-weight: 700;
  margin-right: 6px;
  color: #7a2e00;
  white-space: nowrap;
}








/* Text */
.tip-note__text{
  font: inherit;
  font-weight: 500;
  line-height: 1.5;
}








/* Odkaz uvnitř */
.tip-note__link{
  color: #ff660e;
  text-decoration: underline; /* u tipů je fajn, aby bylo jasné, že je to odkaz */
  text-underline-offset: 2px;
}








.tip-note__link:hover{
  color: #FF5100;             /* jemně tmavší */
}








/* Přístupný focus */
.tip-note__link:focus-visible{
  outline: 3px solid rgba(35,156,235,.25);
  outline-offset: 2px;
  border-radius: 2px;
}




/* === Samostatný obrázek === */




.sp-img-wrap{
  margin: 16px 24px;
}




.sp-img-box{
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 8px 18px rgba(0, 0, 0, 0.03);
}




.sp-img{
  display: block;
  width: 100%;
  height: auto;
}




.sp-img-caption{
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
  line-height: 1.5;
  color: #7a2e00;
  text-align: left;
}




.sp-img-caption strong,
.sp-img-caption b{
  font-weight: 600;
  color: #7a2e00;
}




.sp-img-caption a{
  color: #7a2e00;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}




@media (max-width: 860px){
  .sp-img-wrap{
    margin-left: 0;
    margin-right: 0;
  }




  .sp-img-caption{
    padding: 11px 16px 13px;
  }
}
















/* === 2 bloky text + obrázek === */








.sp-split {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}








/* Text */
.sp-split__text {
  flex: 1 1 55%;
  min-width: 0;
}








/* Nadpis pro tyto bloky */
.sp-split__title {
  margin: 0 0 18px;
  line-height: 1.05;
  color: #7a2e00;
}








/* Editovatelný obsah – rozumné mezery */
.sp-split__text p,
.sp-split__text ul,
.sp-split__text ol {
  margin: 0 0 12px;
}
















.sp-split__text ul,
.sp-split__text ol {
  padding-left: 20px;
}
















/* Média */
.sp-split__media {
  flex: 1 1 45%;
  min-width: 0;
  margin: 0;
}
















/* Společný wrapper pro obrázek + popisek */
.sp-split__box,
.sp-split__figure {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 8px 18px rgba(0, 0, 0, 0.03);
}
















/* Obrázek */
.sp-split__img {
  display: block;
  width: 100%;
  height: auto;
}
















/* Popisek pod obrázkem – propojený s blokem */
.sp-split__caption {
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
  line-height: 1.5;
  color: #7a2e00;
  text-align: left;
}
















.sp-split__caption strong,
.sp-split__caption b {
  font-weight: 600;
  color: #7a2e00;
}
















.sp-split__caption a {
  color: #7a2e00;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
















/* 2 obrázky pod sebou */
.sp-split__mediaStack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
















/* Varianta: prohození stran */
.sp-split--reverse {
  flex-direction: row-reverse;
}
















/* Mobil */
@media (max-width: 860px) {
  .sp-split,
  .sp-split--reverse {
    flex-direction: column;
    gap: 16px;
  }
















  .sp-split__caption {
    padding: 11px 16px 13px;
  }
}
/* === 3–4 bloky s obrázky vedle sebe === */








:root {
  --ei-text: #1f1f1c;
  --ei-muted: #5f5f5f;
  --ei-max-width: 1440px;
  --ei-gap: 32px;
}








.ei-section {
  width: 100%;
  max-width: var(--ei-max-width);
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  color: var(--ei-text);
}








.ei-grid {
  display: grid;
  gap: var(--ei-gap);
  align-items: start;
}








.ei-grid.is-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}








.ei-grid.is-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}








.ei-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}








.ei-image-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e1e7;
  flex-shrink: 0;
}








.ei-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}








.ei-content {
  max-width: 300px;
  margin: 0 auto;
}








.ei-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  color: #7a2e00;
}








.ei-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ei-text);
}








.ei-text strong {
  font-weight: 700;
}








.ei-section .ei-title a,
.ei-section .ei-text a,
.ei-section .ei-title a:link,
.ei-section .ei-text a:link,
.ei-section .ei-title a:visited,
.ei-section .ei-text a:visited {
  color: inherit;
  text-decoration: underline;
}








.ei-section .ei-title a:hover,
.ei-section .ei-text a:hover,
.ei-section .ei-title a:active,
.ei-section .ei-text a:active,
.ei-section .ei-title a:focus,
.ei-section .ei-text a:focus {
  color: inherit;
  text-decoration: underline;
}








/* TABLET */
@media (max-width: 991px) {
  .ei-grid.is-3,
  .ei-grid.is-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}








/* MOBILE */
@media (max-width: 640px) {
  .ei-section {
    padding: 28px 16px;
  }








  .ei-grid.is-3,
  .ei-grid.is-4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }








  .ei-title {
    font-size: 17px;
  }








  .ei-text {
    font-size: 14px;
  }








  .ei-image-wrap {
    width: 104px;
    height: 104px;
    margin-bottom: 18px;
  }
}


















/* === Jednoduché odrážky === */




.pk-bullets--dot{
  --pk:#ff660e;      /* barva tečky */
  --lh:1.65;         /* line-height */
  --dot:8px;         /* velikost tečky */
  --dot-offset:0px;  /* jemné doladění */
  --dot-gap:10px;    /* mezera mezi tečkou a textem */




  list-style:none;
  margin:0;
  padding:0;
}




.pk-bullets--dot li{
  position:relative;
  margin:10px 0;
  line-height:var(--lh);
  padding-left:calc(var(--dot) + var(--dot-gap));
}




.pk-bullets--dot li::before{
  content:"";
  position:absolute;
  left:0;
  top:calc((1em * var(--lh) - var(--dot)) / 2 + var(--dot-offset));




  width:var(--dot);
  height:var(--dot);
  border-radius:50%;
  background:var(--pk);
}








/* === Číselný seznam === */




ol.pk-steps{
  --pk:#7a2e00;
  --num-size:26px;
  --num-gap:12px;




  counter-reset:i;
  list-style:none;
  padding:0;
  margin:16px 0;
}




ol.pk-steps > li{
  counter-increment:i;
  position:relative;
  margin:10px 0;
  line-height:1.6;
  padding-left:calc(var(--num-size) + var(--num-gap));
  min-height:var(--num-size);
}




ol.pk-steps > li::before{
  content:counter(i);
  position:absolute;
  left:0;
  top:0;




  width:var(--num-size);
  height:var(--num-size);
  border-radius:50%;
  background:var(--pk);
  color:#fff;




  display:grid;
  place-items:center;




  box-sizing:border-box;
  padding:0;




  font-weight:700;
  font-size:13px;
  line-height:1;
  text-align:center;




  font-variant-numeric:tabular-nums lining-nums;
  font-feature-settings:"tnum" 1, "lnum" 1;
}




















/* === FAQ (UI Kit – ikonka vlevo jako na obrázku) === */
















.faq{
  width: 100%;
}
















/* Jedna položka */
.faq-item{
  margin: 0 0 12px 0;
  border: 1px solid #b9cfe3;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}
















/* Klikací hlavička (summary) */
.faq-item > summary{
  list-style: none;                 /* schovat default marker */
  cursor: pointer;
















  display: flex;
  align-items: center;
  justify-content: flex-start;      /* obsah vlevo */
  gap: 12px;
















  padding: 14px 16px;
















  font: inherit;                    /* font z webu */
  color: #0f405d;
















  background: #f3f8fd;              /* jemný tint (ladí s tabulkou) */
  border-bottom: 1px solid rgba(185,207,227,.0);
















  transition: background-color .15s ease;
}
















/* Skrytí markeru v Safari/Chromu */
.faq-item > summary::-webkit-details-marker{
  display: none;
}
















/* Text otázky */
.faq-q{
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
















  flex: 1 1 auto;                   /* text zabere zbytek řádku */
  min-width: 0;
}
















/* Ikona vlevo (kroužek se šedým okrajem + chevron) */
.faq-icon{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
















  display: inline-flex;
  align-items: center;
  justify-content: center;
















  border-radius: 999px;
  background: #ffffff;
















  border: 1px solid #d5dde6;        /* neutrální šedý okraj jako na obrázku */
  color: #2d3b45;                   /* chevron tmavší (ne brand modrá) */
















  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
















/* SVG chevron */
.faq-chevron{
  width: 16px;
  height: 16px;
  display: block;
}
















/* Odpověď */
.faq-a{
  padding: 14px 16px 16px 16px;
  font: inherit;
  color: #0f405d;
  line-height: 1.55;
  background: #ffffff;
}
















/* Odkazy uvnitř odpovědi */
.faq-a a{
  color: #239ceb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-a a:hover{
  color: #1f93df;
}
















/* Stav otevřeno */
.faq-item[open] > summary{
  background: #f5f9fd;              /* o chlup světlejší při otevření */
  border-bottom-color: rgba(185,207,227,.65);
}
















/* Otevřeno: šipka se otočí nahoru */
.faq-item[open] .faq-icon{
  transform: rotate(180deg);
  background: #fbfdff;
  border-color: #cfe0f0;            /* jemně do šedomodra při otevření */
}
















/* Hover */
.faq-item > summary:hover{
  background: #eef6fe;
}
















/* Focus pro klávesnici */
.faq-item > summary:focus-visible{
  outline: 3px solid rgba(35,156,235,.22);
  outline-offset: 2px;
}
















/* Mobil */
@media (max-width: 640px){
  .faq-item > summary{
    padding: 12px 14px;
    gap: 10px;
  }
  .faq-a{
    padding: 12px 14px 14px 14px;
  }
  .faq-q{
    font-size: 14px;
  }
}
























































/* === FAQ (UI Kit – ikonka vlevo jako na obrázku) === */
















.faq{
  width: 100%;
}








/* Jedna položka */
.faq-item{
  margin: 0 0 12px 0;
  border: 1px solid #ffd1b5;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}








/* Klikací hlavička (summary) */
.faq-item > summary{
  list-style: none;                 /* schovat default marker */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;      /* obsah vlevo */
  gap: 12px;
  padding: 14px 16px;
  font: inherit;                    /* font z webu */
  color: #24242e;
  background: #fff4ed;              /* jemný oranžový tint */
  border-bottom: 1px solid rgba(255,209,181,0);
  transition: background-color .15s ease;
}








/* Skrytí markeru v Safari/Chromu */
.faq-item > summary::-webkit-details-marker{
  display: none;
}








/* Text otázky */
.faq-q{
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  flex: 1 1 auto;                   /* text zabere zbytek řádku */
  min-width: 0;
}








/* Ikona vlevo (kroužek se šedým okrajem + chevron) */
.faq-icon{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e7d7cc;
  color: #4a3328;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}








/* SVG chevron */
.faq-chevron{
  width: 16px;
  height: 16px;
  display: block;
}








/* Odpověď */
.faq-a{
  padding: 14px 16px 16px 16px;
  font: inherit;
  color: #24242e;
  line-height: 1.55;
  background: #ffffff;
}








/* Odkazy uvnitř odpovědi */
.faq-a a{
  color: #ff660e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-a a:hover{
  color: #e55a0c;
}








/* Stav otevřeno */
.faq-item[open] > summary{
  background: #fff2ea;
  border-bottom-color: rgba(255,209,181,.65);
}








/* Otevřeno: šipka se otočí nahoru */
.faq-item[open] .faq-icon{
  transform: rotate(180deg);
  background: #fffaf7;
  border-color: #ffd9c2;
}








/* Hover */
.faq-item > summary:hover{
  background: #ffe5d6;
}








/* Focus pro klávesnici */
.faq-item > summary:focus-visible{
  outline: 3px solid rgba(255,102,14,.22);
  outline-offset: 2px;
}








/* Mobil */
@media (max-width: 640px){
  .faq-item > summary{
    padding: 12px 14px;
    gap: 10px;
  }
  .faq-a{
    padding: 12px 14px 14px 14px;
  }
  .faq-q{
    font-size: 14px;
  }
}
















































/* === Průvodce krok za krokem === */








.step-guide,
.step-guide *{
  box-sizing:border-box;
}








/* Reset jen toho, co Shoptet často rozhází v blogu */
.step-guide ol,
.step-guide ul{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}








.step-guide li{
  margin:0 !important;
  list-style:none !important;
  /* POZOR: žádné padding:0 na li – to by zabilo "ochrannou zónu" u .step */
}








.step-guide p{
  margin:0 !important;
}








/* Karta */
.step-guide__card{
  background:#ffffff;
  border:1px solid #d9c4b8;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(122,46,0,.05);
  width:100%;
}








/* Hlavička */
.step-guide__head{
  padding:14px 18px !important;
  background:#f9f2ee;
  border-bottom:1px solid #d0b2a3;
}








/* Hlavní nadpis: bere font/velikost/barvu ze šablony,
   ale na blogu ho vynutíme jako tučný */
.step-guide__title{
  margin:0 !important;
  padding:0 !important;
  font-weight:700 !important; /* fix: blog někdy dává h2 normal */
}








.step-guide__subtitle{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.45;
  color:#8d6b58;
}








/* Seznam kroků */
.step-guide__list{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}








/* Krok */
.step-guide__list > .step{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  padding:16px 18px !important; /* ochranná zóna */
  border-bottom:1px solid #f2e8e2;
  position:relative;
  background:#ffffff;
}








.step-guide__list > .step:last-child{
  border-bottom:0;
}








/* Číslo + linka */
.step__index{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}








.step__badge{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#f4e6de;
  border:1px solid #ead2c4;
  color:#7a2e00;
  font-weight:700;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
}








/* Svislá spojnice */
.step__index:after{
  content:"";
  position:absolute;
  top:34px;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:calc(100% - 34px);
  background:#f2e8e2;
}








.step-guide__list > .step:last-child .step__index:after{
  display:none;
}








/* Obsah kroku */
.step__topline{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}








.step__heading{
  margin:0 !important;
  font-size:14px;
  line-height:1.35;
  font-weight:700; /* aby to vypadalo jako na obrázku */
  color:#7a2e00;
}








.step__tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#f4e6de;
  color:#7a2e00;
  font-size:12px;
  line-height:1.2;
  border:1px solid #ead2c4;
  white-space:nowrap;
  text-decoration:none;
}








.step__text{
  margin:6px 0 0 !important;
  font-size:14px;
  line-height:1.5;
  color:#7a2e00;
}








/* Hover */
.step-guide__list > .step:hover{
  background:#fcf8f5;
}








/* Volitelně “hotovo” */
.step-guide__list > .step.is-done .step__badge{
  background:#f9f2ee;
  border-color:#d0b2a3;
}








/* Mobil */
@media (max-width:640px){
  .step-guide__head{
    padding:12px 14px !important;
  }
  .step-guide__list > .step{
    padding:14px 14px !important;
    grid-template-columns:32px 1fr;
    gap:10px;
  }
}




/* === Jednoduchá tabulka === */




.table-wrap{
  width: 100%;
  border: 1px solid #d9c4b8;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(122,46,0,.05);
}




.ui-table{
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font: inherit;
  background: #ffffff;
  color: #7a2e00;
}




.ui-table th,
.ui-table td{
  vertical-align: middle;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}




/* Hlavička */
.ui-table thead th{
  text-align: left;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #7a2e00;
  background: #f9f2ee;
  border-bottom: 1px solid #d0b2a3;
}




/* Buňky */
.ui-table tbody td{
  padding: 16px 18px;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid #f2e8e2;
  color: #7a2e00;
  background: #ffffff;
}




/* poslední řádek bez linky */
.ui-table tbody tr:last-child td{
  border-bottom: 0;
}




/* první sloupec */
.ui-table tbody td:first-child{
  font-weight: 600;
  color: #7a2e00;
  background: #fdfaf8;
}




/* první sloupec jen na desktopu bez zalamování */
@media (min-width: 768px){
  .ui-table tbody td:first-child{
    white-space: nowrap;
  }
}




/* hover */
.ui-table tbody tr:hover td{
  background: #fcf8f5;
}




.ui-table tbody tr:hover td:first-child{
  background: #fdfaf8;
}




/* === Mobil: 2–3 sloupce zůstávají tabulkou === */
@media (max-width: 767px){
  .table-mobile-table{
    overflow: hidden;
  }




  .table-mobile-table .ui-table{
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }




  .table-mobile-table .ui-table thead th,
  .table-mobile-table .ui-table tbody td{
    padding: 12px 10px;
    font-size: 14px;
    line-height: 1.45;
  }




  .table-mobile-table .ui-table tbody td:first-child{
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
}




/* === Mobil: 4+ sloupců jako kartičky === */
@media (max-width: 767px){
  .table-mobile-cards{
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }




  .table-mobile-cards .ui-table,
  .table-mobile-cards .ui-table thead,
  .table-mobile-cards .ui-table tbody,
  .table-mobile-cards .ui-table tr,
  .table-mobile-cards .ui-table th,
  .table-mobile-cards .ui-table td{
    display: block;
    width: 100%;
  }




  .table-mobile-cards .ui-table{
    min-width: 0;
    table-layout: auto;
    background: transparent;
  }




  .table-mobile-cards .ui-table thead{
    display: none;
  }




  .table-mobile-cards .ui-table tbody tr{
    margin-bottom: 14px;
    border: 1px solid #d9c4b8;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(122,46,0,.05);
  }




  .table-mobile-cards .ui-table tbody td{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #f2e8e2;
    background: #ffffff;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }




  .table-mobile-cards .ui-table tbody tr td:first-child{
    background: #f9f2ee;
    font-weight: 700;
  }




  .table-mobile-cards .ui-table tbody tr td:last-child{
    border-bottom: none;
  }




  .table-mobile-cards .ui-table tbody td::before{
    content: attr(data-label);
    font-weight: 700;
    color: #7a2e00;
    line-height: 1.4;
  }
}




















/* === Srovnávací tabulka (2 produkty) === */
/* === Srovnávací tabulka (2 produkty) === */
.pk-compare{
  --pk-text:var(--color-text,#0f172a);
  --pk-muted:#504945;
  --pk-border:#d9c4b8;
  --pk-bg:var(--color-bg,#fff);




  --pk-plus:var(--color-success,#15803d);
  --pk-minus:var(--color-danger,#b91c1c);




  --pk-radius:var(--radius-card,6px);
  --pk-shadow:var(--shadow-card,0 1px 2px rgba(15,23,42,.06));




  --pk-sign-size:12px;
  --pk-sign-thickness:3px;




  margin:22px 0;
  color:var(--pk-text);
  font-family:inherit;
}




.pk-compare__table{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border:1px solid var(--pk-border);
  border-radius:var(--pk-radius);
  background:var(--pk-bg);
  box-shadow:var(--pk-shadow);
  overflow:hidden;
}




.pk-compare__col{
  padding:18px 18px 16px;
}




.pk-compare__col+.pk-compare__col{
  border-left:1px solid var(--pk-border);
}




.pk-compare__head{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin:0 0 14px;
}




.pk-compare__title{
  margin:0;
  padding-left:0;
  color:#7a2e00;
  font-weight:700;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.01em;
}




.pk-compare__tag{
  order:-1;
  align-self:flex-start;
  margin:0;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid #d9c4b8;
  background:#f3e3d8;
  color:#7a2e00;
  font-weight:700;
  font-size:12px;
  line-height:1.15;
  letter-spacing:-.01em;
  white-space:normal;
  max-width:100%;
}




.pk-compare__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}




.pk-compare__head + .pk-compare__list{
  margin-top:0;
}




.pk-compare__col .pk-compare__list + .pk-compare__list{
  margin-top:14px;
}




.pk-compare__item{
  display:grid;
  grid-template-columns:28px 1fr;
  column-gap:10px;
  align-items:start;
}




.pk-compare__text{
  color:#504945;
  font-size:16px;
  line-height:1.5;
  background:transparent;
}




.pk-compare__icon{
  width:28px;
  height:28px;
  border-radius:999px;
  position:relative;
  margin-top:-1px;
}




.pk-compare__item--plus .pk-compare__icon{
  color:var(--pk-plus);
  background:rgba(21,128,61,.08);
  border:1.5px solid rgba(21,128,61,.25);
}




.pk-compare__item--minus .pk-compare__icon{
  color:var(--pk-minus);
  background:rgba(185,28,28,.08);
  border:1.5px solid rgba(185,28,28,.25);
}




.pk-compare__icon::before,
.pk-compare__icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:currentColor;
  border-radius:999px;
}




.pk-compare__icon::before{
  width:var(--pk-sign-size);
  height:var(--pk-sign-thickness);
}




.pk-compare__item--plus .pk-compare__icon::after{
  width:var(--pk-sign-thickness);
  height:var(--pk-sign-size);
}




.pk-compare__item--minus .pk-compare__icon::after{
  display:none;
}




@media (max-width:860px){
  .pk-compare__table{
    grid-template-columns:1fr;
  }




  .pk-compare__col+.pk-compare__col{
    border-left:0;
    border-top:1px solid var(--pk-border);
  }




  .pk-compare__head{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin:0 0 10px;
  }




  .pk-compare__tag{
    order:-1;
    margin:0;
    align-self:flex-start;
  }




  .pk-compare__title{
    padding-left:0;
  }
}






/* === Průvodce výběrem pro spodní popisek kategorií === */


.pk-guide{
  margin: 24px 0;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #d9c4b8;                /* změna: #c8dbec → brand béžová */
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(122,46,0,.05);   /* změna: rgba(15,64,93,.05) → brand hnědá */
}


.pk-guide__title{
  margin: 0 0 10px;
  color: #7a2e00;                           /* změna: #0f405d → brand hnědá */
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}


.pk-guide__intro{
  margin: 0 0 16px;
  color: #7a2e00;                           /* změna: #0f405d → brand hnědá */
  line-height: 1.6;
}


/* Rozbalovací logika přes <details> */
.pk-guide details{
  margin: 0;
}


.pk-guide details > summary{
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ff660e;                      /* změna: #239ceb → brand oranžová */
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: background-color .15s ease;
  user-select: none;
  box-sizing: border-box;
}


.pk-guide details > summary::-webkit-details-marker{
  display: none;
}


.pk-guide details > summary:hover{
  background: #FF5100;                      /* změna: #1f93df → tmavší oranžová (jako tip link hover) */
}


.pk-guide details > summary:focus-visible{
  outline: 3px solid rgba(255,102,14,.35);  /* změna: modrá → oranžová */
  outline-offset: 3px;
}


/* Chevron */
.pk-guide__chevron{
  width: 14px;
  height: 14px;
  display: block;
  transition: transform .2s ease;
}


.pk-guide details[open] .pk-guide__chevron{
  transform: rotate(180deg);
}


/* Přepínání textu tlačítka */
.pk-guide__btn-label--more{
  display: inline;
}


.pk-guide__btn-label--less{
  display: none;
}


.pk-guide details[open] .pk-guide__btn-label--more{
  display: none;
}


.pk-guide details[open] .pk-guide__btn-label--less{
  display: inline;
}


/* Obsah průvodce po rozbalení */
.pk-guide__content{
  margin-top: 8px;
  padding-top: 16px;
}


.pk-guide details[open] .pk-guide__content{
  border-top: 1px solid #f2e8e2;            /* změna: #eef3f8 → brand světlá béžová */
  margin-top: 18px;
}


/* Kroky uvnitř průvodce (používá existující ol.pk-steps) */
.pk-guide ol.pk-steps{
  --num-size: 26px;
  --num-gap: 12px;
  margin: 0;
}


/* V průvodci zrušíme levé odsazení u celé <li> — obsah jde na plnou šířku.
   Číslo zůstane absolutně pozicované v levém horním rohu kroku, nadpis
   dostane prostor vedle něj přes padding-left. */
.pk-guide ol.pk-steps > li{
  margin: 0 0 28px;
  padding-top: 2px;
  padding-left: 0;
  min-height: 0;
}


.pk-guide ol.pk-steps > li:last-child{
  margin-bottom: 0;
}


/* Fix: opticky vycentrovat kolečko s číslem ke středu textu nadpisu */
.pk-guide ol.pk-steps > li::before{
  top: 2px;
}


.pk-guide__stepTitle{
  margin: 0 0 8px;
  padding-left: calc(var(--num-size, 26px) + var(--num-gap, 12px));
  min-height: var(--num-size, 26px);
  display: flex;
  align-items: center;
  color: #7a2e00;                           /* změna: #0f405d → brand hnědá */
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}


.pk-guide__stepLead{
  margin: 0 0 12px;
  color: #7a2e00;                           /* změna: #0f405d → brand hnědá */
  line-height: 1.65;
}


/* Mezery mezi komponenty uvnitř kroku */
.pk-guide ol.pk-steps > li .table-wrap{
  margin: 12px 0 6px;
}


.pk-guide ol.pk-steps > li .pk-tip{
  margin: 12px 0 0;
}


.pk-guide ol.pk-steps > li .pk-bullets--dot{
  margin: 8px 0 0;
}


.pk-guide ol.pk-steps > li .pk-compare{
  margin: 12px 0 6px;
}


/* Tip uvnitř průvodce */
.pk-tip{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
  padding: 14px 16px;
  background: #fffaf7;                      /* změna: #ecf6fd → brand světlá oranžová (jako tip-note) */
  color: #7a2e00;                           /* změna: #0f405d → brand hnědá */
  border-radius: 3px;
  line-height: 1.55;
  font-size: 14px;
}


.pk-tip__icon{
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1.3;
}


.pk-tip__text{
  flex: 1 1 auto;
}


.pk-tip__text strong{
  color: #7a2e00;                           /* změna: #0f405d → brand hnědá */
  font-weight: 700;
}


.pk-tip a{
  color: #ff660e;                           /* změna: #239ceb → brand oranžová */
  text-decoration: underline;
  text-underline-offset: 2px;
}


.pk-tip a:hover{
  color: #7a2e00;                           /* změna: #0f405d → brand hnědá */
}


/* Mobil */
@media (max-width: 640px){
  .pk-guide{
    padding: 14px 10px;
    text-align: left;
  }


  .pk-guide,
  .pk-guide p,
  .pk-guide li,
  .pk-guide td,
  .pk-guide th,
  .pk-guide h2,
  .pk-guide h3,
  .pk-guide h4{
    text-align: left !important;
  }


  .pk-guide__title{
    font-size: 22px;
    text-align: left !important;
  }


  .pk-guide__intro{
    font-size: 14px;
    line-height: 1.6;
  }


  .pk-guide__stepTitle{
    font-size: 15px;
    text-align: left !important;
    padding-left: 32px;
    min-height: 22px;
  }


  .pk-guide ol.pk-steps{
    --num-size: 22px;
    --num-gap: 10px;
  }


  .pk-guide ol.pk-steps > li::before{
    width: 22px;
    height: 22px;
    font-size: 12px;
    top: 1px;
  }


  .pk-guide__stepLead{
    font-size: 14px;
    line-height: 1.6;
  }


  .pk-guide details > summary{
    width: 100%;
    justify-content: center;
  }


  /* Sjednocení velikosti běžného textu uvnitř průvodce na 14 px */
  .pk-guide ol.pk-steps > li{
    font-size: 14px;
    line-height: 1.6;
  }


  .pk-guide ol.pk-steps > li .pk-bullets--dot,
  .pk-guide ol.pk-steps > li .pk-bullets--dot li{
    font-size: 14px;
    line-height: 1.6;
  }


  .pk-guide .pk-compare__text,
  .pk-guide .pk-compare__title{
    font-size: 14px;
    line-height: 1.5;
  }


  .pk-guide .pk-compare__title{
    font-weight: 700;
  }


  .pk-guide .pk-tip,
  .pk-guide .pk-tip__text{
    font-size: 14px;
    line-height: 1.55;
  }


  .pk-guide .ui-table thead th,
  .pk-guide .ui-table tbody td{
    font-size: 14px;
    line-height: 1.5;
  }


  .pk-guide .table-mobile-cards .ui-table tbody td{
    font-size: 14px;
  }
}










/* === Trust box s USP === */


.trust-box-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: #fffaf7;                /* změna: #ecf6fd → brand světlá oranžová */
  border-radius: 10px;
  box-sizing: border-box;
}


.trust-box-text {
  font-size: 14px;
  line-height: 1.75;
  color: #7a2e00;                     /* změna: #0f405d → brand hnědá */
  margin: 0 0 1.5rem;
}


.trust-box-text strong {
  font-weight: 700;
}


.trust-box-usps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #d9c4b8;      /* změna: #c2dff0 → brand béžová */
  padding-top: 1.25rem;
}


.trust-box-usp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  gap: 10px;
}


/* Čáry pouze na desktopu */
.trust-box-usp + .trust-box-usp {
  border-left: 1px solid #d9c4b8;     /* změna: #c2dff0 → brand béžová */
}


.trust-box-usp-icon {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Obrázkové ikony (PNG, JPG, SVG) */
.trust-box-usp-icon img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  display: block;
}


.trust-box-usp-label {
  font-size: 12px;
  font-weight: 500;
  color: #7a2e00;                     /* změna: #0f405d → brand hnědá */
  line-height: 1.4;
  text-align: center;
}


/* Přebije text-align:left z .category__secondDescription * */
.category__secondDescription .trust-box-usp-label {
  text-align: center !important;
}


/* Tablet – 3 sloupce, bez čar */
@media (max-width: 760px) {
  .trust-box-usps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.5rem;
  }
  .trust-box-usp + .trust-box-usp {
    border-left: none;
  }
}


/* Mobil – 2 sloupce, bez čar */
@media (max-width: 480px) {
  .trust-box-wrap {
    padding: 1.25rem;
    border-radius: 8px;
  }
  .trust-box-text {
    font-size: 13px;
  }
  .trust-box-usps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }
  .trust-box-usp + .trust-box-usp {
    border-left: none;
  }
  .trust-box-usp-icon {
    height: 36px;
  }
  .trust-box-usp-label {
    font-size: 11.5px;
  }
}














/* === PEREX === */








.article-perex {
    margin: 0 0 36px;
    padding: 10px 0 2px;
    border-top: 3px solid #d9c4b8;
    max-width: 920px;
    color: #7a2e00;
}








.article-perex p,
.article-perex span,
.article-perex li,
.article-perex em {
    font-weight: 400 !important;
    text-shadow: 0 0 0 currentColor;
}








.article-perex p {
    margin: 0;
    font-size: inherit;
    line-height: 1.8;
    color: inherit;
}








.article-perex p + p {
    margin-top: 12px;
}








/* upravený tučný text */
.article-perex strong,
.article-perex strong *,
.article-perex b,
.article-perex b * {
    font-weight: 700 !important;
    color: inherit !important;
    text-shadow: none !important;
    font-synthesis: none;
}








.article-perex a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}








/* === RESET pro přehled článků / miniatury === */








.news-item .article-perex,
.news-list .article-perex,
.blog-homepage .article-perex,
.news-wrapper .article-perex {
    margin: 0;
    padding: 0;
    border: 0;
    max-width: none;
    color: inherit !important;
}








.news-item .article-perex,
.news-item .article-perex p,
.news-item .article-perex span,
.news-list .article-perex,
.news-list .article-perex p,
.news-list .article-perex span,
.blog-homepage .article-perex,
.blog-homepage .article-perex p,
.blog-homepage .article-perex span,
.news-wrapper .article-perex,
.news-wrapper .article-perex p,
.news-wrapper .article-perex span {
    font-weight: inherit !important;
    color: inherit !important;
    line-height: inherit;
    font-size: inherit;
    margin: 0;
}








.news-item .article-perex strong,
.news-list .article-perex strong,
.blog-homepage .article-perex strong,
.news-wrapper .article-perex strong,
.news-item .article-perex b,
.news-list .article-perex b,
.blog-homepage .article-perex b,
.news-wrapper .article-perex b,
.news-item .article-perex a,
.news-list .article-perex a,
.blog-homepage .article-perex a,
.news-wrapper .article-perex a {
    color: inherit;
}








/* === Mobile === */








@media (max-width: 767px) {
    .article-perex {
        margin-bottom: 28px;
        padding-top: 14px;
    }








    .article-perex p {
        line-height: 1.7;
    }
}




/* === Zdroje === */




.pk-sources{
  margin-top:40px;
  padding:20px 24px;
  background:#fffaf7;
  border:1px solid #d0b2a3;
  border-radius:6px;
}




.pk-sources__title{
  margin:0 0 14px;
  color:#7a2e00;
  font-size:clamp(28px, 3vw, 36px);
  line-height:1.2;
  font-weight:700;
}




.pk-sources__list{
  --pk:#ff660e;
  --lh:1.7;
  --dot:8px;
  --dot-gap:10px;
  --dot-offset:0px;




  list-style:none;
  margin:0;
  padding:0;
}




.pk-sources__list li{
  position:relative;
  margin:0;
  padding-top:12px;
  padding-bottom:12px;
  padding-left:calc(var(--dot) + var(--dot-gap));
  border:0;
  line-height:var(--lh);
}




.pk-sources__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:calc(12px + (1em * var(--lh) - var(--dot)) / 2 + var(--dot-offset));
  width:var(--dot);
  height:var(--dot);
  border-radius:50%;
  background:var(--pk);
}




.pk-sources__list li + li{
  border-top:1px solid rgba(122, 46, 0, 0.10);
}




.pk-sources__text{
  min-width:0;
  color:#554d49;
  font-size:15px;
  line-height:1.7;
}




.pk-sources__text a{
  color:#ff660e;
  text-decoration:underline;
  text-underline-offset:2px;
  word-break:break-word;
  overflow-wrap:anywhere;
}




.pk-sources__text a:hover,
.pk-sources__text a:focus-visible{
  color:#7a2e00;
  outline:none;
}




.pk-sources__text em{
  font-style:italic;
  color:#554d49;
}




@media (max-width: 767px){
  .pk-sources{
    padding:16px;
    background:#fffaf7;
  }




  .pk-sources__title{
    font-size:30px;
  }




  .pk-sources__text{
    font-size:14px;
  }




  .pk-sources__list li{
    padding-top:10px;
    padding-bottom:10px;
    padding-left:calc(var(--dot) + var(--dot-gap));
  }




  .pk-sources__list li::before{
    top:calc(10px + (1em * var(--lh) - var(--dot)) / 2 + var(--dot-offset));
  }
}




/* === Citace === */




.pk-quote {
  margin: 32px 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid #d9c4b8;
}




.pk-quote p {
  margin: 0;
  font-size: inherit;
  line-height: 1.8;
  font-style: italic;
  color: #554d49;
}




.pk-quote footer {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #7a6d66;
}




.pk-quote strong,
.pk-quote b {
  font-weight: 600;
  color: inherit;
}




.pk-quote a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}




@media (max-width: 767px) {
  .pk-quote {
    margin: 24px 0;
    padding-left: 14px;
  }




  .pk-quote footer {
    font-size: 13px;
  }
}
















/* === Medailonek autora === */




:root{
  --bd:#d0b2a3;
  --t:#7a2e00;
  --m:#59514e;




  --strip:10px;
  --left:230px;
  --gap:26px;




  --authorMax: 840px;
  --quoteMax: 640px;




  --stripeColor:#ff660e;
  --dividerColor:#d0b2a3;
  --quoteMarkColor:#ff660e;
}




.author-card{
  position:relative;
  overflow:hidden;
  padding:22px 14px 16px 18px;
  background:#fffaf7;
  border:1px solid var(--bd);
  border-radius:6px;
  box-shadow:none;




  width:100%;
  max-width:var(--authorMax);
  margin-inline:auto;
}




.author-card:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:var(--strip);
  pointer-events:none;
  background:linear-gradient(
    90deg,
    rgba(255,102,14,.85),
    rgba(255,102,14,.55) 45%,
    rgba(255,102,14,.20) 70%,
    rgba(255,102,14,0) 100%
  );
  z-index:0;
}




.author-card__stripe{display:none}




.author-card__inner{
  position:relative;
  z-index:1;
  padding:0 24px 0 20px;
  display:grid;
  grid-template-columns:max-content 1fr;
  gap:var(--gap);
  align-items:start;
}




.author-card__inner:before{
  content:"";
  position:absolute;
  top:14px;
  bottom:14px;
  left:calc(var(--left) + var(--gap));
  width:2px;
  border-radius:0;
  background:rgba(208,178,163,.7);
}




.author-card__left{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
  text-align:center;
  max-width:var(--left);
}




.author-card__meta{
  width:100%;
  overflow-wrap:anywhere;
}




.author-card__avatar{
  width:116px;
  height:116px;
  border-radius:999px;
  overflow:hidden;
  background:#fff;
  border:0;
  box-shadow:none;
}




/* neprůstřelný kruh + žádná deformace */
.author-card__avatar img{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  display:block !important;
  object-fit:cover !important;
  object-position:center !important;
  border-radius:999px !important;
}




.author-card__quote{
  position:relative;
  padding:34px 0 4px 22px;
  line-height:1.6;
  max-width:var(--quoteMax);
}




.author-card__quote:before{
  content:"“";
  position:absolute;
  left:22px;
  top:6px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:54px;
  line-height:1;
  color:var(--quoteMarkColor);
  opacity:.22;
}




.author-card__quote p{
  margin:0;
  font-style:italic;
  font-size:13.5px;
  color:#59514e;
}




.author-card__name{
  font-weight:700;
  color:#7a2e00;
  font-size:16px;
  white-space:normal;
  overflow-wrap:anywhere;
}




.author-card__role{
  margin-top:0;
  color:#706762;
  font-size:13px;
  line-height:1.35;
  white-space:normal;
  overflow-wrap:anywhere;
}




/* === MOBIL: přeskládání na sloupec (avatar -> jméno -> role -> citace) === */
@media (max-width:520px){
  :root{
    --gap:14px;
    --quoteMax:100%;
  }




  .author-card{
    padding:14px;
    max-width:100%;
  }




  .author-card:before{width:6px}




  .author-card__inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:0 12px;
    gap:10px;
  }




  .author-card__inner:before{display:none}




  .author-card__left{
    max-width:100%;
    width:100%;
    align-items:center;
    text-align:center;
    gap:8px;
  }




  .author-card__avatar{
    width:78px;
    height:78px;
  }




  .author-card__meta{
    width:100%;
  }




  .author-card__name{
    white-space:normal;
  }




  .author-card__quote{
    width:100%;
    max-width:100%;
    padding:22px 0 0 0;
    text-align:left;
  }




  .author-card__quote:before{
    left:0;
    top:0;
    font-size:46px;
  }
}