.cb-section {
  --cb-bg: #000000;
  --cb-height: 200px;
  
  background: var(--cb-bg);
  padding-block: 0px;
  width: 100%;
}

.cb-banner {
  position: relative;
  width: auto;
  height: auto;
  background: #111;
  overflow: hidden;
  border-radius: 4px;
}

.cb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.cb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
  pointer-events: none;
}

@media (max-width: 430px) {
    .cb-section {
        display: none;
    }

}