/* =========================================
   HORAL BLOG ARTICLE DETAIL
   společné CSS pro nové články
========================================= */

/* SCHOVAT EMERSION MOTIV / ÚVODNÍ OBRÁZEK */
.wl-max.pos-r > img,
.wl-max.pos-r picture{
  display:none !important;
}

.wl-max.pos-r{
  height:0 !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  overflow:hidden !important;
}

/* SCHOVAT HORNÍ EMERSION BLOK */
.my-container,
#crumbs,
h1.section,
h1.section.tal-c{
  display:none !important;
}

/* ZÁKLAD STRÁNKY */
html,
body{
  background:#F6F4EF !important;
  margin:0 !important;
  padding:0 !important;
  overflow-x:hidden !important;
}

#content,
.content,
.container,
.wl,
.wl-max{
  background:transparent !important;
}

.content{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}

/* HLAVNÍ WRAPPER */
#hh-article.hh-article{
  position:relative !important;
  left:50% !important;
  right:50% !important;
  width:100vw !important;
  max-width:100vw !important;
  margin-left:-50vw !important;
  margin-right:-50vw !important;
  margin-top:0 !important;
  padding-top:0 !important;
  background:#F6F4EF;
  color:#0f1511;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

#hh-article,
#hh-article *{
  box-sizing:border-box;
}

#hh-article a{
  color:inherit;
}

#hh-article .hh-articleWrap{
  max-width:1120px;
  margin:0 auto;
  padding:0 18px;
}

/* HERO */

#hh-article .hh-articleHero{
  position:relative;
  overflow:hidden;
  background:#0f1511;
  left:50%;
  right:50%;
  width:100vw;
  max-width:100vw;
  margin-left:-50vw;
  margin-right:-50vw;
}

#hh-article .hh-articleHero img{
  width:100%;
  height:clamp(540px, 74vh, 820px);
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1.01);
}

#hh-article .hh-articleHero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    90deg,
    rgba(10,14,12,.52) 0%,
    rgba(10,14,12,.28) 44%,
    rgba(10,14,12,.10) 100%
  );
}

#hh-article .hh-articleHero__content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
  padding-left:clamp(16px, 3vw, 48px);
  padding-bottom:clamp(18px, 6vh, 72px);
}

#hh-article .hh-articleHero__box{
  background:rgba(10,14,12,.62);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:0 28px 28px 0;
  padding:clamp(32px, 4vw, 54px);
  max-width:820px;
  color:#fff;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}

#hh-article .hh-articleHero__kicker{
  display:inline-flex;
  align-items:center;
  padding:.45rem .9rem;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  font-size:.95rem;
  color:#fff;
}

#hh-article .hh-articleHero__title{
  margin:.95rem 0 1.05rem;
  line-height:1.02;
  font-size:clamp(2.1rem, 4.7vw, 3.65rem);
  letter-spacing:-.02em;
  color:#fff;
  text-shadow:0 14px 34px rgba(0,0,0,.25);
}

#hh-article .hh-articleHero__lead{
  margin:0;
  color:rgba(255,255,255,.94);
  font-size:1.08rem;
  line-height:1.65;
  max-width:66ch;
}

#hh-article .hh-articleHero__cta{
  margin-top:1.25rem;
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
  align-items:center;
}

#hh-article .hh-articleHero__chips{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

#hh-article .hh-articleHero__chips span{
  display:inline-flex;
  padding:.35rem .65rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.92);
  font-size:.9rem;
}

/* BUTTONS */

#hh-article .hh-articleBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.95rem 1.15rem;
  font-weight:600;
  border-radius:12px;
  text-decoration:none;
  line-height:1;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

#hh-article .hh-articleBtn:hover{
  transform:translateY(-1px);
}

#hh-article .hh-articleBtn--primary{
  background:#fff;
  color:#0f1511;
  border:1px solid rgba(255,255,255,.35);
}

#hh-article .hh-articleBtn--outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}

#hh-article .hh-articleBtn--dark{
  background:#0f1511;
  color:#fff;
  border:1px solid #0f1511;
}

#hh-article .hh-articleBtn--primaryDark{
  background:#fff;
  color:#0f1511;
  border:1px solid rgba(255,255,255,.35);
}

#hh-article .hh-articleBtn--light{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}

#hh-article .hh-articleLink{
  text-decoration:underline;
  text-underline-offset:3px;
  color:rgba(15,21,17,.85);
  font-weight:600;
}

/* ARTICLE BODY */

#hh-article .hh-articleBody{
  padding:clamp(48px, 5.8vw, 96px) 0;
  background:#F6F4EF;
}

