.spotlight {
  --spotlight-min-height: 40rem;
  --spotlight-overlay-top: 3.5rem;
  --spotlight-overlay-right: 4.5rem;
  --spotlight-overlay-bottom: 3.5rem;
  --spotlight-overlay-left: 4.5rem;
  --spotlight-mask-strong: rgba(9, 12, 15, 0.97);
  --spotlight-mask-mid: rgba(9, 12, 15, 0.6);
  --spotlight-mask-soft: rgba(9, 12, 15, 0.28);
  --spotlight-text-color: var(--theme-heading-strong);
  --spotlight-text-shadow: var(--theme-heading-shadow, none);
  --spotlight-role-color: var(--theme-eyebrow-readable);
  --spotlight-role-shadow: none;
  background: var(--surface-ink);
  position: relative;
}

.spotlight[data-surface="canvas"] {
  --spotlight-mask-strong: rgba(252, 249, 246, 0.9);
  --spotlight-mask-mid: rgba(252, 249, 246, 0.44);
  --spotlight-mask-soft: rgba(252, 249, 246, 0.2);
}

.spotlight[data-surface="paper"] {
  --spotlight-mask-strong: rgba(245, 239, 233, 0.9);
  --spotlight-mask-mid: rgba(245, 239, 233, 0.46);
  --spotlight-mask-soft: rgba(245, 239, 233, 0.22);
}

.spotlight[data-surface="ink"] {
  --spotlight-mask-strong: rgba(9, 12, 15, 0.97);
  --spotlight-mask-mid: rgba(9, 12, 15, 0.6);
  --spotlight-mask-soft: rgba(9, 12, 15, 0.28);
  --spotlight-role-shadow: 0 1px 2px rgba(12, 15, 19, 0.22);
}

.spotlight[data-surface="blush"] {
  --spotlight-mask-strong: rgba(243, 223, 210, 0.88);
  --spotlight-mask-mid: rgba(243, 223, 210, 0.42);
  --spotlight-mask-soft: rgba(243, 223, 210, 0.2);
}

.spotlight[data-surface="glow"] {
  --spotlight-mask-strong: rgba(250, 243, 232, 0.88);
  --spotlight-mask-mid: rgba(250, 243, 232, 0.44);
  --spotlight-mask-soft: rgba(250, 243, 232, 0.22);
}

.spotlight__media-shell {
  animation: none;
  left: 50%;
  margin: 0;
  max-width: none;
  min-height: clamp(30rem, 72vw, var(--spotlight-min-height));
  overflow: hidden;
  position: relative;
  transform: translateX(-50%);
  width: 100vw;
}

.smartify-motion-ready .spotlight:not(.smartify-motion-visible) .spotlight__media-shell {
  opacity: 0;
  transform: translateX(-50%) translateY(6rem) scale(0.94);
}

.spotlight.smartify-motion-visible .spotlight__media-shell {
  animation: spotlight-media-reveal 1700ms cubic-bezier(0.18, 0.86, 0.22, 1) both;
}

@keyframes spotlight-media-reveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6rem) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@supports (width: 100dvw) {
  .spotlight__media-shell {
    width: 100dvw;
  }
}

.spotlight__media-shell::after {
  background: var(--spotlight-mask-mid);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.spotlight__image {
  display: block;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms ease;
  width: 100%;
}

.spotlight__media-shell:hover .spotlight__image,
.spotlight__media-shell:focus-within .spotlight__image {
  transform: scale(1.025);
}

.spotlight__overlay {
  display: grid;
  inset:
    clamp(1.25rem, 6vw, var(--spotlight-overlay-top))
    var(--section-rail-padding-inline)
    clamp(1.25rem, 6vw, var(--spotlight-overlay-bottom))
    var(--section-rail-padding-inline);
  margin: 0;
  place-items: center;
  position: absolute;
  z-index: 2;
}

.spotlight__overlay-inner {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-items: center;
  text-align: center;
  width: 100%;
}

.spotlight__quote,
.spotlight__name,
.spotlight__role {
  margin: 0;
}

.spotlight__quote :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
  color: var(--spotlight-text-color) !important;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 5.8vw, 5.25rem);
  font-style: italic;
  font-weight: 560;
  hyphens: none;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0;
  overflow-wrap: normal;
  text-align: center;
  text-shadow: var(--spotlight-text-shadow);
  word-break: normal;
}

.spotlight__signature {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.spotlight__signature-rule {
  background: var(--color-primary);
  display: block;
  height: 1px;
  opacity: 0.95;
  width: 4.75rem;
}

.spotlight__name {
  margin-top: 0.15rem;
}

.spotlight__name,
.spotlight__name :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
  color: var(--spotlight-text-color) !important;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: normal;
  font-weight: 640;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-shadow: var(--spotlight-text-shadow);
}

.spotlight__role {
  color: var(--spotlight-role-color);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 1.45;
  margin: 0;
  text-shadow: var(--spotlight-role-shadow);
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .spotlight__media-shell {
    min-height: clamp(28rem, 92vw, var(--spotlight-min-height));
  }

  .spotlight__quote :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
    font-size: clamp(2.35rem, 7vw, 4rem);
  }

  .spotlight__role {
    letter-spacing: 0.28em;
  }
}

@media (max-width: 767px) {
  .spotlight__overlay {
    inset: clamp(1.25rem, 6vw, 2rem);
  }

  .spotlight__overlay-inner {
    gap: 1.35rem;
  }

  .spotlight__quote :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
    font-size: clamp(2rem, 9vw, 3.05rem);
    line-height: 0.98;
  }

  .spotlight__name,
  .spotlight__name :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
    font-size: 1.35rem;
  }

  .spotlight__role {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight__media-shell,
  .spotlight__image {
    animation: none !important;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .spotlight__media-shell {
    transform: translateX(-50%);
  }
}
