.blog-carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0px 53px 32px rgba(0, 0, 0, 0.02), 
              0px 6px 13px rgba(0, 0, 0, 0.04), 
              0px 1px 3px rgba(143, 143, 143, 0.20), 
              0px 0px 0px 1px #EAEAEA, 
              0px -2.4px 0px rgba(61, 61, 61, 0.04) inset;
}

.blog-carousel-container .custom-blog-box {
  display: flex;
  gap: 20px;
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
}

.blog-carousel-container .blog-thumimg-box {
  width: 45%;
  height: auto;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 16px;
}

.blog-carousel-container .blog-content-box {
  width: 55%;
  padding: 20px;
}

.blog-carousel-container .badge {
  display: inline-block;
  background: #EBFAFF;
  color: #1F87AD;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.blog-carousel-container .title a {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #272727;
  margin: 10px 0;
  transition: .3s all ease;
}

.blog-carousel-container .title:hover a {
    
    color: #000;
}

.blog-carousel-container .description {
  font-size: 14px;
  line-height: 1.6;
  color: #5C5C5C;
  margin-bottom: 20px;
}

.blog-carousel-container .author-details-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-carousel-container .author-details-box img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.blog-carousel-container .author-details-box .author-title {
  font-size: 14px;
  font-weight: 600;
  color: #272727;
}

/*.blog-carousel-container .owl-controls.clickable{*/
/*    display: none !important;*/
/*}*/

@media (max-width: 767px) {
    .blog-carousel-container{
        padding: 15px;
    }
 .blog-carousel-container .custom-blog-box{
     flex-direction: column;
 }
 .blog-carousel-container .blog-content-box{
     padding: 15px 0;
     width:100%;
 }
.blog-carousel-container .blog-thumimg-box{
      width:100%;
      height: 300px;
 }
 
}
