.post-gallery {
  width: 100% !important;
}
.post-gallery .title {
  font-size: var(--h1);
  color: var(--color);
  margin-bottom: 8%;
}
.post-gallery .gallery-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5%;
  row-gap: 5.3vh;
}
.post-gallery .gallery-list .item {
  width: 33%;
  padding-right: 15px;
}
.post-gallery .gallery-list .item .a {
  display: block;
}
.post-gallery .gallery-list .item .a .pic {
  width: 100%;
  position: relative;
  aspect-ratio: 2000 / 2666;
  aspect-ratio: 2000 / 2972;
  background-color: #cdcdcd;
  box-sizing: border-box;
  margin-bottom: 21px;
  border-radius: 0;
}
.post-gallery .gallery-list .item .a .pic .thumbnail {
  object-fit: cover;
}
.post-gallery .gallery-list .item .a .pic .texture {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  mix-blend-mode: multiply;
}
.post-gallery .gallery-list .item .a .pic::after,
.post-gallery .gallery-list .item .a .pic::before {
  content: '';
  display: block;
}
.post-gallery .gallery-list .item .a .pic::after {
  --deg: 45;
  --tanDeg: 1;
  --height: 10px;
  width: 100%;
  height: 10px;
  transform: skew(45deg) translate(calc(var(--tanDeg) / 2 * var(--height)));
  position: absolute;
  top: 100%;
  background-color: #8b8b8b;
}
.post-gallery .gallery-list .item .a .pic::before {
  --deg: 45;
  --tanDeg: 1;
  --height: 10px;
  width: 10px;
  height: 100%;
  transform: skewY(45deg) translateY(calc(var(--tanDeg) / 2 * var(--height)));
  background-color: #ccc;
  position: absolute;
  left: 100%;
}
.post-gallery .gallery-list .item .a .name-container .name {
  color: var(--color);
  font-size: 2.5rem;
  text-transform: capitalize;
}
@media all and (max-width: 768px) {
  .post-gallery .container .head-title {
    margin-top: 14vw;
    font-size: 3rem;
    margin-bottom: 13.4vw;
  }
  .post-gallery .container .gallery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8em 0.3rem;
  }
  .post-gallery .container .gallery-list .item {
    width: 100%;
    padding-right: 15px;
    box-sizing: border-box;
  }
}
