.inventors-container {
  padding: 20px;
  background-color: #f4f4f4;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  background-color: #fff;
  box-shadow: 0 2px 4px #0000001a;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px #0003;
}
.card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card-content {
  padding: 15px;
}
.card-name {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
}
.card-year,
.card-passed {
  margin: 5px 0;
  color: #666;
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list-item {
  margin: 0;
  padding: 0;
}
.footer-link {
  text-decoration: none;
  color: #000;
}
.yellow-link {
  color: #ff0;
}
.tablet-hidden {
  display: none;
}
@media (min-width: 768px) {
  .tablet-hidden {
    display: inline;
  }
}
