.blog-hero, .blog-hero-video {
  display: flex;
  gap: 25px;
  margin-bottom: 3rem;
}

.hero-img {
  width: auto;
  height: auto;
  flex: 1;
  /* overflow: hidden; */
  /* border-radius: 10px; */
  box-sizing: border-box;
  position: relative;
}

.hero-img img:nth-child(1) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.hero-logo{
  position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100px;
    height: 100px;
}

.hero-ads-img {
  width: auto;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-ads-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* -------------Blog Hero Video Styles */

.blog-hero-video .video-wrapper{
display: flex;
flex-direction: column;
/* height: 100%; */
object-position: center;
  display: block;
  
}

.blog-hero-video .widget-logo{
  display: block;
  /* margin: auto; */
  height: auto !important;
  width: 270px;
  margin: 0.3em auto;
}

.blog-hero-video .embedVideoContainer {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.blog-hero-video .embedVideoContainer iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .blog-hero {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
  }
  
  .hero-img {
  width: 100%;
}
  
  .hero-logo{
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 425px){
  
.hero-ads-img {
  width: 100%;
}

.hero-ads-img img {
  margin-top: 1rem;
}

  .hero-logo{
    width: 40px;
    height: 40px;
  }
}

/* -----------Blog Hero Video Styles---------- */
@media (max-width: 600px){
  .blog-hero-video{
    flex-direction: column;
  }
  
  .blog-hero-video .hero-img {
  width: 100%;
}

.blog-hero-video .hero-ads-img {
  width: 100%;
}

.blog-hero-video .hero-ads-img img {
  margin-top: 1rem;
}

  .blog-hero-video .hero-logo{
    width: 40px;
    height: 40px;
  }
}