/* =========================================
   HORAL BLOG ARTICLE DETAIL
   kompletní CSS pro článek /blog
   Emersion safe verze
========================================= */

/* 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 !important;
  color:#0f1511 !important;
  font-family:ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  overflow-x:hidden !important;
}

#hh-article,
#hh-article *{
  box-sizing:border-box !important;
}

#hh-article a{
  color:inherit;
}

/* ŠÍŘKA OBSAHU */
#hh-article .hh-articleWrap{
  width:100% !important;
  max-width:1120px !important;
  margin:0 auto !important;
  padding:0 18px !important;
}

/* =========================================
   HERO
========================================= */

#hh-article .hh-articleHero{
  position:relative !important;
  overflow:hidden !important;
  background:#0f1511 !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:0 !important;
}

#hh-article .hh-articleHero img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:clamp(540px, 74vh, 820px) !important;
  object-fit:cover !important;
  object-position:center !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  transform:scale(1.01) !important;
}

#hh-article .hh-articleHero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background:linear-gradient(
    90deg,
    rgba(10,14,12,.54) 0%,
    rgba(10,14,12,.30) 44%,
    rgba(10,14,12,.10) 100%
  ) !important;
  pointer-events:none !important;
}

#hh-article .hh-articleHero__content{
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  display:flex !important;
  justify-content:flex-start !important;
  align-items:flex-end !important;
  padding-left:clamp(16px, 3vw, 48px) !important;
  padding-right:16px !important;
  padding-bottom:clamp(18px, 6vh, 72px) !important;
}

#hh-article .hh-articleHero__box{
  width:auto !important;
  max-width:820px !important;
  background:rgba(10,14,12,.64) !important;
  backdrop-filter:blur(10px) !important;
  -webkit-backdrop-filter:blur(10px) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:0 28px 28px 0 !important;
  padding:clamp(32px, 4vw, 54px) !important;
  color:#fff !important;
  box-shadow:0 30px 70px rgba(0,0,0,.35) !important;
}

#hh-article .hh-articleHero__kicker{
  display:inline-flex !important;
  align-items:center !important;
  padding:.45rem .9rem !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.08) !important;
  font-size:.95rem !important;
  line-height:1.2 !important;
  color:#fff !important;
}

#hh-article .hh-articleHero__title{
  display:block !important;
  margin:.95rem 0 1.05rem !important;
  padding:0 !important;
  line-height:1.02 !important;
  font-size:clamp(2.1rem, 4.7vw, 3.65rem) !important;
  font-weight:800 !important;
  letter-spacing:-.02em !important;
  color:#fff !important;
  text-shadow:0 14px 34px rgba(0,0,0,.25) !important;
}

#hh-article .hh-articleHero__lead{
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  color:rgba(255,255,255,.94) !important;
  font-size:1.08rem !important;
  line-height:1.65 !important;
  max-width:66ch !important;
}

#hh-article .hh-articleHero__cta{
  margin-top:1.25rem !important;
  display:flex !important;
  gap:.9rem !important;
  flex-wrap:wrap !important;
  align-items:center !important;
}

#hh-article .hh-articleHero__chips{
  margin-top:16px !important;
  display:flex !important;
  gap:10px !important;
  flex-wrap:wrap !important;
}

#hh-article .hh-articleHero__chips span{
  display:inline-flex !important;
  padding:.35rem .65rem !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:rgba(255,255,255,.08) !important;
  color:rgba(255,255,255,.92) !important;
  font-size:.9rem !important;
  line-height:1.25 !important;
}

/* =========================================
   BUTTONS / LINKS
========================================= */

#hh-article .hh-articleBtn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:.95rem 1.15rem !important;
  font-weight:600 !important;
  border-radius:12px !important;
  text-decoration:none !important;
  line-height:1 !important;
  transition:transform .18s ease, background .18s ease, border-color .18s ease !important;
  cursor:pointer !important;
}

#hh-article .hh-articleBtn:hover{
  transform:translateY(-1px) !important;
  text-decoration:none !important;
}

#hh-article .hh-articleBtn--primary{
  background:#fff !important;
  color:#0f1511 !important;
  border:1px solid rgba(255,255,255,.35) !important;
}

#hh-article .hh-articleBtn--outline{
  background:transparent !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.35) !important;
}

#hh-article .hh-articleBtn--dark{
  background:#0f1511 !important;
  color:#fff !important;
  border:1px solid #0f1511 !important;
}

