/* About / Spotlight image section */

.op-spotlight {
  width: 100%;
  padding: 10rem 9rem;
  background: var(--white);
}

.op-spotlight__inner {
  max-width: var(--container-size-xl);
  margin: 0 auto;
}

.op-spotlight__card {
  width: 100%;
  padding: 15.2rem 13rem;
  min-height: 80rem;
  position: relative;

  background-image: var(--op-spotlight-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: stretch;

  border-radius: 0.6rem;
}

.op-spotlight__media {
  width: 100%;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0.6rem;
}

.op-spotlight__backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: var(--mask-clip);
  background-image: linear-gradient(rgb(255, 255, 255, 0.16),
      rgb(255, 255, 255, 0.16)),
    var(--op-spotlight-bg);
  background-size: 125%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.op-spotlight__backdrop::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(2.2rem) saturate(120%);
  -webkit-backdrop-filter: blur(3rem) saturate(120%);

  transform-origin: 50% 50%;

  pointer-events: none;
  z-index: 2;
}

.op-spotlight__title {
  position: relative;
  z-index: 3;

  text-align: center;
  text-transform: uppercase;

  font-family: var(--font-secondary);
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 3.6rem;
  letter-spacing: 1.04rem;
  color: #ffffff;

  transition: none;
}

.op-spotlight__media.is-scroll-active .op-spotlight__backdrop {
  opacity: 1;
}

.op-spotlight__media.is-replay-reset .op-spotlight__backdrop {
  transition: none !important;
  opacity: 0 !important;
}

.op-spotlight__replay {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  z-index: 4;
  width: 7.4rem;
  height: 2rem;
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.op-spotlight__replay-icon {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 6.3rem center;
  transform: rotate(0deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.op-spotlight__replay-label {
  position: absolute;
  top: 50%;
  right: calc(30% + 0.8rem);
  transform: translate3d(0.6rem, -50%, 0);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.12rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.op-spotlight__replay:hover .op-spotlight__replay-icon,
.op-spotlight__replay:focus-visible .op-spotlight__replay-icon {
  transform: rotate(180deg);
}

.op-spotlight__replay:hover .op-spotlight__replay-label,
.op-spotlight__replay:focus-visible .op-spotlight__replay-label {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  .op-spotlight__backdrop {
    transition: none;
  }
}

@media (max-width: 720px) {
  .op-spotlight__card {
    min-height: 41rem;
    padding: 6rem 1rem;
  }

  .op-spotlight__title {
    font-size: 1.8rem;
    line-height: 2.5rem;
    letter-spacing: 0.72rem;
    text-align: center;
  }
}