/* ============================================ */
/* QUIBARCA — Estilos de páginas de contenido    */
/* (artículos legales, políticas, términos, etc.) */
/* ============================================ */

/* ---------- Contenido del artículo ---------- */
.post-content {
  color: #334155;
  line-height: 1.75;
  font-size: 0.9375rem;
}
.post-content p {
  margin-top: 1rem;
}
.post-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #0f172a;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  scroll-margin-top: 6rem;
}
.post-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.post-content ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.post-content ul li {
  margin-top: 0.5rem;
}
.post-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid #0a5c6e;
  background: #f1f5f9;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #475569;
}
.post-content table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  font-size: 0.875rem;
}
.post-content table thead {
  background: #f8fafc;
}
.post-content table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}
.post-content table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}
.post-content table tr:last-child td {
  border-bottom: none;
}
.post-content a {
  color: #0a5c6e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-content a:hover {
  color: #0f172a;
}
.post-content code {
  background: #f1f5f9;
  color: #0f172a;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.85em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
html {
  scroll-behavior: smooth;
}