/* U05 — Naše služby (4 karty) */
.wg-services {
  padding: 64px 0;
}
.wg-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.wg-svc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--wg-radius);
  overflow: hidden;
  min-height: 480px;
  color: var(--wg-white);
  background: var(--wg-dark);
}
.wg-svc__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.wg-svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 6, 0) 18%,
    rgba(14, 16, 6, 0.55) 48%,
    rgba(14, 16, 6, 0.92) 100%
  );
  z-index: 1;
}
.wg-svc__body {
  position: relative;
  z-index: 2;
  padding: 26px 24px 28px;
}
.wg-svc__title {
  font-family: var(--wg-font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: white;
}
.wg-svc__text {
  font-family: var(--wg-font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
}
.wg-svc .wg-btn {
  font-size: 14px;
  padding: 12px 22px;
}

@media (max-width: 1024px) {
  .wg-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .wg-services__grid {
    grid-template-columns: 1fr;
  }
  .wg-svc {
    min-height: 420px;
  }
}
