/* PixelPass — premium inner page hero banners (scoped) */

.pp-inner-hero {
  --pp-navy-1: #0b1b33;
  --pp-navy-2: #102a55;
  --pp-navy-3: #153b63;
  --pp-orange: #f97316;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
  min-height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.pp-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(249, 115, 22, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 12% 80%, rgba(34, 176, 175, 0.16) 0%, transparent 58%),
    linear-gradient(90deg, rgba(5, 18, 45, 0.86) 0%, rgba(5, 18, 45, 0.62) 55%, rgba(5, 18, 45, 0.38) 100%);
  pointer-events: none;
}

.pp-inner-hero::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: inherit;
  transform: scale(1.02);
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
}

.pp-inner-hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.pp-inner-hero__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4px;
  max-width: 980px;
}

.pp-inner-hero__accent {
  display: inline-block;
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: var(--pp-orange);
  margin-bottom: 14px;
}

.pp-inner-hero__title {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}

.pp-inner-hero__subtitle {
  margin: 0 0 14px;
  max-width: 720px;
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.pp-inner-hero__crumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.pp-inner-hero__crumb .breadcrumb-item,
.pp-inner-hero__crumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.pp-inner-hero__crumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.95);
}

/* Background images (SVG banners) */
.pp-inner-hero--default {
  background-image: url('/assets/front/img/pixelpass/banners/inner-default.svg');
}

.pp-inner-hero--organizers {
  background-image: url('/assets/front/img/pixelpass/banners/organizers-banner.svg');
}

.pp-inner-hero--about {
  background-image: url('/assets/front/img/pixelpass/banners/about-banner.svg');
}

.pp-inner-hero--contact {
  background-image: url('/assets/front/img/pixelpass/banners/contact-banner.svg');
}

.pp-inner-hero--faq {
  background-image: url('/assets/front/img/pixelpass/banners/faq-banner.svg');
}

@media (min-width: 768px) {
  .pp-inner-hero {
    height: 280px;
    min-height: 260px;
  }
}

@media (min-width: 992px) {
  .pp-inner-hero {
    height: 340px;
    min-height: 320px;
  }
}

