/* V101 — About highlights grid styled like Why all4it */

#about .about-highlights {
  position: relative;
  margin-top: 52px !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.12) !important;
  overflow: hidden;
}

#about .about-highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,10,.72) 0%, rgba(5,7,10,.82) 100%),
    radial-gradient(circle at 18% 78%, rgba(227,30,36,.17), transparent 18%),
    radial-gradient(circle at 84% 22%, rgba(227,30,36,.14), transparent 22%),
    url("../assets/why/why-row-circuit.svg") center / cover no-repeat;
  pointer-events: none;
}

#about .about-highlight {
  position: relative;
  z-index: 1;
  min-height: 188px;
  padding: 32px 30px 30px !important;
  background: rgba(7,9,12,.78) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

#about .about-highlight::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 28px;
  width: 42px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 54px 0 0 -1px rgba(227,30,36,.9);
}

#about .about-highlight strong {
  display: block;
  padding-top: 24px;
  font-size: 18px !important;
  line-height: 1.25;
  letter-spacing: -.03em;
  color: #fff !important;
}

#about .about-highlight p {
  margin-top: 16px !important;
  color: #c7cbd2 !important;
  font-size: 16px;
  line-height: 1.7 !important;
}

@media (max-width: 1180px) {
  #about .about-highlights {
    grid-template-columns: 1fr;
  }

  #about .about-highlight {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  #about .about-highlight {
    padding: 28px 22px 24px !important;
  }

  #about .about-highlight::before {
    left: 22px;
    top: 22px;
  }
}