#hh-article .hh-articleBtn--primaryDark{
  background:#fff !important;
  color:#0f1511 !important;
  border:1px solid rgba(255,255,255,.35) !important;
}

#hh-article .hh-articleBtn--light{
  background:transparent !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.35) !important;
}

#hh-article .hh-articleLink{
  display:inline-flex !important;
  align-items:center !important;
  color:rgba(15,21,17,.85) !important;
  font-weight:600 !important;
  text-decoration:underline !important;
  text-underline-offset:3px !important;
}

/* =========================================
   ARTICLE BODY
========================================= */

#hh-article .hh-articleBody{
  width:100% !important;
  padding:clamp(48px, 5.8vw, 96px) 0 !important;
  background:#F6F4EF !important;
}

/* DŮLEŽITÉ: obsah článku jako bílá karta */
#hh-article .hh-articleContent{
  width:100% !important;
  max-width:920px !important;
  margin:0 auto !important;
  background:#fff !important;
  border:1px solid rgba(15,21,17,.10) !important;
  border-radius:28px !important;
  padding:clamp(30px, 4.8vw, 68px) !important;
  box-shadow:0 24px 60px rgba(0,0,0,.065) !important;
  overflow:hidden !important;
}

/* klasický text držet užší */
#hh-article .hh-articleContent > p,
#hh-article .hh-articleContent > h2,
#hh-article .hh-articleContent > h3,
#hh-article .hh-articleContent > .hh-articleLead,
#hh-article .hh-articleContent > .hh-articleSmallText{
  max-width:760px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* široké prvky uvnitř karty */
#hh-article .hh-articleMeta,
#hh-article .hh-articleHighlight,
#hh-article .hh-articleSectionBox,
#hh-article .hh-articleInfoBox,
#hh-article .hh-articleCards,
#hh-article .hh-articleNote,
#hh-article .hh-articlePhoto,
#hh-article .hh-articlePhotoGrid,
#hh-article .hh-articleTableWrap{
  max-width:100% !important;
}

/* meta štítky */
#hh-article .hh-articleMeta{
  display:flex !important;
  gap:8px !important;
  flex-wrap:wrap !important;
  margin:0 0 22px !important;
  padding:0 !important;
}

#hh-article .hh-articleMeta span{
  display:inline-flex !important;
  padding:.38rem .72rem !important;
  border-radius:999px !important;
  background:rgba(246,244,239,.95) !important;
  border:1px solid rgba(15,21,17,.08) !important;
  color:rgba(15,21,17,.68) !important;
  font-size:.86rem !important;
  line-height:1.2 !important;
}

#hh-article .hh-articleLead{
  margin-top:0 !important;
  margin-bottom:34px !important;
  color:rgba(15,21,17,.82) !important;
  line-height:1.78 !important;
  font-size:clamp(1.08rem, 1.4vw, 1.18rem) !important;
}

#hh-article .hh-articleContent h2{
  display:block !important;
  margin-top:42px !important;
  margin-bottom:14px !important;
  padding:0 !important;
  font-size:clamp(1.65rem, 2.5vw, 2.2rem) !important;
  line-height:1.16 !important;
  letter-spacing:-.015em !important;
  color:#0f1511 !important;
  font-weight:800 !important;
}

#hh-article .hh-articleContent h3{
  display:block !important;
  margin:0 0 10px !important;
  padding:0 !important;
  font-size:1.18rem !important;
  line-height:1.22 !important;
  color:#0f1511 !important;
  font-weight:800 !important;
}

#hh-article .hh-articleContent p{
  display:block !important;
  margin-top:0 !important;
  margin-bottom:18px !important;
  padding:0 !important;
  color:rgba(15,21,17,.72) !important;
  line-height:1.78 !important;
  font-size:1.04rem !important;
}

#hh-article .hh-articleKicker{
  display:block !important;
  letter-spacing:.18em !important;
  text-transform:uppercase !important;
  font-size:.76rem !important;
  line-height:1.35 !important;
  color:rgba(15,21,17,.55) !important;
  margin:0 0 10px !important;
  padding:0 !important;
}

/* =========================================
   HIGHLIGHT / SECTION / INFO BOX
========================================= */

#hh-article .hh-articleHighlight,
#hh-article .hh-articleSectionBox,
#hh-article .hh-articleInfoBox{
  display:block !important;
  width:100% !important;
  margin:38px 0 !important;
  padding:clamp(24px, 3.5vw, 42px) !important;
  background:#F6F4EF !important;
  border:1px solid rgba(15,21,17,.10) !important;
  border-radius:26px !important;
  clear:both !important;
}

