.highlight-section-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8.75rem;
  padding: 3.75rem 8.75rem;
  background-color: var(--purpure);
  color: var(--warm-silver-light);
}

.highlight-section {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
  max-width: 1920px;
}

.highlights {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.highlights > .highlight:nth-child(2n) > .highlight-content {
  flex-direction: row-reverse;
}

.highlight {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.highlight-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
}

.highlight-content > div {
  flex-basis: 100%;
}

.highlight-content > div > img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
  aspect-ratio: 1/1;
}

.highlight-content > div > ul {
  color: var(--point);
  padding-left: 24px;
  margin: 2.5rem 0 0 0;
}

.highlight-content > div > ul > li {
  margin-bottom: 1.5rem;
}

.highlight-separator {
  width: 100%;
  height: 1px;
  background-color: var(--point);
  border-radius: 10rem;
}

@media (max-width: 1024px) {
  .highlight-section-wrapper {
    padding: 3.75rem 2.5rem;
  }

  .highlight-content {
    flex-direction: column !important;
    align-items: start;
    gap: 5rem;
  }
}
