/* ============================================
   HLAVNÍ STYLY – HEAD
   Soubor: hlavni-styly.css
   Obsah:
     1. Základní typografie a font-smoothing
     2. Kategorie blogu (obrázky, padding)
     3. Mobilní styly (padding článků, blog)
     4. Homepage – poslední příspěvky
     5. Rozšířené bannery (extended-banner)
     6. Logo – posun a stín
     7. Contact-box
============================================ */


/* ------------------------------------------
   1. ZÁKLADNÍ TYPOGRAFIE A FONT-SMOOTHING
------------------------------------------ */
p a {
    text-decoration: underline;
}

p, a, h1, h2, h3, h4, h5, h6 {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ------------------------------------------
   2. KATEGORIE BLOGU
------------------------------------------ */
.subcategories.with-image li a .image {
display: none;
}
.subcategories li a {
padding: 5px
                10px 5px 10px;
}
.subcategories.with-image li a {
padding-left: 10px;
}


/* ------------------------------------------
   3. MOBILNÍ STYLY (PADDING ČLÁNKŮ, BLOG)
------------------------------------------ */
@media (max-width: 768px) {
#content-wrapper {
    padding-left: 16px !important;
        padding-right: 16px !important;
  }
  #content-wrapper .content-inner > h1 + ul.subcategories {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #content-wrapper .content-inner > h1 + ul.subcategories li {
    width: 100% !important;
    display: block !important;
    float: none !important;
  }
}

@media (max-width: 768px) {
  .latest-contribution-review > div {
    flex-direction: column !important;
  }
}


/* ------------------------------------------
   4. HOMEPAGE – POSLEDNÍ PŘÍSPĚVKY
------------------------------------------ */
.homepage-latest-contribution .latest-contribution .latest-contribution-product {
margin-bottom: 24px  !important;
}
.latest-contribution-description {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}


/* ------------------------------------------
   5. ROZŠÍŘENÉ BANNERY (EXTENDED-BANNER)
------------------------------------------ */
.extended-banner-texts {
  align-items: center !important;
  justify-content: center !important;
  background-color: #E9F6E8 !important;
  min-width: 25% !important;
  max-width: 28% !important;
  min-height: auto !important;
  left: 32px!important;
  bottom: 30%!important;
  padding: 0px !important;
  padding-bottom: 32px !important;
  border-bottom-right-radius: 8px!important;
  border-bottom-left-radius: 8px!important;
}
.extended-banner-text {

display: inline-block !important;
justify-content: space-around !important;
margin-top:0px!important;
padding: 32px !important;
padding-bottom: 0px !important;
margin-bottom:10px!important;
    }
    .extended-banner-text h2 {
margin-top:0px!important;
font-size:28px!important;

}
@media (max-width: 990px) {
    .extended-banner-texts {
      display: none !important;
    }
}
@media (min-width: 1500px) {
.extended-banner-texts {
  align-items: center !important;
  justify-content: center !important;
  background-color: #E9F6E8 !important;
  min-width: 25% !important;
  max-width: 28% !important;
  min-height: 30% !important;
  left: 32px!important;
  bottom: 35%!important;
  padding: 0px !important;
  padding-bottom: 32px !important;
  border-bottom-right-radius: 8px!important;
  border-bottom-left-radius: 8px!important;
}
    .extended-banner-text h2 {
margin-top:0px!important;
font-size:36px!important; 
line-height: 42px;
}
    .extended-banner-text p {
font-size:22px!important; 
line-height: 30px;
}
.extended-banner-link{
font-size:22px!important;
font-size: 20px;
line-height: 24px;
}
}


/* ------------------------------------------
   6. LOGO – POSUN A STÍN
------------------------------------------ */
.site-name {
    display: inline-block;
    position: relative;
}

.site-name:hover {
    transition: transform 500ms, filter 500ms;
    transform: translateY(-2px);
    filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, 0.2));
}


/* ------------------------------------------
   7. CONTACT-BOX
------------------------------------------ */
.contact-box img {
    max-width: 94px;
}
