.blog-img {
  position: relative; 
  display: inline-block;
  width:100%;
}

.blog-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-image: linear-gradient(0deg, #001f36 20%, #f2295b00 55%);
  z-index: 1;
  transition: all 0.2s ease;
}

.blog-img img {
  border-radius: 10px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0; 
}


.blog-img .position-absolute {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  color: #fff;
  z-index: 2;
}

.blog-img span {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-osw);
    color: #fff;
}

.blog-img a {
  text-decoration: none;
}

.blog-img a h3 {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font-osw);
    color: #fff;
    text-decoration: none;
}

@media(max-width: 992px){
    .font-call-cnt {
        margin-bottom: 0;
    }
    
    .blog-img a h3 {
        font-size: 22px;
    }
}