/* Container geral */
.reading-content {
  line-height: 1.75;
  font-family: 'Nunito', sans-serif;
}

/* Títulos */
.reading-content h1,
.reading-content h2,
.reading-content h3,
.reading-content h4 {
  font-weight: 700;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.reading-content h1 { font-size: 1.8em; }
.reading-content h2 { font-size: 1.5em; }
.reading-content h3 { font-size: 1.25em; }
.reading-content h4 { font-size: 1.1em; }

/* Parágrafos */
.reading-content p {
  font-size: 1em;
  margin: 0.8em 0;
}

/* Listas */
.reading-content ul {
  margin: 1em 0;
  padding-left: 1.25em;
}
.reading-content ul li {
  margin: 0.4em 0;
}

/* Blockquote */
.reading-content blockquote {
  margin: 1.2em 0;
  padding: 0.8em 1em;
  border-left: 4px solid #6D3EA2;
  background: #f9f5ff;
  border-radius: 8px;
  font-style: italic;
  color: #333;
}
.dark-theme .reading-content blockquote {
  background: #2b2b2b;
  border-left-color: #bfa4e6;
  color: #e5e5e5;
}

/* Tabelas */
.reading-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  border-radius: 6px;
  overflow: hidden;
}

.reading-content table th,
.reading-content table td {
  border: 1px solid #ddd;
  padding: 0.6em;
}

.reading-content table th {
  background: #f3e9ff;
  font-weight: bold;
}

/* Imagens */
.reading-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1em 0;
}

/* DARK MODE */
.dark-theme .reading-content {
  color: #e5e5e5;
}

.dark-theme .reading-content blockquote {
  background: #2c2c2c;
  border-left-color: #a882e4;
}

.dark-theme .reading-content table th {
  background: #3a2f50;
}

.dark-theme .reading-content table td,
.dark-theme .reading-content table th {
  border-color: #444;
}
.reading-content > *:first-child {
    margin-top: 0 !important;
}