/* =========================
   PAGE BANNER (PREMIUM IMAGE)
========================= */
.page-banner {
  margin-top: -80px;
  border-radius: 8px;
  position: relative;
  padding: 140px 0 100px;
  color: var(--white);
  overflow: hidden;
}

/* background image */
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.1);
}

/* gradient overlay */
.page-banner::after {
  opacity: 0.5;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(73, 50, 153, 0.85),
    rgba(220, 48, 32, 0.75)
  );
  z-index: 1;
}

/* subtle light blobs */
.page-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

/* content */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

/* breadcrumb - improved glass */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);

  padding: 10px 18px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.85;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.7;
}

.breadcrumb .active {
  opacity: 1;
  font-weight: var(--fw-medium);
}

/* title */
.banner-title {
  font-size: clamp(34px, 5vw, 52px);
  color: var(--white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

/* subtitle */
.banner-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

/* mobile polish */
@media (max-width: 768px) {
  .page-banner {
    padding: 110px 0 80px;
  }

  .banner-title {
    font-size: 30px;
  }

  .banner-subtitle {
    font-size: var(--fs-md);
  }
}
