/* Spotlight cards — global cursor tracking, Azul brand blues */

[data-spotlight-card] {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: clamp(240px, 28vw, 320px);
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 14px;
  border: 1px solid rgba(74, 135, 181, 0.22);
  background: rgba(10, 14, 20, 0.88);
  box-shadow:
    0 1rem 2rem -1rem rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(48, 199, 232, 0.08);
  isolation: isolate;
}

.spotlight-card__beam,
.spotlight-card__ring {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
  will-change: transform, background;
}

.spotlight-card__beam {
  width: min(400px, 140%);
  height: min(400px, 140%);
  opacity: 0.85;
}

.spotlight-card__ring {
  width: min(460px, 155%);
  height: min(460px, 155%);
  opacity: 0.72;
  filter: blur(14px);
}

.spotlight-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.spotlight-card__content p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(247, 250, 252, 0.92);
}

@media (prefers-reduced-motion: reduce) {
  .spotlight-card__beam,
  .spotlight-card__ring {
    transition: none;
  }
}
