.post .cover-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--pico-border-radius);
  margin-bottom: 2rem;
}

/* 2. Optimización de lectura (Ancho de columna) */
.post .post-container {
  margin: 0 auto;
}

/* 3. Estilo para imágenes internas del contenido (Lexical) */
post section img {
  border-radius: var(--pico-border-radius);
  margin: 2rem 0;
  display: block;
  width: 100%;
}

/* 4. Pie de foto para las imágenes del usuario */
post figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--pico-muted-color);
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

/* 5. Ajuste de interlineado para textos largos */
post .post-body {
  line-height: 1.8;
  font-size: 1.15rem;
}

.post .header-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.post .meta-info {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}