/* style/banner.css */

.site-banner {
  position: relative;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.site-banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* Optional overlay tint */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .site-banner {
    height: 200px;
  }
}
