/* Tipografía general del post */
.post-container {
  max-width: 1200px !important;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #fff;
  padding: 2rem;
  margin: 0 auto;
	
}

/* Título de la entrada */
.post-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #003366; /* azul oscuro coherente con tu sitio */
  margin-bottom: 0.5rem;
}

/* Meta información */
.post-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Categorías */
.post-categories a {
  font-size: 0.9rem;
  color: #0055a5;
  text-decoration: none;
}
.post-categories a:hover {
  text-decoration: underline;
}

/* Imagen destacada */
.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* Contenido */
.post-content {
  font-size: 1.15rem;
  line-height: 1.85;
}
.post-content h2,
.post-content h3,
.post-content h4 {
  color: #003366;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.post-content p {
  margin-bottom: 1.3rem;
}
.post-content a {
  color: #0055a5;
  text-decoration: none;
}
.post-content a:hover {
  text-decoration: underline;
}

/* Listas */
.post-content ul,
.post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.post-content li {
  margin-bottom: 0.6rem;
}

/* Blockquotes */
.post-content blockquote {
  border-left: 4px solid #0055a5;
  padding-left: 1rem;
  font-style: italic;
  color: #555;
  margin: 2rem 0;
}

/* Etiquetas al pie */
.post-tags {
  font-size: 0.95rem;
  margin-top: 2rem;
}
.post-tags a {
  color: #0055a5;
}
.post-tags a:hover {
  text-decoration: underline;
}

/* Navegación entre posts */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
.post-navigation a {
  color: #0055a5;
  text-decoration: none;
  font-weight: bold;
}
.post-navigation a:hover {
  text-decoration: underline;
}

/* Comentarios */
.post-comments {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
}

/* Responsive móvil */
@media (max-width: 768px) {
  .post-container {
    padding: 1.2rem;
  }
  .post-title {
    font-size: 2.2rem;
  }
  .post-content {
    font-size: 1.05rem;
  }
}
