/* =====================================================================
   SHIM-ME Hub — Quote Band (Bucket B)
   Scoped: body #shim-quote .shim-quote-band-wrapper
   §0 compliant: body prefix + !important on all color/font props.
   ===================================================================== */

/* ------------------------------------------------------------------
   Band chrome — full-bleed red gradient; decorative giant quote mark.
   ------------------------------------------------------------------ */
body #shim-quote {
  position: relative !important;
  overflow: hidden !important;
}

/* Decorative oversized opening quotation mark */
body #shim-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 380px;
  color: rgba(0, 0, 0, 0.12);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

body #shim-quote .shim-quote-band-wrapper {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------
   Eyebrow
   ------------------------------------------------------------------ */
body #shim-quote .shim-quote-band__eyebrow {
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 28px !important;
}

/* ------------------------------------------------------------------
   Quote body
   ------------------------------------------------------------------ */
body #shim-quote .shim-quote-band__body {
  font-family: var(--shim-display) !important;
  font-weight: 700 !important;
  font-size: clamp(32px, 4vw, 60px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.005em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  max-width: 28ch;
  margin: 0 0 40px !important;
  padding: 0;
  border: 0;
  quotes: none;
}

/* Black highlight within the quote */
body #shim-quote .shim-quote-band__hl {
  color: #000 !important;
}

/* ------------------------------------------------------------------
   Author attribution row
   ------------------------------------------------------------------ */
body #shim-quote .shim-quote-band__attr {
  display: flex;
  align-items: center;
  gap: 16px;
}

body #shim-quote .shim-quote-band__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--shim-mono) !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  flex-shrink: 0;
}

body #shim-quote .shim-quote-band__name {
  font-family: var(--shim-display) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #fff !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

body #shim-quote .shim-quote-band__role {
  font-family: var(--shim-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  color: rgba(0, 0, 0, 0.7) !important;
  margin-top: 4px !important;
}

/* ------------------------------------------------------------------
   Responsive — stack on narrow viewports
   ------------------------------------------------------------------ */
@media (max-width: 600px) {
  body #shim-quote .shim-quote-band__body {
    font-size: 28px !important;
  }
  body #shim-quote .shim-quote-band__attr {
    flex-direction: column;
    align-items: flex-start;
  }
}
