.ova-image-box {
  position: relative;
}
.ova-image-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(28, 35, 31, 0) 0%, rgba(28, 35, 31, 0.75) 100%);
  z-index: 1;
}
.ova-image-box .title-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 30px;
  bottom: 35px;
  width: calc(100% - 60px);
  z-index: 2;
}
.ova-image-box .title {
  position: relative;
  margin: 0 20px 0 0;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  white-space: pre-line;
}
.ova-image-box .title:before {
  position: absolute;
  content: "";
  top: -30px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #fff;
}
.ova-image-box .price {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--secondary);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
.ova-image-box .img {
  display: block;
  width: 100%;
  object-fit: cover;
}