/* Pull Quote Bands — canonical spec from component library (Component 14)
   Colored gradient strips with large quote mark
   Universal — available for any page
   Renamed from hp-pull-break to pq-band prefix */

.pq-band {
  padding: 20px 20px;
}

.pq-band--blue {
  background: linear-gradient(135deg, #00D4FF 0%, #0088BB 50%, #003355 100%);
}

.pq-band--purple {
  background: linear-gradient(135deg, #A855F7 0%, #7C3AED 55%, #4C1D95 100%);
}

.pq-band--gold {
  background: linear-gradient(135deg, #FEC027 0%, #E6AD1F 50%, #B8860B 100%);
}

.pq-band--red {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #450a0a 100%);
}

.pq-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-left: 56px;
}

.pq-mark {
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: #FEC027;
}

.pq-band--gold .pq-mark {
  color: #000;
}

.pq-text {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pq-black { color: #000000; }
.pq-white { color: #ffffff; }
.pq-gold  { color: #FEC027; }
.pq-blue  { color: #00D4FF; }

@media (max-width: 768px) {
  .pq-band {
    padding: 20px 16px;
  }

  .pq-inner {
    padding-left: 44px;
  }

  .pq-mark {
    font-size: 56px;
  }

  .pq-text {
    font-size: clamp(20px, 4vw, 36px);
  }
}
