
.post h1{
  font-size: 30px;
  font-weight: bold;
}
.post h2{
  font-size: 20px;
  font-weight: bold;
}
.post h3{
  font-size: 18px;
  font-weight: bold;
}
.post p{
  margin-top: 10px;
  margin-bottom: 10px;
}
.post ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1.5rem;
  color: #222; /* color más fuerte */
}
.post a{
  text-decoration:underline !important;
  font-size: 20px;
  color: #b20000;
}
.post a:hover{
  color: #ea7b7b;
}

/* Lista ol (menos importante) */
.post ol {
  list-style-type: decimal; /* números normales */
  list-style-position: outside;
  margin-left: 1.5rem;
  font-size: 0.9em; /* un poco más pequeña */
  font-weight: 400;
}
.post li{
  margin-bottom: 10px;
}
.post blockquote {
  border-left: 4px solid #ccc;    /* línea en el lado izquierdo */
  padding: 0.75rem 1rem;          /* espacio interior */
  margin: 1.5rem 0;               /* separación con otros elementos */
  background-color: #f9f9f9;      /* fondo suave */
  font-style: italic;             /* texto en cursiva */
  color: #555;                    /* color de texto tenue */
}
.post hr{
    border: none;              /* quita el borde por defecto */
    border-top: 2px dashed #999; /* grosor, estilo punteado, color */
    margin: 1rem 0;            /* espacio arriba y abajo */  
}