.ova-latest-posts .item {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: flex;
  padding: 20px;
  margin: 0 -10px 10px -10px;
}
.ova-latest-posts .item:last-child {
  margin-bottom: 0;
}
.ova-latest-posts .item:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}
.ova-latest-posts .item:hover .info .post-title a {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--primary);
}
.ova-latest-posts .item .media {
  margin-right: 15px;
}
.ova-latest-posts .item .media a {
  display: flex;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.ova-latest-posts .item .media a img {
  width: 70px;
  min-width: 70px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ova-latest-posts .item .info {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.ova-latest-posts .item .info .post-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.ova-latest-posts .item .info .post-title a {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--heading);
}
@media (max-width: 390px) {
  .ova-latest-posts .item .info .post-title {
    font-size: 16px;
  }
}
.ova-latest-posts .item .info .item-meta {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 5px;
}
.ova-latest-posts .item .info .item-meta .left {
  color: var(--primary);
  margin-right: 3px;
}
.ova-latest-posts .item .info .item-meta .right a {
  color: var(--text);
}
.ova-latest-posts .item .info .item-meta .right a:hover {
  color: var(--primary);
}