/* ============================================================================
   Simple page header — minimal, centred.
   Plain white, centred title + breadcrumb, thin hairline. No gradient or
   decorative pattern (unlike the shared marketing hero) so the focus stays
   on the document text.
   ============================================================================ */

.smyk-simple-hero {
  background: var(--smyk-white, #fff);
  border-bottom: none;
  padding-block: 52px 32px;
}

.smyk-simple-hero__inner {
  text-align: center;
}

/* Breadcrumb — centred above the title */
.smyk-simple-hero__crumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--smyk-font);
  font-size: 13px;
  color: var(--smyk-foggy, #717171);
  margin-bottom: 12px;
}
.smyk-simple-hero__crumb a {
  color: var(--smyk-foggy, #717171);
  text-decoration: none;
}
.smyk-simple-hero__crumb a:hover {
  color: var(--smyk-primary, #e41d56);
  text-decoration: underline;
}
.smyk-simple-hero__crumb span[aria-current="page"] {
  color: var(--smyk-hof, #222);
  font-weight: 600;
}

/* Title */
.smyk-simple-hero__title {
  font-family: var(--smyk-font);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--smyk-hof, #222);
  margin: 0;
}

@media (max-width: 767px) {
  .smyk-simple-hero { padding-block: 30px 22px; }
}
