body {
  font-family: Georgia, serif;
  background: #fafafa;
  color: #222;
  margin: 0;
  padding: 0;
}
header {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
}

.analysis-text em {
  font-style: italic;
}

.analysis-text strong {
  font-weight: 600; /* no demasiado pesado */
}

nav {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}
nav a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
nav a.active,
nav a:hover {
  border-bottom: 1px solid #222;
}
main {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}
h1 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 40px;
}
.content {
  max-width: 650px; /* no centrado absoluto */
}

#poem {
  margin-top: 48px;
  max-width: 480px;
  padding-left: 28px;
}

#poem pre {
  font-size: 1.05rem;
}

.poem {
  line-height: 1.6;
  font-size: 1rem;
  padding-left: 24px;
}

.poem-title{
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 14px 0;
  letter-spacing: 0.04em;
}

.poem pre {
  font-family: inherit;
  font-size: 1.05rem;
  line-height: 1.7;
  white-space: pre-wrap;
  margin: 0;
}

.poem pre::first-letter {
  letter-spacing: 0.03em;
}

#poem::after {
  content: "";
  display: block;
  height: 32px;
}

/*
#poem pre {
  border-left: 1px solid #ccc;
  padding-left: 18px;
}*/


#poem {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.03),
    transparent 60%
  );
}

pre.analysis-poem{
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  border-left: 2px solid #ddd;
  margin: 10px 0 36px 0;
  padding-left: 18px;
  color: #555;
}

.analysis {
  display: none;
  line-height: 1.6;
  font-size: 0.95rem;
}
.analysis h2 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 4px;
}

.analysis-cited-meta {
  margin-bottom: 16px;
}

.analysis-cited-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.analysis-cited-source {
  font-size: 0.85rem;
  color: #555;
}

.analysis-text {
  max-width: 600px;
  padding-left: 16px;
}

/* Estilo normal de párrafo del análisis */
.analysis-text p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 18px 0;
  color: #222;
}

/* Primer párrafo del análisis: mismo ritmo que los demás */
.analysis-text p.analysis-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Drop cap */
.analysis-text p.analysis-lead::first-letter {
  float: left;
  font-size: 3.2rem;
  line-height: 0.9;
  margin-right: 6px;
  margin-top: 2px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .analysis-text p.analysis-lead::first-letter {
    font-size: 2.6rem;
    margin-top: 1px;
  }
}


.analysis-text blockquote {
  margin: 24px 0;
  padding-left: 16px;
  border-left: 1px solid #ccc;
  font-size: 0.95rem;
  color: #444;
}