#hh-article .hh-articleContent{
  max-width:920px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(15,21,17,.10);
  border-radius:28px;
  padding:clamp(30px, 4.8vw, 68px);
  box-shadow:0 24px 60px rgba(0,0,0,.065);
}

#hh-article .hh-articleContent > *{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

#hh-article .hh-articleMeta,
#hh-article .hh-articleHighlight,
#hh-article .hh-articleSectionBox,
#hh-article .hh-articleInfoBox,
#hh-article .hh-articleCards,
#hh-article .hh-articleNote{
  max-width:100%;
}

#hh-article .hh-articleMeta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

#hh-article .hh-articleMeta span{
  display:inline-flex;
  padding:.38rem .72rem;
  border-radius:999px;
  background:rgba(246,244,239,.95);
  border:1px solid rgba(15,21,17,.08);
  color:rgba(15,21,17,.68);
  font-size:.86rem;
}

#hh-article .hh-articleLead{
  margin:0 auto 34px;
  color:rgba(15,21,17,.82);
  line-height:1.78;
  font-size:clamp(1.08rem, 1.4vw, 1.18rem);
}

#hh-article .hh-articleContent h2{
  margin:42px auto 14px;
  font-size:clamp(1.65rem, 2.5vw, 2.2rem);
  line-height:1.16;
  letter-spacing:-.015em;
  color:#0f1511;
}

#hh-article .hh-articleContent h3{
  margin:0 0 10px;
  font-size:1.18rem;
  line-height:1.22;
  color:#0f1511;
}

#hh-article .hh-articleContent p{
  margin:0 0 18px;
  color:rgba(15,21,17,.72);
  line-height:1.78;
  font-size:1.04rem;
}

#hh-article .hh-articleKicker{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.76rem;
  color:rgba(15,21,17,.55);
  margin-bottom:10px;
}

/* HIGHLIGHT / SECTION BOX */

#hh-article .hh-articleHighlight,
#hh-article .hh-articleSectionBox,
#hh-article .hh-articleInfoBox{
  margin:38px 0;
  padding:clamp(24px, 3.5vw, 42px);
  background:#F6F4EF;
  border:1px solid rgba(15,21,17,.10);
  border-radius:26px;
}

#hh-article .hh-articleHighlight h2,
#hh-article .hh-articleSectionBox h2,
#hh-article .hh-articleInfoBox h2{
  margin:0 0 12px;
}

#hh-article .hh-articleHighlight__actions,
#hh-article .hh-articleInfoBox__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:22px;
}

/* TRIPS */

#hh-article .hh-articleTripGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:24px;
}

#hh-article .hh-articleTripCard{
  background:#fff;
  border:1px solid rgba(15,21,17,.10);
  border-radius:20px;
  padding:20px;
  box-shadow:0 12px 28px rgba(0,0,0,.045);
}

#hh-article .hh-articleTripCard p{
  margin:0;
  font-size:.98rem;
  line-height:1.65;
}

/* REASONS */

#hh-article .hh-articleReasons{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:24px;
}

#hh-article .hh-articleReason{
  background:#fff;
  border:1px solid rgba(15,21,17,.10);
  border-radius:20px;
  padding:20px;
  box-shadow:0 12px 28px rgba(0,0,0,.045);
}

#hh-article .hh-articleReason span{
  display:inline-flex;
  margin-bottom:14px;
  color:rgba(15,21,17,.44);
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}

#hh-article .hh-articleReason p{
  margin:0;
  font-size:.98rem;
  line-height:1.65;
}

/* MINI CARDS */

#hh-article .hh-articleCards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin:26px 0 38px;
}

#hh-article .hh-articleMiniCard{
  background:#F6F4EF;
  border:1px solid rgba(15,21,17,.10);
  border-radius:20px;
  padding:20px;
}

#hh-article .hh-articleMiniCard p{
  margin:0;
  font-size:.98rem;
  line-height:1.65;
}

/* NOTE */

#hh-article .hh-articleNote{
  margin:36px 0 0;
  padding:24px;
  background:rgba(15,21,17,.04);
  border:1px solid rgba(15,21,17,.10);
  border-radius:22px;
}

#hh-article .hh-articleNote__kicker{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.74rem;
  color:rgba(15,21,17,.55);
  margin-bottom:8px;
}

#hh-article .hh-articleNote__title{
  font-weight:800;
  font-size:1.18rem;
  margin-bottom:6px;
}

#hh-article .hh-articleNote p{
  margin:0;
}

/* CTA */

#hh-article .hh-articleCta{
  padding:clamp(52px, 6vw, 96px) 0;
  background:#0f1511;
  color:#fff;
}

