/* Shared policy hero — mirrors the international policy pages. */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guideline-card.animate-delay-1 { animation-delay: 0.02s; }
.guideline-card.animate-delay-2 { animation-delay: 0.04s; }
.guideline-card.animate-delay-3 { animation-delay: 0.06s; }
.guideline-card.animate-delay-4 { animation-delay: 0.08s; }
.guideline-card.animate-delay-5 { animation-delay: 0.1s; }
.guideline-card.animate-delay-6 { animation-delay: 0.12s; }

.hero-section {
  isolation: isolate;
  width: 100%;
  height: auto;
  min-height: min(58vh, 570px);
  margin-bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 22% 30%,
      rgba(91, 166, 255, 0.52),
      transparent 24rem
    ),
    radial-gradient(
      circle at 80% 64%,
      rgba(139, 92, 246, 0.45),
      transparent 23rem
    ),
    linear-gradient(
      135deg,
      rgba(18, 27, 43, 0.96),
      rgba(38, 48, 67, 0.9)
    );
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-section::before {
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  left: -12vw;
  top: -34%;
  background: radial-gradient(
    circle,
    rgba(91, 166, 255, 0.15),
    transparent 68%
  );
}

.hero-section::after {
  width: min(48vw, 680px);
  height: min(48vw, 680px);
  right: -10vw;
  bottom: -44%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.16),
    transparent 68%
  );
}

.hero-image,
.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-width: 1100px;
  padding: clamp(48px, 7vw, 88px) 6vw;
  color: #fff;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 16px;
  color: #5ba6ff;
  font-size: clamp(11px, 1.15vw, 15px);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-shadow: none;
}

.hero-subtitle {
  max-width: 820px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.75;
  text-shadow: none;
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 430px;
    margin-bottom: 34px;
  }

  .hero-content {
    padding: 58px 22px;
  }

  .hero-title {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .hero-content {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}
