.card{
    width: 20rem;    
    padding: 0;    
}

.card-hover:hover{
    border: 1px solid !important;
    cursor: pointer !important;
}

.border-yellow{
    border: 1px yellow solid;
  }

  .border-green{
    border: 1px green solid;
  }

  .border-red{
    border: 1px red solid;
  }
  
.card-admin:hover{
    border-width: 2px;
    cursor: pointer;
}

.card-img-top{
  width: 100%;
  height: auto; /* Mantém a proporção da imagem */
  object-fit: cover; /* Pode ser ajustado para 'contain' ou 'cover' conforme necessário */
}
.resume-text{
    text-align: justify;
    height: 75px;
    overflow: hidden;
}

.posts-container{
   display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Alinha à esquerda por padrão */
  gap: 25px;
  
}

.page-title-h2{
  font-size: 18px;
  font-weight: 700;
  color: black;
  height: 45px;
  overflow: hidden;
  text-align: left;
}


/* Estilos para responsividade em telas menores */
@media (max-width: 768px) {  
  .posts-container{
    justify-content: center;
}
}