/* Feature list — used in the broad column on app and solution pages.
   Designed to scale to long lists (six to twelve items). Each feature
   pairs a hex glyph with a heading and short body. Headings inherit
   the brand colour from typography.css. */

.feature-list { display: flex; flex-direction: column; gap: 40px; }

.feature-list .feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}

.feature-list .feature .glyph {
  width: 56px; height: 64px;
  clip-path: var(--hex-pointy-top);
  background: var(--c-cobalt-50);
  color: var(--c-blue-cobalt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-list .feature .glyph svg {
  width: 26px; height: 26px;
  stroke: currentColor; stroke-width: 2;
  fill: none;
}

.feature-list .feature h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.feature-list .feature p {
  font-size: 15px;
  color: var(--c-cobalt-700);
  line-height: 1.6;
  margin: 0;
}
