/* RAU-3208: US lexicon category hero styles extracted from CMS slot. */
.ws-container {
  font-family: Montserrat, sans-serif;
  color: #0d1231;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.ws-hero {
  position: relative;
  background: linear-gradient(135deg, #0d1231 0%, #1a3a4a 40%, #1b2d4e 100%);
  border-radius: 24px;
  padding: 80px 40px;
  margin: 20px 0 40px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.ws-hero-content {
  position: relative;
  z-index: 1;
}

.ws-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(179, 229, 252, 0.15);
  border: 1px solid rgba(179, 229, 252, 0.3);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #b3e5fc;
  margin-bottom: 24px;
}

.ws-hero-badge::before {
  content: "i";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.ws-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: 0;
}

.ws-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.ws-hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ws-ripple {
  position: absolute;
  border: 1.5px solid rgba(179, 229, 252, 0.15);
  border-radius: 50%;
  animation: rau-ripple 4s infinite cubic-bezier(.25, .46, .45, .94);
  transform: scale(.1);
  opacity: 0;
}

.ws-ripple--one {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 10%;
}

.ws-ripple--two {
  width: 500px;
  height: 500px;
  right: 5%;
  bottom: -10%;
  animation-delay: 1.5s;
}

@keyframes rau-ripple {
  0% {
    transform: scale(.1);
    opacity: 0;
  }

  10% {
    opacity: .5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-ripple {
    display: none;
  }
}

.ws-container *:focus-visible {
  outline: 3px solid #b3e5fc;
  outline-offset: 4px;
  border-radius: 4px;
}
