/* ===========================================
   HERO SEKCE – minibanner "Dopřejte si život bez plísní"
   =========================================== */

/* Desktop zůstává jak je */
.biodeur-hero {
  text-align: center;
  background: #fff;
  font-family: "Rubik", sans-serif;
  color: #000;
}

/* ========================
   MOBILNÍ FIX: zmenšení výšky div.item.active
   ======================== */
@media (max-width: 768px) {
  /* snížení vnitřního paddingu hero */
  .biodeur-hero {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .biodeur-nadpis {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 auto 6px;
  }

  .biodeur-podnadpis {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
  }

  /* ✅ Klíčový fix: zmenšení výšky gapu */
  .item.active {
    height: auto !important;        /* odstraní pevnou výšku */
    min-height: 0 !important;       /* žádná minimální výška */
    padding-bottom: 0 !important;   /* žádné vnitřní mezery */
    margin-bottom: 0 !important;    /* žádný spodní gap */
  }

  /* Pro jistotu reset i na parent slideru */
  .banners-line,
  .banner-wrapper,
  .normal-banners-line-half-banners {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* rovná hero dolů bez přidaných marginů */
  .biodeur-hero {
    margin-bottom: 0 !important;
  }

  .biodeur-hero + * {
    margin-top: 0 !important;
  }

  /* barvy a zvýraznění textů – nezměněno */
  .biodeur-podtrzeni-plisne {
    position: relative;
    color: #019640;
  }
  .biodeur-podtrzeni-plisne::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.15em;
    height: 0.55em;
    background: #b6f5b3;
    border-radius: 0.2em;
    z-index: -1;
  }

  .biodeur-podtrzeni-vsude {
    position: relative;
    color: #000; /* černý text */
  }
  .biodeur-podtrzeni-vsude::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.15em;
    height: 0.55em;
    background: #c9f2c4;
    border-radius: 0.2em;
    z-index: -1;
  }
}
