.feature-spotlight__background {
  background-color: var(--black);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.feature-spotlight__wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.feature-spotlight__content {
  width: 100%;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight__content {
    width: 35%;
  }
}

.feature-spotlight__content aside p {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 1rem;
}

.feature-spotlight__content h2 {
  color: var(--white);
  font-size: 30px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight__content h2 {
    font-size: 36px;
  }
}

/* FEATURE SPOTLIGHT ARTICLE */
.feature-spotlight-item {
  margin-bottom: 2rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight-item {
    position: relative;
    margin-bottom: 1rem;
  }
}

.feature-spotlight-item__container {
  position: relative;
  display: flex;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight-item__container {
    padding: 0.5rem;
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight-item__spotlight {
    position: absolute;
    z-index: 1;
    background-color: #2C6C53;
    width: 120%;
    height: 100%;
    left: -20%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .is-active .feature-spotlight-item__spotlight {
    opacity: 1;
    visibility: visible;
  }
}

.feature-spotlight-item__count {
  display: none;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight-item__count {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    background-color: var(--white);
    border-radius: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-family: var(--body-font-family);
    margin-top: 1rem;
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight-item__content {
    flex: 1;
    margin-left: 1rem;
    z-index: 2;
    position: relative;
    margin-top: 1rem;
  }
}

.feature-spotlight-item__content figure {
  display: block;
  margin-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight-item__content figure {
    display: none;
  }
}

.feature-spotlight-item:not(:first-of-type) .feature-spotlight-item__content figure {
  padding-top: 1rem;

  border-top: 1px dotted var(--white);
}

.feature-spotlight-item__content header h3 {
  color: var(--white);
  font-family: var(--body-font-family);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-spotlight-item__content header p,
.feature-spotlight-item__content header li {
  color: var(--white);
}

/* FOCUS ON THE RIGHT SIDE */
.feature-spotlight__focus {
  display: none;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .feature-spotlight__focus {
    width: 65%;
    display: block;
    padding: 1rem;
    position: relative;
  }
}

.feature-spotlight__render {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  width: 0px;
  height: 0px;
}

.feature-spotlight__render.is-active {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: inherit;
}

.feature-spotlight__focus figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.feature-spotlight__circle {
  width: 500px;
  height: 500px;
  background-color: #2C6C53;
  border-radius: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}