/* ── Full-height centred page hero ── */
.smcc-hero {
  flex: 1;
  min-height: calc(100vh - 100px);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}

/* ── Card paragraph text — Noto Sans to match SMCC body copy ── */
.smcc-card p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
}

/* ── SMCC dark teal card ── */
.smcc-card {
  background: var(--brand-primary, #033436);
  border-radius: 16px;
  padding: 48px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 32px rgba(3,52,54,0.18);
  color: #fff;
}

@media (max-width: 480px) {
  .smcc-card { padding: 36px 24px; }
}
