@charset "UTF-8";
.quote {
  position: relative;
  width: 100%;
  padding: 2rem 0 2rem 0;
  color: black;
  /* ---- Layout container ---- */
  /* ---- Typing wrapper owns the height & positioning ---- */
  /* Shared typography (must match EXACTLY for measuring) */
  /* ---- Measurer ---- */
  /* ---- Visible typing layer ---- */
  /* ---- Meta section ---- */
  /* 👇 reveal once typing finished */
}
.quote-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.quote-typing {
  position: relative; /* <- absolute child anchors here */
  max-width: 1200px;
  margin: 0 auto 6rem auto;
}
.quote-measure {
  display: block;
  margin: 0;
  visibility: hidden;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.8;
  letter-spacing: 0;
  word-spacing: normal;
  text-align: left;
  text-indent: 0;
}
.quote-text {
  position: absolute;
  inset: 0;
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.8;
  letter-spacing: 0;
  word-spacing: normal;
  text-align: left;
  text-indent: 0;
}
.quote-text .quote-text-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quote-text-content {
  display: inline;
}
.quote-caret {
  --quote-cursor-color: #e10600;
  --quote-cursor-width: 1px;
  --quote-cursor-gap: 0ch;
  display: inline-block;
  border-left: var(--quote-cursor-width) solid var(--quote-cursor-color);
  height: 1em;
  vertical-align: -0.15em;
  margin-left: 0;
  animation: quote-caret-blink 1s steps(2, start) infinite;
}
.quote-text[data-started="1"] .quote-caret {
  margin-left: var(--quote-cursor-gap);
}
@keyframes quote-caret-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.quote-meta {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  /* 👇 hidden until typing is done */
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.quote.is-done .quote-meta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.quote-signature {
  display: block;
  width: clamp(120px, 18vw, 220px);
  height: auto;
}
.quote-person {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.quote-name {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.quote-title {
  opacity: 0.8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .quote {
    padding: 4rem 2rem;
  }
  .quote-typing {
    margin-bottom: 2rem;
  }
  .quote-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
