.blog-body{
  background-color: white;
  padding: 20px;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--mainColor);
}

.blog-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cut-title{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.text-body p:nth-child(2){
  font-size: 24px;
  line-height: 26px;
  text-transform: capitalize;
}

.blog-body:hover .text-body p:nth-child(2){
  color: #297994;
}

.text-body p:nth-child(3) span{
  color: rgb(220, 192, 33);
}

.blog-img-2{
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.cut-title-2{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}




.detail-blog-body{
  background-color: white;
  border-radius: 2px;
  padding: 20px;
}

.detail-blog-body h1:nth-child(1){
  text-transform: uppercase;
}

.detail-blog-body p:nth-child(1) span{
  color: rgb(220, 192, 33);
}

.detail-blog-image{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.text-detail{
  margin-top: 20px;
  opacity: 75%;
  letter-spacing: .5px;
}


@media (min-width: 992px) {

  .blog-img{
    height: 180px;
  }

  .text-body{
    padding: 0 10px 0 10px;
  }

  .detail-blog-image{
    height: 450px;
  }

}