/* ===========================
   PÁGINA DE LEITURA (ESTILO G1 / CNN)
=========================== */

.leitura-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
}

.leitura-header {
  margin-bottom: 30px;
}

.leitura-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 15px;
  color: var(--text-color);
}

.leitura-meta {
  display: flex;
  justify-content: center;
}

.leitura-data {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* IMAGEM */
.leitura-img-container {
  width: 100%;
  margin: 30px 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
}

.leitura-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXTO */
.leitura-content {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-color);
  white-space: pre-wrap;
}

/* Parágrafos mais "respiráveis" */
.leitura-content p {
  margin-bottom: 20px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .leitura-title {
    font-size: 1.6rem;
  }

  .leitura-content {
    font-size: 1rem;
  }
}
