/* ============================= */
/* ALNA BLOG - VÝPIS ČLÁNKŮ */
/* ============================= */

/* celá stránka blogu */
.content-inner:has(a[href*="/nase-novinky/"]) {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 80px;
}

/* breadcrumb trochu jemnější */
.content-inner:has(a[href*="/nase-novinky/"]) .breadcrumbs,
.content-inner:has(a[href*="/nase-novinky/"]) .breadcrumb,
.content-inner:has(a[href*="/nase-novinky/"]) .navigation-home-icon-wrapper {
  color: rgba(80, 94, 44, 0.55);
}

/* hlavní nadpis Blog */
.content-inner:has(a[href*="/nase-novinky/"]) > h1 {
  color: #505E2C;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.15;
  margin: 42px 0 34px;
}

/* odkazy článků jako kartičky */
.content-inner:has(a[href*="/nase-novinky/"]) a[href*="/nase-novinky/"] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 145px;
  margin: 0 0 28px 0;
  padding: 30px 38px;

  background: #F7F3EE;
  border: 1px solid rgba(191, 173, 157, 0.38);
  border-radius: 30px;
  box-shadow: 0 14px 34px rgba(80, 94, 44, 0.06);

  color: #505E2C !important;
  text-decoration: none !important;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  white-space: normal;

  transition: 0.25s ease;
}

/* hover efekt */
.content-inner:has(a[href*="/nase-novinky/"]) a[href*="/nase-novinky/"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(80, 94, 44, 0.11);
  background: #FBF8F4;
  color: #505E2C !important;
}

/* když Shoptet kolem nadpisů drží H2/H3, sjednotit */
.content-inner:has(a[href*="/nase-novinky/"]) h2,
.content-inner:has(a[href*="/nase-novinky/"]) h3 {
  margin: 0;
}

/* texty v článcích a recenzích vždy viditelné */
.alna-blog p,
.alna-blog-review p,
.alna-blog-reviews p {
  display: block !important;
}

/* recenze - jistota */
.alna-blog-review p {
  color: #505E2C !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

/* tablet */
@media (max-width: 991px) {
  .content-inner:has(a[href*="/nase-novinky/"]) a[href*="/nase-novinky/"] {
    width: 100%;
    min-height: 170px;
    padding: 30px 32px;
    font-size: 24px;
  }
}

/* mobil */
@media (max-width: 767px) {
  .content-inner:has(a[href*="/nase-novinky/"]) {
    padding: 0 14px 60px;
  }

  .content-inner:has(a[href*="/nase-novinky/"]) > h1 {
    font-size: 38px;
    margin: 32px 0 26px;
  }

  .content-inner:has(a[href*="/nase-novinky/"]) a[href*="/nase-novinky/"] {
    width: 100%;
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
    font-size: 22px;
  }
}