.grilla {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
}

.card {
  /* width: 32.6%; */
  border-bottom: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  gap: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* Distribuye el contenido */
  height: 100%; /* Asegura que la tarjeta tenga altura completa */

  background-color: #fff;
}

.card-thumbnail {
  height: 300px;
  display: flex;
  width: 40%;
}

@media (max-width: 1024px) {
  /*Tablet*/
  .grilla {
  }
  .card {
    width: 100%;
  }
  .card-thumbnail {
    height: 200px;
  }
}
@media (max-width: 768px) {
  /*Mobile*/
  .card {
    width: 100%;
  }
}

.card-content {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.card-footer {
  display: flex;
  justify-content: flex-start; /* Espacia los elementos */
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto; /* Empuja el footer hacia la parte inferior */
}

/* Tags */
.tags {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  margin-right: 4px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: center;
}

/* Año */
.year {
  font-size: 14px;
  color: #777;
  margin-bottom: 0 !important;
  margin-top: 10px !important;
}

/* Título */
.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  margin: 5px 0 15px 0 !important;
}

/* Descripción */
.description {
  font-size: 14px;
  color: #555;
  /* margin-bottom: 12px; */
  margin-bottom: 0 !important;
}

/* Botón */
.btn {
  background: white;
  color: #0f69c4;
  border: 2px solid #0f69c4;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 32px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 12px;
}

.btn:hover {
  background: #0f69c4;
  color: white;
}

/* Enlace de descarga */
.download-link {
  color: #0f69c4;
  font-weight: bold;
  text-decoration: none !important;
  font-size: 14px;
  align-self: end;
  display: flex;
  gap: 10px;
}

.download-link:hover {
  text-decoration: underline;
}

.filtro {
  width: 35%;
}
