/* ── SECTION HEADER / HEADING / LINK ────────────────────────────────── */
/* Shared by: solutions, sectors, cases, news                            */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}
.section-heading {
  font-family: 'Geist', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 480px;
}
.section-heading.dark { color: var(--black); }
.section-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-40);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gray-70);
}
.section-link:hover { color: var(--gray-20); border-color: var(--gray-40); }
.section-link.dark { color: #999; border-color: var(--gray-10); }
.section-link .material-icons { font-size: 15px; }
