/**
 * Page hero — reef image banner used on every non-home public page.
 * Hand-compiled from scss/components/_page-hero.scss until npm pipeline lands.
 */
.page-hero {
  position: relative;
  padding: 80px 0 100px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 34, 66, 0.88) 0%, rgba(0, 111, 125, 0.66) 58%, rgba(0, 169, 157, 0.48) 100%),
    url('/themes/custom/pirt_theme/images/hero-bg.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 0;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #EEB092, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'><path fill='%23fafbfb' d='M0,25 C240,50 480,0 720,25 C960,50 1200,0 1440,25 L1440,50 L0,50 Z'/></svg>");
  background-size: cover;
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.page-hero h1 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 6px 0 12px;
  color: #fff;
}
