/* Problem Section */
.problem {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-primary);
}

.problem-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.problem-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 2.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.problem-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.problem-text p:last-child {
  margin-bottom: 0;
}

.problem-kicker {
  font-weight: 500;
  color: var(--text-light);
}

.problem-kicker a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.problem-kicker a:hover {
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .problem {
    padding: var(--section-padding-mobile) 0;
  }

  .problem-title {
    margin-bottom: 2rem;
  }

  .problem-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
