/* === YUME WHY – stejné rozměry jako hero/product/info === */

.yume-why{
  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;
}

.yume-why__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:64px; max-width:1600px; margin:0 auto;
}

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

/* text vpravo */
.yume-why__text{
  flex:1;
  color:var(--g);
  text-align:left;           /* ✅ změna z center na left */
  max-width:640px;
}

.yume-why__text h2{
  font-size:clamp(26px,3vw,38px);
  line-height:1.2;
  font-weight:800;
  margin:0 0 28px;
  color:var(--g);
}

.yume-why__text p{
  font-size:16px;
  line-height:1.8;
  margin:0 0 18px;
  color:var(--g);
  font-weight:400;
}

.yume-why__text p strong{ font-weight:800; }

/* responsive */
@media (max-width:900px){
  .yume-why{ padding:56px 5vw; }
  .yume-why__inner{ flex-direction:column; gap:28px; }
  .yume-why__text{ text-align:center; max-width:none; }
  .yume-why__text p{ font-size:15px; }
}
/* pro případ kotveného scrollu */
.yume-why { scroll-margin-top: var(--yume-scroll-offset, 96px); }

