/**
 * Incentive Mark Widget Styles
 *
 * @package Worxogo
 * @since 1.0.0
 */

.worxogo-incentive-mark,
.worxogo-incentive-mark * {
  box-sizing: border-box;
}

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

.worxogo-incentive-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.worxogo-incentive-title {
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.02em;
  font-weight: 700;
  position: relative;
  width: 960px;
  margin: 0;
  color: #290074;
}

.worxogo-title-highlight {
  color: #4000a9;
}

.worxogo-incentive-subtitle {
  color: #4c4c4c;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

.worxogo-features-container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: 960px;
  position: relative;
}

.worxogo-feature-item {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.worxogo-feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 36px;
  position: relative;
  overflow: visible;
  aspect-ratio: 38/36;
}

.worxogo-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.worxogo-feature-content {
  padding: 8px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.worxogo-feature-title {
  color: #290074;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  font-weight: 700;
  position: relative;
  align-self: stretch;
  margin: 0;
}

.worxogo-feature-description {
  color: #616160;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  position: relative;
  width: 176px;
}

.worxogo-incentive-bottom-text {
  color: #4c4c4c;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

/* Responsive Design */
@media (max-width: 768px) {
  .worxogo-incentive-mark {
    padding: 60px 40px;
    gap: 30px;
  }

  .worxogo-incentive-header {
    gap: 30px;
  }

  .worxogo-incentive-title {
    font-size: 32px;
    width: 100%;
  }

  .worxogo-incentive-subtitle {
    font-size: 18px;
  }

  .worxogo-features-container {
    flex-direction: row;
    gap: 20px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
  }

  .worxogo-feature-item {
    padding: 30px 15px;
    min-width: 40%;
  }

  .worxogo-feature-icon {
    width: 32px;
    height: 30px;
  }

  .worxogo-feature-title,
  .worxogo-feature-description {
    font-size: 14px;
  }

  .worxogo-feature-description {
    width: 100%;
  }

  .worxogo-incentive-bottom-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .worxogo-incentive-mark {
    padding: 40px 20px;
    gap: 25px;
  }

  .worxogo-incentive-header {
    gap: 25px;
  }

  .worxogo-incentive-title {
    font-size: 28px;
  }

  .worxogo-incentive-subtitle {
    font-size: 16px;
  }

  .worxogo-features-container {
    flex-direction: column;
    gap: 15px;
  }

  .worxogo-feature-item {
    padding: 20px 10px;
  }

  .worxogo-feature-icon {
    width: 28px;
    height: 26px;
  }

  .worxogo-feature-title,
  .worxogo-feature-description {
    font-size: 14px;
  }

  .worxogo-incentive-bottom-text {
    font-size: 16px;
  }
}
