.custom-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 300px; 
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  }
  
  .custom-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .custom-card-title {
    font-size: 0.9rem; 
    font-weight: bold;
    margin: 0.5rem 0;
    color: black; 
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    word-wrap: break-word; 
  }
  
  .custom-card-text {
    max-width: 90%; /* Reduce el ancho del texto para evitar separaciones excesivas */
    margin: 0 auto; /* Centra el texto */
    font-size: 0.1rem; 
    line-height: 1.5;
    color: black; 
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10; 
    -webkit-box-orient: vertical;
    word-wrap: break-word; 
  }
  
  @media (max-width: 600px) {
    .custom-card {
      max-width: 100%; 
      padding: 0.5rem;
    }
  
    .custom-card-title {
      font-size: 1rem;
    }
  
    .custom-card-text {
      font-size: 0.9rem;
    }
  }