section.block.pageheader {
  position: relative;
  overflow: hidden;
  background: var(--blue-ink);
  padding: 64px 0 0;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
section.block.pageheader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(242,106,31,.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(26,79,209,.3), transparent 45%);
  pointer-events: none;
}
section.block.pageheader .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 0;
}
.pageheader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.pageheader-text {
  padding-bottom: 56px;
}
.pageheader-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,106,31,.2);
  color: var(--orange-soft);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pageheader-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: inline-block;
}
.pageheader-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 18px;
}
.pageheader-title .pageheader-accent {
  color: var(--orange-soft);
}
.pageheader-lede {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 30em;
}
.pageheader-photo {
  align-self: stretch;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  min-height: 300px;
}
.pageheader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pageheader-stripe {
  position: absolute;
  left: -10px;
  top: 40px;
  bottom: 0;
  width: 8px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to bottom, #ae1c28 0 33%, #fff 33% 66%, #21468b 66% 100%);
  box-shadow: 0 6px 20px -6px rgba(11,18,32,.25);
}

@media (max-width: 900px) {
  .pageheader-grid { grid-template-columns: 1fr; gap: 0; }
  .pageheader-photo { display: none; }
  .pageheader-text { padding-bottom: 48px; }
}
