/* === YUME REVIEW – reference sekce === */

.yume-review {
  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-review__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  max-width: 1600px;
  margin: 0 auto;
}

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

/* text vpravo */
.yume-review__text {
  flex: 1;
  color: var(--g);
  text-align: left;
  max-width: 640px;
}
.yume-review__text h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 28px;
  color: var(--g);
}
.yume-review__text p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: var(--g);
  font-weight: 400;
}

/* hvězdičky */
.yume-review__stars {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.yume-review__stars svg {
  width: 28px;
  height: 28px;
  fill: #EE1E9E;
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 900px) {
  .yume-review {
    padding: 56px 5vw;
  }
  .yume-review__inner {
    flex-direction: column-reverse;
    gap: 28px;
  }
  .yume-review__text {
    max-width: none;
    text-align: center;
  }
  .yume-review__stars {
    justify-content: center;
  }
}
