/* gans/news-quote
   converted from ArticleQuotesScene.tsx
   ─────────────────────────────────────────────────────────────────────────── */

/* relative overflow-hidden bg-cloud px-8 py-24 md:px-12 md:py-32 */
.gans-news-quote {
  position: relative;
  overflow: hidden;
  background: var(--cloud);
  padding: 96px 32px;
}

@media (min-width: 768px) {
  .gans-news-quote {
    padding: 128px 48px;
  }
}

/* ── Solo (single quote, centered) ────────────────────────────────────────── */
/* relative mx-auto max-w-3xl text-center */
.gans-news-quote__solo {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

/* text-[clamp(6rem,14vw,11rem)] leading-[0.7] text-gold/30 */
.gans-news-quote__solo-mark {
  display: block;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.7;
  color: rgba(200, 169, 119, 0.3);
}

/* -mt-12 font-display text-[clamp(1.5rem,3.2vw,2.5rem)] font-light leading-[1.18] tracking-[-0.02em] text-stone md:-mt-16 */
.gans-news-quote__solo-text {
  margin-top: -48px;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--stone);
  quotes: none;
}

@media (min-width: 768px) {
  .gans-news-quote__solo-text {
    margin-top: -64px;
  }
}

/* ── Paired (two quotes side by side) ─────────────────────────────────────── */
/* relative mx-auto grid max-w-[1200px] grid-cols-1 gap-12 md:grid-cols-2 md:gap-16 */
.gans-news-quote__pair {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .gans-news-quote__pair {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}

.gans-news-quote__paired-figure {
  position: relative;
}

/* text-[clamp(3.5rem,6vw,5rem)] leading-[0.7] text-gold/30 */
.gans-news-quote__paired-mark {
  display: block;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.7;
  color: rgba(200, 169, 119, 0.3);
}

/* mt-2 text-[clamp(1.125rem,1.8vw,1.375rem)] font-light leading-[1.45] tracking-[-0.012em] text-stone */
.gans-news-quote__paired-text {
  margin-top: 8px;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--stone);
  quotes: none;
}

/* ── Shared figcaption ────────────────────────────────────────────────────── */
/* mt-6 flex items-start gap-4 */
.gans-news-quote__figcaption {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* mt-10 flex items-center justify-center gap-4 */
.gans-news-quote__figcaption--centered {
  margin-top: 40px;
  align-items: center;
  justify-content: center;
}

/* mt-2 h-px w-8 shrink-0 bg-gold */
.gans-news-quote__figcaption-line {
  display: block;
  margin-top: 8px;
  height: 1px;
  width: 32px;
  flex-shrink: 0;
  background: var(--gold);
}

.gans-news-quote__figcaption--centered .gans-news-quote__figcaption-line {
  margin-top: 0;
}

/* font-display text-[14px] tracking-[-0.005em] text-stone */
.gans-news-quote__name {
  font-size: 14px;
  color: var(--stone);
  margin: 0;
}

/* mt-1 font-display text-[10.5px] uppercase tracking-[0.22em] text-iron */
.gans-news-quote__role {
  margin-top: 4px;
  font-size: 10.5px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0;
}
