.pg-humble-grid {
  display: grid;
}
.pg-humble-item {
  position: relative;
  &:hover {
    .pg-humble-image-wrap {
      transform: translateY(-100px);
    }
  }
}
.pg-humble-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.4s;
  z-index: 10;
  overflow: hidden;
  .pg-humble-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
  }
}
.pg-humble-content {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  padding: 20px;
  height: 100px;
  width: 100%;
  backface-visibility: hidden;
  display: flex;
  // justify-content: space-between;
  align-items: center;
}
.pg-humble-title {
  margin-block: 0 6px;
  margin-inline: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}
.pg-humble-meta {
  font-size: 14px;
  color: #eee;
  text-transform: capitalize;
}
.pg-humble-readmore {
  display: inline-flex;
  a {
    color: rgba(13, 59, 84, 0.8);
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    padding: 6px 10px;
    border-radius: 2px;
    transition: all 0.3s ease;
    &:hover {
      color: #0d3b54;
    }
  }
}
