/**
 * Inner pages banner (all pages except homepage).
 * Uses page-banner.jpg — blue field + gold dots + white wave bottom.
 */

.page-banner {
  --pb-gold: #d5af64;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background: #fff;
}

.page-banner__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 444;
  min-height: 0;
  background: url("/img/page-banner.jpg") center top / 100% 100% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 14%;
  box-sizing: border-box;
}

.page-banner__title {
  color: #fff !important;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.85rem;
  text-shadow: 0 2px 12px rgba(7, 58, 117, 0.25);
}

.page-banner__crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 600;
}

.page-banner__crumb a,
.page-banner__crumb .router-link-active {
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-banner__crumb a:hover {
  color: var(--pb-gold) !important;
  border-bottom-color: var(--pb-gold);
}

.page-banner__crumb-sep {
  opacity: 0.7;
  padding-inline: 0.15rem;
}

@media (max-width: 575.98px) {
  .page-banner__inner {
    aspect-ratio: 1024 / 500;
    padding-bottom: 16%;
  }

  .page-banner__title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }
}
