/* Shared styles for interior pages (about, all quotes, etc.) */

.page-body {
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
}

.page-content {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards 0.15s;
}

.page-title {
  font-family: 'Chomsky', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.page-intro {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2.25rem;
}

.page-section {
  margin-bottom: 2.25rem;
}

.page-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.85rem;
}

.page-section p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.page-section p em {
  font-style: italic;
  color: var(--ink);
}

.page-section p:last-child {
  margin-bottom: 0;
}

.page-section a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.page-section a:hover {
  color: var(--ink);
}

/* ── All Quotes list ── */
.aq-entry {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(192,192,200,0.4);
}
.aq-entry:last-child {
  border-bottom: none;
}

.aq-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.aq-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.aq-author {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.aq-source {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.8;
}

.aq-source a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s, opacity 0.2s;
}
.aq-source a:hover {
  color: var(--silver);
  opacity: 1;
}
