/* U06 — O nás (text vlevo, obrázek vpravo) */
.wg-about {
  padding: 64px 0;
}
.wg-about__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
  background: #0d0d0d;
  border-radius: var(--wg-radius);
  overflow: hidden;
}

.wg-about .wg-container {
  position: relative;
}
.wg-about__text {
  padding: 56px clamp(24px, 4vw, 64px) 100px;
}
.wg-about__kicker {
  font-family: var(--wg-font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 50px);
  line-height: 1.1;
  color: var(--wg-white);
  margin: 0 0 14px;
}
.wg-about__subtitle {
  font-family: var(--wg-font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--wg-white);
  margin: 0 0 20px;
}
.wg-about__body {
  font-family: var(--wg-font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--wg-white);
  margin: 0 0 28px;
}
.wg-about__media {
  position: relative;
  min-height: 360px;
}
.wg-about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wg-about-award {
  position: absolute;
  bottom: -80px;
  left: 104px;
}

@media (max-width: 900px) {
  .wg-about__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wg-about__media {
    min-height: 300px;
    order: -1;
  }
  .wg-about__media img {
    object-position: center top;
  }

  .wg-about-award {
    left: 30px;
  }
}

@media (max-width: 500px) {
  .wg-about__media {
    min-height: 350px;
    order: -1;
  }

  .wg-about-award {
    left: 50%;
    width: 70%;
    bottom: -20px;
    transform: translateX(-50%);
  }
}
