.spotlight-feature {
  background: linear-gradient(96.52deg, #007eb8 11.92%, #00aeef 53.95%, #34c9ff 78.32%);
  border-radius: 20px;
  font-family: 'Geist', Arial, sans-serif;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.spotlight-feature *,
.spotlight-feature *::before,
.spotlight-feature *::after {
  box-sizing: border-box;
}

.spotlight-feature__media {
  background: #d9d9d9;
  min-height: 215px;
  overflow: hidden;
  position: relative;
}

.spotlight-feature__iframe {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.spotlight-feature__play-button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  height: 87px;
  justify-content: center;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 77px;
  z-index: 2;
}

.spotlight-feature__play-button:hover,
.spotlight-feature__play-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
}

.spotlight-feature--playing .spotlight-feature__play-button {
  opacity: 0;
  pointer-events: none;
}

.spotlight-feature__play-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.spotlight-feature__play-icon {
  display: block;
  height: 87px;
  width: 77px;
}

.spotlight-feature__video-placeholder {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 14px;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: absolute;
  text-align: center;
}

.spotlight-feature__label {
  align-items: center;
  background: #001844;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 5px;
  color: #34c9ff;
  display: inline-flex;
  gap: 12px;
  left: 0;
  padding: 20px 28px 18px 34px;
  position: absolute;
  top: 0;
  z-index: 3;
}

.spotlight-feature__label-text {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.136px;
  line-height: 1.2;
}

.spotlight-feature__arrow {
  display: block;
  flex: 0 0 auto;
  height: 10px;
  stroke: currentColor;
  width: 27px;
}

.spotlight-feature__content {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 401px;
  padding: 114px 34px 28px;
  position: relative;
  width: 314px;
  z-index: 1;
}

.spotlight-feature__header {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.152px;
  line-height: 1.08;
  margin: 0;
  max-width: 256px;
}

.spotlight-feature__description {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.056px;
  line-height: 20px;
  margin: 0;
  max-width: 256px;
}

.spotlight-feature__cta {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}

.spotlight-feature__cta,
.spotlight-feature__cta--static {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.048px;
  line-height: 1.3;
}

.spotlight-feature__cta:hover,
.spotlight-feature__cta:focus-visible {
  opacity: 0.84;
}

.spotlight-feature__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .spotlight-feature {
    display: grid;
    grid-template-columns: 314px minmax(0, 1fr);
    min-height: 401px;
  }

  .spotlight-feature__media {
    grid-column: 2;
    grid-row: 1;
    min-height: 401px;
  }

  .spotlight-feature__content {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (max-width: 767px) {
  .spotlight-feature {
    border-radius: 10px;
    margin-left: 34px;
    margin-right: 34px;
    width: calc(100% - 68px);
  }

  .spotlight-feature__media {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .spotlight-feature__content {
    background: #17a7e6;
    gap: 10px;
    justify-content: flex-start;
    min-height: auto;
    padding: 15px 12px 18px;
    width: 100%;
  }

  .spotlight-feature__header {
    font-size: 18px;
    letter-spacing: 0.072px;
    line-height: 1.2;
    max-width: none;
  }

  .spotlight-feature__description {
    max-width: none;
  }

  .spotlight-feature__cta {
    order: -1;
    padding-bottom: 7px;
  }

  .spotlight-feature__label {
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    gap: 8px;
    padding: 8px 12px;
  }

  .spotlight-feature__label-text {
    font-size: 22px;
    letter-spacing: 0.088px;
  }

  .spotlight-feature__play-button {
    height: 48px;
    width: 42px;
  }

  .spotlight-feature__play-icon {
    height: 48px;
    width: 42px;
  }
}

