/* =================== Full-bleed util =================== */
.full-bleed{
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  width: 100vw;
}

/* ======================= Banner ======================= */
.banner-full{
  min-height: clamp(60px, 10vw, 120px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: #6f0000;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  margin-bottom: 2rem;
  overflow: hidden;
}

.banner-full .banner-text{
  margin: 0 !important;
  padding: 0 .5rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,.25);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  line-height: 1.1;
  z-index: 1;
}