.wd-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-list-cont {
  max-width: 1440px;
  width: 100%;
  padding: 40px 140px 90px 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wd-list-title {
  color: #3f3a36;
  text-align: center;
  font-family: "Averta Std CY";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wd-list-items {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}
.wd-list-item {
  width: calc((100% - 20px * 2) / 3);
}
.wd-list-item.hidden {
  display: none;
}

.wd-list-item img {
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  aspect-ratio: 372/467;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.wd-list-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.wd-list-item p {
  margin-top: 12px;
  color: #3f3a36;
  text-align: center;
  font-family: "Averta Std CY";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.wd-list-btn:hover {
  opacity: 0.8;
}
.wd-list-btn {
  margin-top: 55px;
  display: inline-flex;
  padding: 10px 25px;
  align-items: flex-start;
  border: 0.5px solid #d9d9d9;
  color: #3f3a36;
  text-align: justify;
  font-family: "Averta Std CY";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .wd-list-cont {
    padding: 30px 10px 60px 10px;
  }
  .wd-list-title {
    color: #3f3a36;
    text-align: center;
    font-family: "Averta Std CY";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .wd-list-items {
    margin-top: 20px;
    gap: 20px 15px;
    justify-content: space-between;
  }
  .wd-list-item {
    width: calc((100% - 15px * 2) / 2);
  }
  .wd-list-item img {
    aspect-ratio: 192.76/242;
  }
  .wd-list-item p {
    margin-top: 10px;
    color: #3f3a36;
    text-align: center;
    font-family: "Averta Std CY";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  .wd-list-btn {
    margin-top: 40px;
    display: inline-flex;
    padding: 10px 25px;
    align-items: flex-start;
    color: #3f3a36;
    text-align: justify;
    font-family: "Averta Std CY";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
