/* Estilos para o Modal de Notícias */
#newsContent {
  background-color: #121212;
  /* Fundo sólido para evitar transparência */
  color: #e0e0e0;
}

.blog-content-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
  display: block;
}

.blog-content-wrapper p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.blog-content-wrapper a {
  color: var(--bs-primary);
  text-decoration: underline;
}

/* Scrollbar para o Modal */
#newsContent::-webkit-scrollbar {
  width: 6px;
}

#newsContent::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

/* Garantir altura das imagens nos cards */
.blog-card__image img {
  height: 240px;
  object-fit: cover;
}