/* ================= BLOG PAGE CLEAN DESIGN ================= */

/* Section spacing */
.welcome_cnt{
  padding:40px 0;
}

/* Blog Heading */
.bar{
  background:#fff;
  padding:15px 20px;
  border-radius:8px;
  border-left:4px solid #e41f05;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  margin-bottom:20px;
}

/* Blog Content Area */
#pageData{
  background:#fff;
  padding:20px;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* Sidebar */
.sidebar{
  background:#fff;
  padding:20px;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* Sidebar Title */
.widget h4{
  font-size:18px;
  margin-bottom:15px;
  border-bottom:1px solid #eee;
  padding-bottom:8px;
  font-weight:600;
}

/* Sidebar Links */
.widget-menu{
  list-style:none;
  padding-left:0;
}

.widget-menu li{
  margin-bottom:10px;
}

.widget-menu li a{
  display:block;
  padding:10px 12px;
  border-radius:6px;
  background:#f8f9fa;
  transition:0.3s;
}

.widget-menu li a:hover{
  background:#e41f05;
  color:#fff !important;
}
 
/* Trending Slider Images */
.slick-slider img{
  border-radius:6px;
  transition:0.3s;
}

.slick-slider img:hover{
  transform:scale(1.05);
}

/* Footer spacing fix */
.footer{
  margin-top:40px;
}

/* Floating Buttons fix */
.floating-buttons a i{
  padding-right:0 !important;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

.bar{
  font-size:18px;
  padding:12px;
}

#pageData{
  padding:15px;
}

.sidebar{
  margin-top:20px;
}

}
@media(min-width:992px){
.sidebar{
  position:sticky;
  top:100px;
}
}
