/* Updated Elementor Card Widget Styles */

.ecw-card-widget {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  position: relative;
  max-width: 350px;
  color: #fff;
}

.ecw-card-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 24px;
  height: 100%;
  width: 100%;
}

.ecw-card-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px;
  color: #fff;
}

.ecw-card-icon.circle {
  border-radius: 50%;
}

.ecw-card-icon.square {
  border-radius: 8px;
}

.ecw-card-icon i, .ecw-card-icon svg {
  font-size: 18px;
  color: #fff;
}

.ecw-card-badge {
  background-color: #0052cc;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
}

.ecw-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ecw-card-desc {
  font-size: 14px;
  margin-bottom: 16px;
}

.ecw-card-points {
  font-size: 14px;
  margin-bottom: 20px;
}

.ecw-card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #0052cc;
  border: none;
  transition: all 0.2s ease;
}

.ecw-card-button:hover {
  background-color: #e5efff;
  color: #003e99;
}
