/* Worxogo Proof of the Pudding Widget Styles */

.feature-gradient-60-bg {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 8px;
  padding: 60px 40px 0px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.feature-gradient-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.feature-gradient-title h2 {
  color: #290074;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
}

.feature-gradient-title h2 span {
  color: #4000a9;
}

.feature-gradient-title p {
  color: #290074;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
}

.feature-stats-alt-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.stats-alt-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

.stats-alt-card-number {
  color: #4000a9;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  position: relative;
}

.stats-alt-card-text {
  color: #323232;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-gradient-60-bg {
    padding: 40px 20px 0px 20px;
  }

  .feature-gradient-title h2 {
    font-size: 32px;
  }

  .feature-gradient-title p {
    font-size: 16px;
  }

  .feature-stats-alt-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .stats-alt-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 10px);
  }

  .stats-alt-card-number {
    font-size: 32px;
  }

  .stats-alt-card-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .feature-gradient-60-bg {
    padding: 30px 15px 0px 15px;
  }

  .feature-gradient-title h2 {
    font-size: 28px;
  }

  .feature-gradient-title p {
    font-size: 14px;
  }

  .feature-stats-alt-wrapper {
    flex-direction: row;
    gap: 15px;
  }

  .stats-alt-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 10px);
  }

  .stats-alt-card-number {
    font-size: 28px;
  }

  .stats-alt-card-text {
    font-size: 14px;
  }
}
