/* === YUME INFO (pod hero) – stejné rozměry jako hero/product === */

/* vnější full-bleed obal */
.yume-info{
  position:relative; left:50%; right:50%;
  margin-left:-50vw; margin-right:-50vw;
  width:100vw !important; max-width:100vw !important;
  padding:72px min(4.5vw,64px);
  box-sizing:border-box; background:#fff;
}

/* vnitřní kontejner */
.yume-info__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:64px; max-width:1600px; margin:0 auto;
}

/* levý sloupec – obrázek */
.yume-info__image{ flex:1; }
.yume-info__image .img-wrap{
  border-radius:14px; overflow:hidden;
}
.yume-info__image img{
  display:block; width:100%; height:auto;
}

/* pravý sloupec – text */
.yume-info__text{ flex:1; color:var(--g); }

.yume-info__text h2{
  font-size:clamp(26px,3vw,38px);
  line-height:1.2; font-weight:800; margin:0 0 20px; color:var(--g);
}
.yume-info__text .kicker{
  font-size:18px; font-weight:800; letter-spacing:.5px; margin:0 0 26px; color:var(--g);
}
.yume-info__text p{
  font-size:16px; line-height:1.7; margin:0 0 14px; color:var(--g);
}
.yume-info__text p strong{ font-weight:800; }

/* responsive */
@media (max-width:900px){
  .yume-info{ padding:56px 5vw; }
  .yume-info__inner{ flex-direction:column; gap:28px; text-align:center; }
  .yume-info__text .kicker{ font-size:16px; }
  .yume-info__text p{ font-size:15px; }
}
/* === Úprava: odtučnění textů v info sekci === */
.yume-info__text p,
.yume-info__text p strong {
  font-weight: 400 !important;
}
.yume-info__text h2,
.yume-info__text .kicker {
  font-weight: 700 !important;
}

