/* Quote Band — canonical spec from component library
   Single quote on gradient background — visual break between sections */

.quote-band {
  padding: 10px 20px 20px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-band--purple-gold {
  background:
    linear-gradient(180deg,
      rgba(138,43,226,0.55) 0%,
      rgba(138,43,226,0.38) 40%,
      rgba(138,43,226,0.18) 70%,
      transparent 85%
    ),
    radial-gradient(ellipse 140% 60% at 50% 100%, rgba(254,192,39,0.55) 0%, rgba(254,192,39,0.30) 40%, transparent 70%);
  background-color: var(--black);
}

.quote-band--blue {
  background: linear-gradient(180deg,
    rgba(0,212,255,0.35) 0%,
    rgba(0,212,255,0.18) 40%,
    rgba(0,0,0,0.90) 100%
  );
  background-color: var(--black);
}

.quote-band--gold {
  background: linear-gradient(180deg,
    rgba(254,192,39,0.30) 0%,
    rgba(254,192,39,0.15) 40%,
    rgba(0,0,0,0.90) 100%
  );
  background-color: var(--black);
}

.quote-band-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.quote-band-text {
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
}

.quote-band-attr {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}
