/* MSJ Candidate Spotlight V1.0.0 — MSJ Connect app */
.msj-app-candidate-spotlight {
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #07182c;
  box-shadow: var(--shadow);
}
.msj-app-candidate-copy {
  padding: 18px 18px 16px;
  background: #fff;
}
.msj-app-candidate-copy .eyebrow {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .11em;
}
.msj-app-candidate-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.msj-app-candidate-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.48;
}
.msj-app-candidate-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.msj-app-candidate-principles span {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f1f6fb;
  color: var(--navy);
  font-size: .53rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.msj-app-candidate-stage {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: 36px 14px 62px;
  background: radial-gradient(circle at 78% 22%,rgba(6,152,215,.24),transparent 34%),linear-gradient(145deg,#0d2847,#07182c 72%);
}
.msj-app-candidate-carousel {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #020b17;
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
}
.msj-app-candidate-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(7%);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.msj-app-candidate-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.msj-app-candidate-slide.leaving {
  opacity: 0;
  transform: translateX(-7%);
}
.msj-app-candidate-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #06162a;
}
.msj-app-candidate-status {
  position: absolute;
  left: 16px;
  top: 14px;
  color: rgba(255,255,255,.78);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.msj-app-candidate-status strong { color: #f4b000; }
.msj-app-candidate-controls {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.msj-app-candidate-dots { display: flex; gap: 6px; }
.msj-app-candidate-dot {
  width: 22px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.28);
}
.msj-app-candidate-dot.active { background: #f4b000; }
.msj-app-candidate-arrows { display: flex; gap: 6px; }
.msj-app-candidate-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  background: rgba(7,24,44,.78);
  color: white;
  font-size: 1rem;
}
@media (max-width: 380px) {
  .msj-app-candidate-stage { min-height: 430px; }
  .msj-app-candidate-carousel { width: min(100%, 270px); }
}
@media (prefers-reduced-motion: reduce) {
  .msj-app-candidate-slide { transition-duration: .01ms !important; }
}
