﻿.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
}
 
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(20, 79, 80, 0.7) 100%);
}
 
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
 
.page-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
 
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-breadcrumb li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.page-breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: var(--gold-on-dark);
}
.page-breadcrumb li.active {
  color: var(--gold-on-dark);
}
 
.page-breadcrumb-sep {
  display: inline-block;
  margin: 0 14px;
  color: var(--gold-on-dark);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}
 
@media (max-width: 991.98px) {
  .page-hero {
    height: 320px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .page-hero {
    height: 280px;
    padding-bottom: 40px;
  }
  .page-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .page-breadcrumb li {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .page-breadcrumb-sep {
    margin: 0 10px;
  }
}