#hh-article .hh-articleCta__inner{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:clamp(24px, 4vw, 58px);
  align-items:center;
}

#hh-article .hh-articleCta__kicker{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.78rem;
  color:rgba(255,255,255,.62);
  margin-bottom:12px;
}

#hh-article .hh-articleCta__title{
  margin:0 0 12px;
  max-width:840px;
  font-size:clamp(1.9rem, 3vw, 2.75rem);
  line-height:1.13;
  letter-spacing:-.02em;
  color:#fff;
}

#hh-article .hh-articleCta__text{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.76);
  line-height:1.7;
  font-size:1.05rem;
}

#hh-article .hh-articleCta__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* RESPONSIVE */

@media (max-width:980px){
  #hh-article .hh-articleCta__inner{
    grid-template-columns:1fr;
  }

  #hh-article .hh-articleCta__actions{
    justify-content:flex-start;
  }
}

@media (max-width:900px){
  #hh-article .hh-articleTripGrid,
  #hh-article .hh-articleCards{
    grid-template-columns:1fr;
  }

  #hh-article .hh-articleContent{
    border-radius:24px;
    padding:28px 22px;
  }
}

@media (max-width:768px){
  #hh-article .hh-articleHero__content{
    position:relative !important;
    inset:auto !important;
    display:block !important;
    padding:0 !important;
  }

  #hh-article .hh-articleHero__box{
    border-radius:22px !important;
    max-width:100% !important;
    background:#0f1511 !important;
    backdrop-filter:none !important;
    margin:-30px 16px 0 16px !important;
    padding:26px 22px !important;
  }

  #hh-article .hh-articleHero img{
    height:420px !important;
  }
}

@media (max-width:520px){
  #hh-article .hh-articleWrap{
    padding:0 16px;
  }

  #hh-article .hh-articleHero__cta,
  #hh-article .hh-articleHighlight__actions,
  #hh-article .hh-articleInfoBox__actions,
  #hh-article .hh-articleCta__actions{
    align-items:stretch;
  }

  #hh-article .hh-articleBtn{
    width:100%;
  }

  #hh-article .hh-articleHero__chips span{
    width:100%;
    justify-content:center;
  }

  #hh-article .hh-articleHighlight,
  #hh-article .hh-articleSectionBox,
  #hh-article .hh-articleInfoBox{
    padding:22px 18px;
  }
}
/* =========================================
   ARTICLE PHOTOS – EMERSION SAFE
   bez figure / figcaption
========================================= */

#hh-article .hh-articlePhoto{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:38px 0 !important;
  padding:0 !important;
  overflow:hidden !important;
  border-radius:24px !important;
  border:1px solid rgba(15,21,17,.10) !important;
  background:#fff !important;
  box-shadow:0 18px 44px rgba(0,0,0,.06) !important;
  float:none !important;
  clear:both !important;
}

#hh-article .hh-articlePhoto img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:clamp(300px, 38vw, 470px) !important;
  object-fit:cover !important;
  object-position:center !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  float:none !important;
}

#hh-article .hh-articlePhoto__caption{
  display:block !important;
  width:100% !important;
  margin:0 !important;
  padding:13px 16px 15px !important;
  background:#fff !important;
  color:rgba(15,21,17,.58) !important;
  font-size:.9rem !important;
  line-height:1.45 !important;
  border:0 !important;
  float:none !important;
}

/* dvojice fotek */

#hh-article .hh-articlePhotoGrid{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:16px !important;
  width:100% !important;
  max-width:100% !important;
  margin:38px 0 !important;
  padding:0 !important;
  float:none !important;
  clear:both !important;
}

#hh-article .hh-articlePhotoGrid .hh-articlePhoto{
  margin:0 !important;
  border-radius:22px !important;
  box-shadow:0 14px 34px rgba(0,0,0,.05) !important;
}

#hh-article .hh-articlePhotoGrid .hh-articlePhoto img{
  height:clamp(240px, 28vw, 360px) !important;
}

/* pojistka proti Emersion obrázkovým stylům */

#hh-article .hh-articlePhoto *,
#hh-article .hh-articlePhotoGrid *{
  box-sizing:border-box !important;
}

#hh-article .hh-articlePhoto a,
#hh-article .hh-articlePhotoGrid a{
  display:block !important;
  text-decoration:none !important;
}

/* mobile */

@media (max-width:760px){
  #hh-article .hh-articlePhotoGrid{
    grid-template-columns:1fr !important;
  }

  #hh-article .hh-articlePhoto img,
  #hh-article .hh-articlePhotoGrid .hh-articlePhoto img{
    height:280px !important;
  }
}
/* Generate 0.000783 second */