@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.6;
}

/* Tipografía básica */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #2563eb; /* azul sobrio */
  text-decoration: none; /* sin subrayado */
  transition: color 0.2s ease;
}

a:hover {
  color: #1e40af; /* azul un poco más oscuro */
  text-decoration: underline;
}

a:visited {
  color: #4f46e5; /* mantiene coherencia */
}

code {
  font-family: monospace;
  background: #f3f4f6;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
  font-size: 0.95em;
}

pre {
  background: #f3f4f6;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 6px;
}

ul, ol {
  padding-left: 1.25rem;
  margin: 1rem 0;
  list-style: none;
}

.post-item {
  margin-bottom: 0.8rem;
  border: 1px solid black;
  padding: 0.5rem;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
}

/*# sourceMappingURL=main.css.map */