/* ═══════════════════════════════════════
   YOU CAN WITH AI — KPMG Case Study
   you-can-with-ai/index.html
═══════════════════════════════════════ */

/* Insight-pull headings on dark backgrounds */
.editorial-split .insight-pull {
  color: var(--paper);
}

/* ═══════════════════════════════════════
   EDITORIAL SPLIT — Shared two-column layout
═══════════════════════════════════════ */
.editorial-split {
  padding: var(--section-pad-lg) var(--section-pad);
  background: var(--deep);
}

.editorial-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.editorial-split-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(247,245,242,0.6);
}

.editorial-split-body p + p { margin-top: 1.5rem; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .editorial-split-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  .editorial-split {
    padding: var(--space-xl) 2rem;
  }
}
