.wd-album {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f3ef;
}
.wd-album-cont {
  max-width: 1440px;
  width: 100%;
  padding: 110px 140px;
}
.wd-album-title {
  color: #3f3a36;
  font-family: "Averta Std CY";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  width: fit-content;
}
.wd-album-gallery {
  border-radius: 10px;
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 200px); /* <- thêm hàng thứ 3 */
  gap: 10px;
  background-color: transparent;
}

.wd-album-item {
  border-radius: 10px;
  background-color: #d3d3d3;
}

/* Ảnh 1: chiếm 2 hàng bên trái */
.wd-album-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* Ảnh 2 và 3: nằm trên cùng */
.wd-album-item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.wd-album-item-3 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

/* Ảnh 4: dưới ảnh 1 */
.wd-album-item-4 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

/* Ảnh 5: chiếm 2 cột dưới ảnh 2 và 3 */
.wd-album-item-5 {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
}
@media screen and (max-width: 992px) {
  .wd-album-cont {
    padding: 50px 16px 60px 16px;
  }
  .wd-album {
    padding: 0;
    background-size: 100% 100% !important;
  }
  .wd-album-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .wd-album-item {
    min-height: 120px;
    width: 100%;
  }
}
