.pg-axen-grid {
  display: grid;
}
.pg-axen-item {
  position: relative;
  overflow: hidden;
}
.pg-axen-item:hover .pg-axen-content {
  opacity: 1;
  transform: translateY(-12%);
  z-index: 1;
}
.pg-axen-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.pg-axen-image-wrap .pg-axen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.pg-axen-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
  padding: 25px;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  margin: 0 10px 0 10px;
}
.pg-axen-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: rgba(13, 59, 84, 0.8);
}
.pg-axen-meta {
  font-size: 14px;
  color: #567687;
  text-transform: capitalize;
}
