  /* Faz todas as colunas terem mesma altura */
.equal-height {
  display: flex; 
  flex-wrap: wrap;
}

.equal-height > [class*="col-"] {
  display: flex;
}

/* Card ocupa toda a altura da coluna */
.equal-height .blog-entry {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Faz o conteúdo crescer para preencher o espaço */
.equal-height .blog-entry .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Empurra o botão para o fundo (opcional, fica mais bonito) */
.equal-height .blog-entry .btn {
  margin-top: auto;
}

/* Título da notícia */
.blog-entry .heading {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* Data */
.blog-entry .meta {
  font-size: 12px;
}

/* Texto/resumo */
.blog-entry .text p {
  font-size: 13px;
  line-height: 1.5;
}

/* Botão menor (opcional) */
.blog-entry .btn {
  font-size: 12px;
  padding: 6px 12px;
}


        .pagination-dots {
  text-align: center;
  margin-top: 30px;
}

.pagination-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 6px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.pagination-dots .dot.active {
  background-color: #e91e63; /* cor do CERISE */
  transform: scale(1.3);
}

.event-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #dc3545; /* vermelho */
  color: white;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 2;
}

.blog-entry {
  position: relative;
}
/* Evento encerrado - imagem mais opaca */
.blog-entry.past .block-20 {
  opacity: 0.7;
  filter: grayscale(10%);
}
