.emenda-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.emenda-card {
  display: flex;
  gap: 20px;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
}

/* IMAGEM */
.emenda-card img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

/* CONTEÚDO */
.emenda-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.emenda-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.emenda-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.emenda-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  
.btn-apoio {
  padding: 10px 18px;
  background: #1c4ed8;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
