/* Shared QA layer for the four core service pages. */
.service-problem-section {
  border-bottom: 1px solid var(--theme-line);
}

.service-problem-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}

.service-problem-heading h2 {
  max-width: 900px;
  margin: 0;
}

.service-problem-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--theme-muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.service-problem-section .problem-focus {
  margin-top: clamp(38px, 5vw, 68px);
}

.service-problem-section + .section-white {
  box-shadow: inset 0 1px 0 var(--theme-line);
}

.service-problem-section .problem-focus-result-inner > strong {
  max-width: 820px;
}

.service-problem-section .problem-focus-result p {
  max-width: 680px;
}

/* FAQ pages use the same calm density as the model subpages. */


@media (max-width: 900px) {
  .service-problem-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-problem-heading > p {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .service-problem-section .problem-focus {
    margin-top: 30px;
  }
}
