.curl-band-section {
  position: relative;
  background: linear-gradient(135deg, #172fa0 0%, #0e1e6e 100%);
  padding: 48px 0 0;
  overflow: hidden;
}

.curl-band-heading {
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 0 20px;
  margin-bottom: 8px;
}

.curl-band-heading .eyebrow {
  color: #ecc04b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.curl-band-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.curl-band-heading .hint {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.curl-band-container {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  max-height: 620px;
  cursor: grab;
}

.curl-band-container.dragging {
  cursor: grabbing;
}

.curl-band-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Non-WebGL fallback: a plain scrollable strip, no curvature/auto-scroll */
.curl-band-container.curl-band-fallback {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  cursor: default;
  background: #ecc04b;
  padding: 20px 24px;
}

.curl-band-container.curl-band-fallback img {
  flex: 0 0 auto;
  height: 100%;
  width: auto;
  scroll-snap-align: start;
  object-fit: cover;
}

@media screen and (max-width: 650px) {
  .curl-band-heading h2 {
    font-size: 26px;
  }
  .curl-band-container {
    height: 46vh;
    min-height: 300px;
  }
}
