/* ============================================================
   SLIDE 04B: Problem Statement
   ============================================================ */

/* Centred slide layout variant */
.slide__container--centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: var(--space-xl);
}

.slide__header--centered {
  text-align: center;
  width: 100%;
  margin-bottom: var(--space-xl);
}

/* Quote block */
.problem-statement-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  position: relative;
  box-sizing: border-box;
  text-align: left;
  padding: 20px 40px;
}

.problem-text {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.problem-quote-mark {
  font-family: Georgia, serif;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.7;
  pointer-events: none;
  user-select: none;
  margin-top: -15px;
  flex-shrink: 0;
  z-index: 0;
}

.problem-quote-mark--close {
  margin-top: auto;
  align-self: flex-end;
  line-height: 0.5;
}
