/* U10 — Winebar (text vlevo, obrázek vpravo) */
.in-index .banners-content.body-banners {
  margin: 0;
}

.in-index .banners-content > div {
  padding: 0;
}

.wg-winebar {
  padding: 64px 0;
  background: var(--wg-dark);
}
.wg-winebar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wg-winebar__title {
  font-family: var(--wg-font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 50px);
  line-height: 1.12;
  color: var(--wg-white);
  margin: 0 0 24px;
}
.wg-winebar__title span {
  color: var(--wg-gold);
}
.wg-winebar__lead {
  font-family: var(--wg-font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wg-white);
  margin: 0 0 28px;
}
.wg-winebar__info {
  display: grid;
  gap: 14px;
}
.wg-winebar__hours {
  font-family: var(--wg-font-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: var(--wg-white);
  margin: 0;
  white-space: pre-line;
}
.wg-winebar__hours-title,
.wg-winebar__phone-title {
  color: #c28d39;
  font-weight: 700;
}

.wg-winebar__hours-days {
  font-weight: 900;
}
.wg-winebar__phone {
  font-family: var(--wg-font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--wg-white);
  margin: 0;
  white-space: pre-line;
}
.wg-winebar__note {
  font-family: var(--wg-font-body);
  font-weight: 300;
  font-size: 17px;
  color: var(--wg-white);
  margin: 6px 0 0;
}
.wg-winebar__media {
  position: relative;
  border-radius: var(--wg-radius);
  overflow: hidden;
  min-height: 460px;
  aspect-ratio: 590 / 732;
}
.wg-winebar__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .wg-winebar__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wg-winebar__media {
    min-height: 320px;
    aspect-ratio: 1 / 0.5;
  }
}

@media (max-width: 500px) {
  .wg-winebar__media {
    min-height: 320px;
    aspect-ratio: auto;
  }
}
