/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
ul {
  list-style: none;
  padding: 0;
}

.news-item {
  margin-bottom: 80px !important;
  font-family: "Inter", sans-serif;
}

h3 {
  margin-top: 0;
}

p {
  margin-bottom: 10px !important;
}

hr {
  margin-top: 20px;
  border: 0;
  border-top: 1px solid #ccc;
}

.news-site-date > a {
  font-size: 10px;
  text-transform: uppercase !important;
}

.news-site-date {
  font-size: 10px;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-item {
  width: 30%;
  margin-bottom: 20px;
  padding: 10px;
  /* border: 1px solid #ccc; */
  /* border-radius: 5px; */
}

.news-site-date {
  font-weight: bold;
  color: #f9423a;
}

.news-item h3 {
  margin-top: 10px;
  font-size: 18px;
}

.news-item p {
  margin-top: 10px;
  /* font-size: 14px; */
}

.news-item img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  /* border-radius: 5px; */
}

.news-item a {
  display: inline-block;
  margin-top: 10px;
  color: #f9423a;
  font-weight: bold;
  text-decoration: none;
}

/* Estilos para dispositivos móveis */
@media (max-width: 767px) {
  /* Notícias em uma coluna por linha */
  .news-item {
    width: 100%;
  }
}

/* Estilos para tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Notícias em duas colunas por linha */
  .news-item {
    width: 50%;
  }
}

.news-site-title {
  font-size: 18px !important;
  line-height: 30px !important;
  margin: 0;
}

.news-excerpt {
  padding-left: 20px;
}

.news-site-name {
  font-size: 10px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.leia-mais {
  font-size: 14px;
}

.news-item img {
  width: 100%; /* define a largura da imagem para ocupar todo o container */
  height: 200px; /* altura fixa para todas as imagens */
  object-fit: cover; /* garante que a imagem cubra o espaço disponível sem distorção */
  object-position: center; /* centraliza a imagem dentro do container */
}
