.highlight-section {
  position: relative;
  z-index: 0;
  margin-top: 64px;
  margin-bottom: 64px;
}

.highlight {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  place-items: center;
  margin-inline: auto;
}

.highlight-description {
  font-size: var(--text-base);
  margin-top: 20px;
}

.highlight-item {
  gap: 16px;
  border-radius: 25px;
  color: var(--foundation-black);
  background-color: var(--foundation-white);
  padding: 16px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 4fr 6fr;
  height: 100%;
}

.highlight-item-top {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 16px;
  align-items: center;
}

.highlight-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(180deg, #4165b0 0%, #cc2872 100%);
  border-radius: 25px;
  padding: 1px;
  -webkit-mask: linear-gradient(rgba(255, 255, 255, 1) 0 0) content-box,
    linear-gradient(rgba(255, 255, 255, 1) 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.highlight-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.highlight-item-top .container-image {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
}

.highlight-desc {
  margin-top: auto;
}

.highlight-img {
  width: 100%;
  height: auto;
}

.highlight-title {
  font-size: var(--text-16_20);
  font-weight: 700;
  line-height: 130%;
  color: #af39b5;
}

.highlight-sub-title {
  font-weight: 600;
}

.highlight-heading {
  background-image: linear-gradient(
    180deg,
    #e830ff 0%,
    #00bbbc 112.27%,
    #befeff 169.33%,
    #fff 194.59%
  );
  margin-bottom: 48px;
}

.bg-highlight {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 480px) {
  .highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 992px) {
  .highlight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* .highlight-item {
    height: 100%;
  } */
}
