:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #737373;
  --rule: #d4d4d4;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

.quote-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.quote {
  width: min(100%, 820px);
  margin: 0;
  text-align: center;
}

blockquote {
  position: relative;
  margin: 0;
  padding: 0 0 28px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 400;
}

blockquote::before,
blockquote::after {
  color: var(--rule);
  font-size: 0.9em;
  line-height: 0;
}

blockquote::before {
  content: "\201C";
}

blockquote::after {
  content: "\201D";
}

figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

figcaption::before,
figcaption::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--rule);
}

@media (max-width: 560px) {
  .quote-page {
    padding: 24px;
  }

  blockquote {
    font-size: clamp(2rem, 13vw, 3.4rem);
  }
}
