/* ---------------------------------- */
/* Reusable inner-page hero banner
------------------------------------- */
.page-banner {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  background: url("../images/bg/home-20.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 12, 25, 0.85), rgba(15, 12, 25, 0.55) 60%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffb199;
  margin-bottom: 14px;
}

.page-banner-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #d63031;
  display: inline-block;
}

.page-banner h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.page-banner-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #d9d5e8;
}

.page-banner-crumbs a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.page-banner-crumbs a:hover {
  color: #ff8a7a;
}

.page-banner-crumbs i {
  font-size: 11px;
  color: #8f8aa8;
}

.page-banner-crumbs span {
  color: #ffb199;
}

@media (max-width: 575px) {
  .page-banner {
    height: 260px;
  }

  .page-banner h1 {
    font-size: 28px;
  }
}
