.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.card-noticia {
  width: 310px;
  height: 420px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.card-noticia:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.card-noticia .card-img {
  width: 100%;
  height: auto;
  display: block;
}

.card-noticia .card-conteudo {
  padding: 16px;
}

.card-noticia .card-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #eb7b26;
  color: #f2f2f2;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.card-noticia .card-titulo {
  font-size: 1.1rem;
  color: #eb7b26;
  font-weight: bold;
  margin: 8px 0;
}

.card-noticia .card-subtitulo,
.card-noticia .card-carga {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
}
