.pg-panda-grid {
  display: grid;
}
.pg-panda-item {
  position: relative;
  margin-block-end: 60px;
  &:hover {
    .pg-panda-img {
      transform: scale(1.08) translateY(-15px);
    }
  }
}
.pg-panda-image-wrap {
  position: relative;
  overflow: hidden;
  block-size: 100%;
  inline-size: 100%;
  .pg-panda-img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    vertical-align: middle;
    transform: scale(1.08) translateY(0);
    transform-origin: 100% 0%;
    transition: transform 0.6s cubic-bezier(0.4, 0.01, 0.14, 0.99);
  }
}
.pg-panda-content {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  background-color: #fff;
  overflow: hidden;
  margin: 30px;
  padding: 30px;
  transform: translateY(70%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.pg-panda-item:hover .pg-panda-content {
  transform: translateY(0);
}
.pg-panda-title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  color: rgba(13, 59, 84, 0.8);
}
.pg-panda-meta {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(13, 59, 84, 0.7);
  margin-block-end: 5px;
}
.pg-panda-date {
  position: absolute;
  inset-block-start: 0;
  margin: 30px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
}
.pg-panda-day {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}
