/* =====================================================
   sales-problem.css — BuddiesSpace Sales Problem Section
   Figma node 59:353 — file wpkxELWVlzeoRjthUL7RQ4
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ---- Section wrapper ---- */
.sales-problem {
  background-color: #59acf8;
  padding: clamp(60px, 6.94vw, 100px) clamp(24px, 6.67vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

/* ---- Shared block styles ---- */
.sales-problem__block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 1080px;
}

/* ---- Shared heading (h2) ---- */
.sales-problem__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.75vw, 54px);
  color: #21254a;
  line-height: 1.3;
  text-align: center;
  margin: 0;
  width: 100%;
  word-break: break-word;
  text-transform: uppercase;
}

/* ---- Body paragraphs ---- */
.sales-problem__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.sales-problem__body p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.53vw, 22px);
  color: #21254a;
  line-height: 1.55;
  text-align: center;
  margin: 0;
}

/* ---- Bullet list ---- */
.sales-problem__list {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.53vw, 22px);
  color: #21254a;
  line-height: 1.55;
  text-align: center;
  list-style-position: inside;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
  word-break: break-word;
}

.sales-problem__list li {
  list-style-type: disc;
  margin-bottom: 0;
}

/* ---- Green highlight callout ---- */
.sales-problem__callout {
  background-color: #b0f288;
  border-radius: 11px;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.67vw, 24px);
  color: #21254a;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
}

/* ---- Responsive: 1024px (tablet/small desktop) ---- */
@media (max-width: 1024px) {
  .sales-problem {
    padding: clamp(48px, 5vw, 80px) clamp(24px, 5vw, 64px);
    gap: 72px;
  }
}

/* ---- Responsive: 599px (mobile) ---- */
@media (max-width: 599px) {
  .sales-problem {
    padding: 48px 24px;
    gap: 48px;
  }

  .sales-problem__callout {
    white-space: normal;
    font-size: 16px;
    padding: 12px 16px;
  }
}
