.list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 20px;
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

hr {
  border: 0;
  border-top: 1px solid #C2BBBB;
  margin: 5px 0;
}

.duration {
  text-align: center;
  color: #C2BBBB;
  padding-bottom: 10px;
}

.list-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FBF7ED;
  box-shadow: 0px 3px 7px 5px rgba(128, 128, 128, 0.3);
  width: 245px;
}

.card-image {
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
  padding-bottom: 0;
}

.card-image img {
  margin: 0px auto;
  object-fit: cover;
  width: 245px;
  height: 128px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 0;
  padding: 16px;
}

.title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.film {
  margin-top: 4px;
  margin-left: 4px;
  width: 20px;
  height: 20px;
}

.card {
  position: relative;
}

.card:hover .title {
  color: #F2CF7F;
}

@media (max-width: 1024px) {
  .list-container {
      gap: 30px;
  }
}

@media (max-width: 768px) {
  .list-container {
      flex-direction: column;
      align-items: center;
  }
}
