/* =========================================================
   poetry.css — Poetry page theme v1
   To change the look of the Poetry page, edit this file only.
   The HTML structure in poetry/index.njk stays stable.
   ========================================================= */

.poetry-intro {
  margin: 0 0 1rem;
  color: #555;
  font-style: italic;
}

.poetry-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0.5rem;
  min-height: 50vh;
  gap: 1.5rem;
}

.poetry-quote {
  background: #f1f3e6;
  border: 1px solid #1C1C1C;
  border-radius: 4px;
  padding: 2rem 2.5rem;
  max-width: 55ch;
  width: 100%;
  position: relative;
}

.poetry-quote::before {
  content: '\201C';
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  color: #1C1C1C;
  opacity: 0.15;
  position: absolute;
  top: 0.25rem;
  left: 0.75rem;
  line-height: 1;
  pointer-events: none;
}

.poetry-quote__text {
  margin: 0 0 1rem 0;
  padding: 0;
  border: none;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #1C1C1C;
  font-style: italic;
}

.poetry-quote__source {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  font-variant: small-caps;
  letter-spacing: 0.04em;
  color: #555;
  text-align: right;
}

.poetry-quote__refresh {
  background: none;
  border: 1px solid #1C1C1C;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-family: 'Orbitron', monospace;
  cursor: pointer;
  color: #1C1C1C;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, color 0.15s ease;
}

.poetry-quote__refresh:hover {
  background: #1C1C1C;
  color: #F1FAEE;
}
