/* Two by two grid of capability blocks, matching the reference layout. */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

/* Petrol rule across the top of each block, so the grid reads as four distinct
   capabilities rather than a run of paragraphs. */
.pillar {
  border-top: 2px solid var(--accent);
  padding-top: 18px;
  min-width: 0;
}

.pillar-num {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.pillar-title {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: var(--leading-snug);
  margin: 0 0 8px;
}

.pillar-text {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 700px) {
  .pillars { grid-template-columns: minmax(0, 1fr); gap: 26px; }
}
