/*
 * Worxogo Behavior Card Widget CSS
 *
 * Elementor Behavior Card Widget Styles with Title Highlight Field
 */

/* ===== STYLE OVERRIDE CLASSES ===== */

/* No gradient background */
.behavior-card.no-gradient {
  background: transparent !important;
}

/* No border radius */
.behavior-card.no-border-radius {
  border-radius: 0 !important;
}

/* ===== BEHAVIOR CARD SECTION ===== */
.behavior-card-container {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

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

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

.behavior-card-title {
  text-align: center;
  font-family: "AlbertSans-Bold", sans-serif;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.02em;
  font-weight: 700;
  position: relative;
  align-self: stretch;
  margin: 0;
  color: #290074 !important;
}

.behavior-card-title span {
  color: #290074 !important;
}

.behavior-card-title .highlight {
  color: #4000a9 !important;
}

.behavior-card-description {
  color: #4c4c4c;
  text-align: center;
  font-family: "AlbertSans-Regular", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .behavior-card-container {
    padding: 0px 40px 0px 40px;
  }

  .behavior-card {
    padding: 60px 40px 0px 40px;
  }

  .behavior-card-title {
    font-size: 32px;
  }

  .behavior-card-description {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .behavior-card-container {
    padding: 0px 20px 0px 20px;
  }

  .behavior-card {
    padding: 40px 20px 0px 20px;
  }

  .behavior-card-content {
    gap: 30px;
  }

  .behavior-card-title {
    font-size: 28px;
  }

  .behavior-card-description {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .behavior-card-container {
    padding: 0px 15px 0px 15px;
  }

  .behavior-card {
    padding: 30px 15px 0px 15px;
  }

  .behavior-card-content {
    gap: 20px;
  }

  .behavior-card-title {
    font-size: 24px;
  }

  .behavior-card-description {
    font-size: 13px;
  }
}
