.painpoints {
  padding: 110px 0;
}

.painpoints__header {
  text-align: center;
  margin-bottom: 42px;
}

.painpoints__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: stretch;
}

.pain-card {
  flex: 0 1 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
  position: relative;
  border-radius: 30px;
  padding: 30px;
  background: url('../images/bg-glass.webp') no-repeat left bottom;
  /* background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); */
  /* border: 1px solid rgba(255,255,255,0.10); */
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;

  background: transparent;
  border: 1px solid transparent;
  background:
    url('../images/bg-glass.webp') no-repeat left bottom,
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(
      325deg,
      #ffffff11 0%,
      #ffffff11 22%,
      #ffffffcb 50%,
      #ffffff11 78%,
      #ffffff11 100%
    ) border-box;
}

.pain-card__icon {
  width: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
}

.pain-card__icon img {
  width: 50px;
  object-fit: contain;
  display: block;
}


@media (max-width: 980px) {
  .painpoints {
    padding: 80px 0 92px;
  }

  .pain-card {
    flex: 0 1 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }

  .pain-card__text {
    max-width: none;
  }
}


@media (max-width: 560px) {
  .pain-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 18px;
  }
}
