	
/* ===== GRID ===== */
#m_85055 #m_news{
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* 3 CỘT */
#m_85055 #m_news > div{
  width: calc(33.333% - 17px);
}

/* RESPONSIVE */
@media (max-width: 992px){
  #m_85055 #m_news > div{
    width: calc(50% - 13px);
  }
}

@media (max-width: 576px){
  #m_85055 #m_news > div{
    width: 100%;
  }
}

/* ===== CARD ===== */
#m_85055 .bp_block_item{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: block !important;
  margin-top:20px;
}

#m_85055 .bp_block_item:hover{
  transform: translateY(-5px);
}

/* ===== ẢNH ===== */
#m_85055 .bp_hot_news_img{
  height: 300px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#m_85055 .bp_hot_news_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER ZOOM */
#m_85055 .bp_block_item:hover .bp_hot_news_img img{
  transform: scale(1.1);
}

/* ===== CONTENT ===== */
#m_85055 .bp_content_news_main{
  background: #fff;
  padding: 15px;
  text-align: center;
}

/* ===== TITLE ===== */
#m_85055 .news_title{
  color: #0b5ed7;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
}

/* ===== NÚT ===== */
#m_85055 .bp_news_more{
  margin-top: 10px;
  padding: 6px 14px;
  background: #2f7db3;
  color: #fff !important;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
  display: none !important;
}


