.single-post-card .post-item {
  width: 100%;
}

.single-post-card .post-item {
  margin-bottom: 30px;
  min-height: fit-content;
  box-shadow: 0px 8px 48px 12px rgba(0, 82, 51, 0.2);
}

.single-post-card .post-item:hover {
  box-shadow: 0px 8px 48px 12px rgba(0, 82, 51, 0.4);
}

.single-post-card .img-container {
  position: relative;
  height: 215px;
  overflow: hidden;
}

.single-post-card .img-container .post-image {
  object-fit: cover;
  transform: scale(1.0);
  width: 100%;
  height: 100%;
  -webkit-transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
}

.single-post-card .post-item:hover .img-container .post-image {
  transform: scale(1.1);
}

.single-post-card .main-category {
  position: absolute;
  max-width: 300px;
  top: 20px;
  left: -10px;
  text-transform: uppercase;
  background-color: #7EAAB5;
  padding: 4px 20px;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  z-index: 99;
}

.single-post-card .main-category:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #436C51;
  left: 0;
  bottom: -15px;
  z-index: 4;
  border-left: 10px solid transparent;
  border-top: 15px solid #436C51;
  background-clip: content-box;
}

.single-post-card .img-container .video-play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.single-post-card .post-item .post-content-wrapper {
  padding: 30px;
  background-color: #fff;
}

.single-post-card .post-meta {
  display: inline-flex;
}

.single-post-card .post-meta .post-type {
  background-color: #EFEEEA;
  margin-left: 20px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 21px;
  position: relative;
  height: fit-content;
}

.single-post-card .post-meta .post-type:before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #5994A1;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.single-post-card .event-location {
  display: flex;
}

.single-post-card .event-location .dashicons-location {
  font-size: 24px;
  margin-right: 5px;
}

.single-post-card .reading-time {
  display: flex;
}