.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-title {
  text-align: center;
}

.posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ddd;
}

.post-item {
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.post-item:hover {
  background-color: #dbeafe;
}

.post-title {
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.post-title:hover {
  color: #374151; /* gris oscuro */
  text-decoration: underline;
}

.post-date {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280; /* gris medio */
}

.post-summary {
  margin-top: 1rem;
  line-height: 1.6;
}

.read-more {
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #374151;
}
