.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-spacer {
  height: 40px;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.menu-card {
  position: relative;
  display: block;
  width: 360px;    
  height: 450px;
  text-decoration: none;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.menu-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card-bio {
  position: absolute;
  display: flex;
  inset: 0;
  z-index: 3;
  box-sizing: border-box;
  color: #ffffff;
  background: rgba(0,0,0,0.82);
  opacity: 0;
  transition: opacity 300ms ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  padding: 22px;
  pointer-events: auto;
}

.menu-card:hover .menu-card-bio {
  opacity: 1;
}
