/* ---------- Import Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* ---------- Base styles ---------- */
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
  line-height: 1.5;
}

/* ---------- Links ---------- */
a {
  color: #5D5D9E;
  text-decoration: none;
}
a:hover {
  color: #B2B3B4;
}

/* ---------- Header ---------- */
.site-header {
  text-align: center;
  padding: 1rem 0.5rem;
}

.site-title {
  font-size: 3.75rem;
  color: #CECECE;
  margin: 0;
  font-weight: 600;
}

.site-subtitle {
  font-size: 0.95rem;
  color: #808080;
  margin-top: 0.2rem;
}

/* ---------- Content ---------- */
.content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0.5rem;
}

.post {
  margin-bottom: 2rem;
}

.post-title {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.post-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.5rem;
}

/* ---------- Poem & text blocks ---------- */
.post-body {
  white-space: pre-wrap;   /* preserves line breaks */
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  max-height: none;
  overflow-y: visible;
  position: static;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  padding: 0.8rem;
  border-top: 1px solid #eee;
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 480px) {
  .site-title {
    font-size: 1.5rem;
  }
  .site-subtitle {
    font-size: 0.85rem;
  }
  .post-title {
    font-size: 1.3rem;
  }
  .post-meta {
    font-size: 0.8rem;
  }
  .post-body {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .content {
    padding: 0.3rem;
  }
}
