/* ============== HERO SOCIALS — prawy dolny róg każdego hero ============== */
.hero-socials {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.25vw, 22px);
  font-size: clamp(13px, 0.94vw, 16px);
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-socials a {
  color: var(--c-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-socials a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero-socials .social-ico {
  width: clamp(16px, 1.04vw, 20px);
  height: clamp(16px, 1.04vw, 20px);
  display: block;
  flex-shrink: 0;
  color: var(--c-white);
}

/* Spage / Wyst hero — kontenery dla socials */
.spage-hero__copy,
.wyst-hero__copy {
  position: absolute;
  right: 8.333%;
  bottom: clamp(28px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 4;
  color: var(--c-white);
}

.spage-hero {
  position: relative;
}

.wyst-hero {
  position: relative;
}

@media (max-width: 700px) {
  .hero-socials {
    font-size: 13px;
    gap: 12px;
  }
  .spage-hero__copy,
  .wyst-hero__copy {
    right: 18px;
    bottom: 18px;
  }
}
