/* U03 — Rozcestník (bento sítě 4 dlaždic) */
.row.banners-row > .col-sm-4 {
  width: 100%;
}

.wg-signpost {
  padding: 0;
  margin-top: -250px;
}
.wg-signpost__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  grid-template-areas:
    "eshop degu  club"
    "eshop b2b   b2b";
  min-height: 466px;
}
.wg-tile {
  position: relative;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--wg-radius);
  overflow: hidden;
  min-height: 220px;
  text-decoration: none;
  background: var(--wg-dark);
}
.wg-tile--eshop {
  grid-area: eshop;
}
.wg-tile--degu {
  grid-area: degu;
}
.wg-tile--club {
  grid-area: club;
}
.wg-tile--b2b {
  grid-area: b2b;
}

.wg-tile__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  z-index: 0;
}
.wg-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 6, 0) 35%,
    rgba(14, 16, 6, 0.78) 100%
  );
  z-index: 1;
}
.wg-tile:hover .wg-tile__bg {
  transform: scale(1.05);
}
.wg-tile__label {
  position: relative;
  z-index: 2;
  font-family: var(--wg-font-body);
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 35px);
  line-height: 1.1;
  color: var(--wg-white);
  padding: 28px 30px;
}

@media (max-width: 767px) {
  .wg-signpost {
    margin-top: -150px;
  }

  .wg-signpost__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "eshop eshop"
      "degu  club"
      "b2b   b2b";
  }
  .wg-tile {
    min-height: 180px;
  }
}
