/* ================================================================
   HERITAGE BANNER (shared: home + about.us)
================================================================ */

.heritage-section  {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-xl) 24px;

}
.heritage-img  {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

}
.heritage-overlay  {
  position: absolute;
  inset: 0;
  background: linear-gradient( 180deg, rgba(5, 8, 15, 0.55) 0%, rgba(5, 8, 15, 0.82) 65%, var(--black) 100% );
  z-index: 1;

}
.heritage-content  {
  position: relative;
  z-index: 2;
  max-width: 700px;

}
.heritage-content h2  {
  margin: 14px 0;

}
.heritage-content p  {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;

}
@media (max-width: 768px)  {
  .heritage-section  {
    min-height: 320px;

  }

}