/* Site-wide slim accent strip below header (unique SVG per route) */

.page-hero-art {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  isolation: isolate;
  box-shadow:
    0 2px 0 0 #0891b2,
    0 6px 18px rgba(15, 23, 42, 0.06);
}

.page-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(15, 23, 42, 0.05) 100%);
  mix-blend-mode: soft-light;
}

/* Fixed small heights — no vw (that made the strip enormous) */
.page-hero-art img {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 72px !important;
  min-height: 0 !important;
  max-height: 72px !important;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-art img {
    transition: none;
  }
}

/* Homepage: modest bump only */
.page-hero-art--tall img {
  height: 96px !important;
  max-height: 96px !important;
}

body.pf-page .page-hero-art img {
  height: 64px !important;
  max-height: 64px !important;
}

@media (max-width: 768px) {
  .page-hero-art img {
    height: 56px !important;
    max-height: 56px !important;
  }
  .page-hero-art--tall img {
    height: 72px !important;
    max-height: 72px !important;
  }
  body.pf-page .page-hero-art img {
    height: 48px !important;
    max-height: 48px !important;
  }
}
