
/* Banner fix - make banner image fill width with proper height */
section.w-full.overflow-hidden img.w-full.block {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width: 768px) {
  section.w-full.overflow-hidden img.w-full.block {
    height: 300px !important;
  }
}

@media (max-width: 480px) {
  section.w-full.overflow-hidden img.w-full.block {
    height: 220px !important;
  }
}