#hh-article .hh-articleHighlight h2,
#hh-article .hh-articleSectionBox h2,
#hh-article .hh-articleInfoBox h2{
  max-width:none !important;
  margin:0 0 12px !important;
}

#hh-article .hh-articleHighlight p,
#hh-article .hh-articleSectionBox p,
#hh-article .hh-articleInfoBox p{
  max-width:none !important;
}

#hh-article .hh-articleHighlight__actions,
#hh-article .hh-articleInfoBox__actions{
  display:flex !important;
  gap:14px !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  margin-top:22px !important;
}

/* =========================================
   TABULKA AKCÍ
========================================= */

#hh-article .hh-articleTableWrap{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:28px 0 22px !important;
  overflow-x:auto !important;
  -webkit-overflow-scrolling:touch !important;
  border-radius:22px !important;
  border:1px solid rgba(15,21,17,.10) !important;
  background:#fff !important;
  box-shadow:0 14px 34px rgba(0,0,0,.045) !important;
}

#hh-article .hh-articleEventTable{
  width:100% !important;
  min-width:720px !important;
  border-collapse:separate !important;
  border-spacing:0 !important;
  background:#fff !important;
  color:#0f1511 !important;
  font-size:.98rem !important;
  line-height:1.55 !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
}

#hh-article .hh-articleEventTable thead,
#hh-article .hh-articleEventTable tbody,
#hh-article .hh-articleEventTable tr{
  border:0 !important;
  background:transparent !important;
}

#hh-article .hh-articleEventTable th,
#hh-article .hh-articleEventTable td{
  text-align:left !important;
  vertical-align:top !important;
  padding:18px 18px !important;
  border:0 !important;
  border-bottom:1px solid rgba(15,21,17,.08) !important;
  background:transparent !important;
}

#hh-article .hh-articleEventTable th{
  background:#F6F4EF !important;
  color:rgba(15,21,17,.72) !important;
  font-size:.78rem !important;
  line-height:1.35 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase !important;
  font-weight:700 !important;
}

#hh-article .hh-articleEventTable td{
  color:rgba(15,21,17,.72) !important;
  font-size:.98rem !important;
  line-height:1.55 !important;
}

#hh-article .hh-articleEventTable td:first-child{
  width:24% !important;
  color:rgba(15,21,17,.86) !important;
  font-weight:700 !important;
}

#hh-article .hh-articleEventTable td:nth-child(2){
  width:30% !important;
  color:#0f1511 !important;
  font-weight:700 !important;
}

#hh-article .hh-articleEventTable tr:last-child td{
  border-bottom:0 !important;
}

#hh-article .hh-articleSmallText{
  display:block !important;
  margin-top:18px !important;
  margin-bottom:0 !important;
  color:rgba(15,21,17,.58) !important;
  font-size:.94rem !important;
  line-height:1.7 !important;
}

/* =========================================
   MINI CARDS / TRIP CARDS
========================================= */

#hh-article .hh-articleTripGrid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:14px !important;
  margin-top:24px !important;
}

#hh-article .hh-articleTripCard{
  background:#fff !important;
  border:1px solid rgba(15,21,17,.10) !important;
  border-radius:20px !important;
  padding:20px !important;
  box-shadow:0 12px 28px rgba(0,0,0,.045) !important;
}

#hh-article .hh-articleTripCard p{
  margin:0 !important;
  font-size:.98rem !important;
  line-height:1.65 !important;
}

#hh-article .hh-articleCards{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:14px !important;
  margin:26px 0 38px !important;
}

#hh-article .hh-articleMiniCard{
  background:#F6F4EF !important;
  border:1px solid rgba(15,21,17,.10) !important;
  border-radius:20px !important;
  padding:20px !important;
}

#hh-article .hh-articleMiniCard p{
  margin:0 !important;
  font-size:.98rem !important;
  line-height:1.65 !important;
}

/* =========================================
   NOTE
========================================= */

#hh-article .hh-articleNote{
  display:block !important;
  width:100% !important;
  margin:36px 0 0 !important;
  padding:24px !important;
  background:rgba(15,21,17,.04) !important;
  border:1px solid rgba(15,21,17,.10) !important;
  border-radius:22px !important;
}

#hh-article .hh-articleNote__kicker{
  letter-spacing:.18em !important;
  text-transform:uppercase !important;
  font-size:.74rem !important;
  color:rgba(15,21,17,.55) !important;
  margin-bottom:8px !important;
}

