/* ===== Problems ===== */
.problems {
  background: var(--white);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}
