/* static/css/components/investment-cards.css */
/* How It Works Card */
.how-it-works-card {
  width: 100%;
  max-width: 510px;
  height: auto;
  min-height: 270px;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 16px;
  border: 1px solid #F3F4F6;
  background: #FCDBE7;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.how-it-works-card__title {
  color: #2E0013;
  font-family: Inter, sans-serif;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.56;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.how-it-works-card__section {
  margin-bottom: clamp(1rem, 3vw, 1.25rem);
}

.how-it-works-card__section:last-child {
  margin-bottom: 0;
}

.how-it-works-card__subtitle {
  color: #E90076;
  font-family: Inter, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  line-height: 1.43;
  margin-bottom: 0.5rem;
}

.how-it-works-card__description {
  color: #374151;
  font-family: Inter, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 400;
  line-height: 1.43;
  margin: 0;
}

/* Key Stats Card */
.key-stats-card {
  width: 100%;
  max-width: 510px;
  height: auto;
  min-height: 241px;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 16px;
  border: 1px solid #F3F4F6;
  background: #FCDBE7;
}

.key-stats-card__title {
  color: #2E0013;
  font-family: Inter, sans-serif;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.56;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.key-stats-card__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  position: relative;
}

.key-stats-card__stat:last-child {
  margin-bottom: 0;
}

.key-stats-card__stat-label {
  color: #4B5563;
  font-family: Inter, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 400;
  line-height: 1.43;
  flex: 1;
}

.key-stats-card__stat-value {
  color: #2E0013;
  font-family: Inter, sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  line-height: 1.43;
  text-align: right;
}

.key-stats-card__stat-divider {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: #E87398;
}

.key-stats-card__stat:last-child .key-stats-card__stat-divider {
  display: none;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .how-it-works-card,
  .key-stats-card {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .how-it-works-card {
    margin-bottom: 2.5rem;
  }
  
  .key-stats-card {
    margin-bottom: 0;
  }
}