#hh-article .hh-articleNote__title{
  font-weight:800 !important;
  font-size:1.18rem !important;
  margin-bottom:6px !important;
  color:#0f1511 !important;
}

#hh-article .hh-articleNote p{
  margin:0 !important;
}

/* =========================================
   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;
}

#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;
}

#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;
}

/* =========================================
   CTA
========================================= */

#hh-article .hh-articleCta{
  width:100% !important;
  padding:clamp(52px, 6vw, 96px) 0 !important;
  background:#0f1511 !important;
  color:#fff !important;
}

#hh-article .hh-articleCta__inner{
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) auto !important;
  gap:clamp(24px, 4vw, 58px) !important;
  align-items:center !important;
}

#hh-article .hh-articleCta__kicker{
  letter-spacing:.18em !important;
  text-transform:uppercase !important;
  font-size:.78rem !important;
  color:rgba(255,255,255,.62) !important;
  margin-bottom:12px !important;
}

#hh-article .hh-articleCta__title{
  margin:0 0 12px !important;
  max-width:840px !important;
  font-size:clamp(1.9rem, 3vw, 2.75rem) !important;
  line-height:1.13 !important;
  letter-spacing:-.02em !important;
  color:#fff !important;
  font-weight:800 !important;
}

#hh-article .hh-articleCta__text{
  margin:0 !important;
  max-width:760px !important;
  color:rgba(255,255,255,.76) !important;
  line-height:1.7 !important;
  font-size:1.05rem !important;
}

#hh-article .hh-articleCta__actions{
  display:flex !important;
  gap:12px !important;
  flex-wrap:wrap !important;
  justify-content:flex-end !important;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:980px){
  #hh-article .hh-articleCta__inner{
    grid-template-columns:1fr !important;
  }

  #hh-article .hh-articleCta__actions{
    justify-content:flex-start !important;
  }
}

@media (max-width:900px){
  #hh-article .hh-articleTripGrid,
  #hh-article .hh-articleCards{
    grid-template-columns:1fr !important;
  }

  #hh-article .hh-articleContent{
    border-radius:24px !important;
    padding:28px 22px !important;
  }
}

@media (max-width:768px){
  #hh-article .hh-articleHero{
    background:#0f1511 !important;
  }

  #hh-article .hh-articleHero::before{
    display:none !important;
  }

  #hh-article .hh-articleHero img{
    height:420px !important;
    transform:none !important;
  }

  #hh-article .hh-articleHero__content{
    position:relative !important;
    inset:auto !important;
    display:block !important;
    padding:0 !important;
  }

  #hh-article .hh-articleHero__box{
    width:auto !important;
    max-width:none !important;
    border-radius:22px !important;
    background:#0f1511 !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    margin:-30px 16px 0 16px !important;
    padding:26px 22px !important;
  }

  #hh-article .hh-articlePhotoGrid{
    grid-template-columns:1fr !important;
  }

  #hh-article .hh-articlePhoto img,
  #hh-article .hh-articlePhotoGrid .hh-articlePhoto img{
    height:280px !important;
  }

  #hh-article .hh-articleTableWrap{
    margin-left:0 !important;
    margin-right:0 !important;
  }

  #hh-article .hh-articleEventTable{
    min-width:640px !important;
    font-size:.94rem !important;
  }

  #hh-article .hh-articleEventTable th,
  #hh-article .hh-articleEventTable td{
    padding:15px 14px !important;
  }
}

@media (max-width:520px){
  #hh-article .hh-articleWrap{
    padding:0 16px !important;
  }

  #hh-article .hh-articleHero__title{
    font-size:2rem !important;
  }

  #hh-article .hh-articleHero__lead{
    font-size:1rem !important;
  }

  #hh-article .hh-articleHero__cta,
  #hh-article .hh-articleHighlight__actions,
  #hh-article .hh-articleInfoBox__actions,
  #hh-article .hh-articleCta__actions{
    align-items:stretch !important;
  }

  #hh-article .hh-articleBtn{
    width:100% !important;
  }

  #hh-article .hh-articleHero__chips span{
    width:100% !important;
    justify-content:center !important;
  }

  #hh-article .hh-articleHighlight,
  #hh-article .hh-articleSectionBox,
  #hh-article .hh-articleInfoBox{
    padding:22px 18px !important;
  }

  #hh-article .hh-articleContent{
    padding:26px 18px !important;
  }

  #hh-article .hh-articleEventTable{
    min-width:600px !important;
  }
}
/* Generate 0.000734 second */