/* U02 — Hlavní banner (hero) «Vína s příběhem» */
.row.banners-row > .col-sm-8 {
  width: 100%;
}
.wg-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.wg-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wg-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  padding: 80px 24px;
}
.wg-hero__title {
  font-family: var(--wg-font-hero);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.1;
  color: var(--wg-white);
  margin: 0 0 18px;
}
.wg-hero__title span {
  color: var(--wg-gold);
}
.wg-hero__subtitle {
  font-family: var(--wg-font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 25px);
  line-height: 1.35;
  color: var(--wg-white);
  margin: 0 auto;
  max-width: 900px;
}

@media (max-width: 767px) {
  .wg-hero {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .wg-hero {
    min-height: 420px;
  }
  .wg-hero__inner {
    padding: 56px 18px;
  }
}
