.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: 35px 0;
  border-bottom: 1px solid rgba(28, 35, 31, 0.1);
}
.ova-latest-posts .item:first-child {
  padding-top: 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;
}
.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: 130px;
  min-width: 130px;
  min-height: 130px;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}
.ova-latest-posts .item .info {
  display: flex;
  justify-content: space-evenly;
  flex-flow: column;
}
.ova-latest-posts .item .info .post-title {
  margin: 0 0 20px 0;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid rgba(28, 35, 31, 0.1);
}
.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 {
  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);
}