/* richtext.css */
.conteudo-post {
  font-family: system-ui, sans-serif;
  line-height: 1.7;
  color: #1e293b;
}

/* Títulos */
.conteudo-post h1,
.conteudo-post h2,
.conteudo-post h3,
.conteudo-post h4,
.conteudo-post h5,
.conteudo-post h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  color: #0f172a;
}

.conteudo-post h1 { font-size: 1.875rem; }
.conteudo-post h2 { font-size: 1.5rem; }
.conteudo-post h3 { font-size: 1.25rem; }
.conteudo-post h4 { font-size: 1.125rem; }
.conteudo-post h5 { font-size: 1rem; }
.conteudo-post h6 { font-size: 0.875rem; }

/* Parágrafos */
.conteudo-post p {
  margin-bottom: 1em;
  text-align: justify;
}

/* Itálico e negrito */
.conteudo-post em { font-style: italic; }
.conteudo-post strong { font-weight: 700; }

/* Listas */
.conteudo-post ul,
.conteudo-post ol {
  margin: 1em 0 1em 2em;
  padding: 0;
}

.conteudo-post ul li {
  list-style-type: disc;
  margin-bottom: 0.4em;
}

.conteudo-post ol li {
  list-style-type: decimal;
  margin-bottom: 0.4em;
}

/* Links */
.conteudo-post a {
  color: #2563eb;
  text-decoration: underline;
}

.conteudo-post a:hover {
  color: #1d4ed8;
}

/* Citações */
.conteudo-post blockquote {
  border-left: 4px solid #94a3b8;
  padding-left: 1em;
  font-style: italic;
  color: #475569;
  margin: 1em 0;
}

/* Imagens */
.conteudo-post img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1em 0;
}

/* Tabelas */
.conteudo-post table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.conteudo-post th,
.conteudo-post td {
  border: 1px solid #e2e8f0;
  padding: 0.6em 1em;
  text-align: left;
}

.conteudo-post th {
  background: #f1f5f9;
  font-weight: 600;
}

/* Código */
.conteudo-post code {
  background: #f1f5f9;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-family: monospace;
  color: #e11d48;
}
