/* quote — auto-split from content-blocks.css */

/* ═══════════════════════════════════════════════════════════
   Quote Block (.quote)
   Bold statement quote with decorative background circles.
   No italic — font weight is the emphasis.

   Variants: .quote--billboard (default)
   Themes:   .quote--navy (default), .quote--navy-dark, .quote--crimson, .quote--neutral

   HTML:
     <blockquote class="quote quote--billboard quote--navy">
       <p class="quote-text">Quote text.</p>
       <div class="quote-attr">
         <div class="quote-avatar">TF</div>
         <div>
           <div class="quote-name">Thomas Fürst</div>
           <div class="quote-role">Geschäftsführer, traffic3 GmbH</div>
         </div>
       </div>
     </blockquote>
   ═══════════════════════════════════════════════════════════ */

/* ── Base ── */
article .quote {
  border-radius: var(--radius);
  margin: 2rem 0;
}

/* ── Billboard variant ── */
article .quote--billboard {
  padding: 2.5rem 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
}

article .quote--billboard::before {
  content: "";
  position: absolute;
  bottom: -2.5rem; right: -2rem;
  width: 14rem; height: 14rem;
  border-radius: 50%;
  pointer-events: none;
}

article .quote--billboard::after {
  content: "";
  position: absolute;
  top: -3rem; right: 5rem;
  width: 9rem; height: 9rem;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Inner elements ── */
article .quote-text {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem;
}

article .quote-text::before {
  content: '\201E';
  font-size: 1.25em; line-height: 0; vertical-align: -0.25em;
  margin-right: 0.1em; opacity: 0.4;
}

article .quote-text::after {
  content: '\201D';
  font-size: 1.25em; line-height: 0; vertical-align: -0.25em;
  margin-left: 0.1em; opacity: 0.4;
}

article .quote-attr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

article .quote-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

article .quote-name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
}

article .quote-role {
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--color-text-muted);
}

/* ── Navy (default) ── */
article .quote--navy {
  background: var(--color-primary-50);
  color: var(--color-primary);
}
article .quote--billboard.quote--navy::before { background: rgba(3,33,105,0.07); }
article .quote--billboard.quote--navy::after  { background: rgba(3,33,105,0.04); }
article .quote--navy .quote-avatar { background: var(--color-primary); color: #fff; }
article .quote--navy .quote-name   { color: var(--color-primary); }

/* ── Navy dark ── */
article .quote--navy-dark {
  background: linear-gradient(135deg, var(--color-primary) 0%, #021648 100%);
  color: #fff;
}
article .quote--billboard.quote--navy-dark::before { background: rgba(255,255,255,0.05); }
article .quote--billboard.quote--navy-dark::after  { background: rgba(255,255,255,0.03); }
article .quote--navy-dark .quote-avatar { background: rgba(255,255,255,0.15); color: #fff; }
article .quote--navy-dark .quote-name   { color: #fff; }
article .quote--navy-dark .quote-role   { color: rgba(255,255,255,0.6); }

/* ── Crimson ── */
article .quote--crimson {
  background: var(--color-accent);
  color: #fff;
}
article .quote--billboard.quote--crimson::before { background: rgba(255,255,255,0.07); }
article .quote--billboard.quote--crimson::after  { background: rgba(255,255,255,0.04); }
article .quote--crimson .quote-avatar { background: rgba(255,255,255,0.2); color: #fff; }
article .quote--crimson .quote-name   { color: #fff; }
article .quote--crimson .quote-role   { color: rgba(255,255,255,0.65); }

/* ── Neutral ── */
article .quote--neutral {
  background: var(--color-neutral-100);
  color: var(--color-text-primary);
}
article .quote--billboard.quote--neutral::before { background: rgba(100,116,139,0.1); }
article .quote--billboard.quote--neutral::after  { background: rgba(100,116,139,0.06); }
article .quote--neutral .quote-avatar { background: var(--color-neutral-300); color: var(--color-text-body); }
article .quote--neutral .quote-name   { color: var(--color-text-primary); }
