/*a { */
/*  text-decoration: none !important;*/
/*  color: inherit;*/
/*}*/
/*a:hover {*/
/*  text-decoration: none !important;*/
/*  color: inherit;*/
/*}*/

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas i {
  line-height: 2 !important;
}

/* Mobile only (max-width: 768px for tablets & below) */
@media (max-width: 768px) {
  .fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas i {
    line-height: 2 !important; /* example in px */
  }
}

/* Extra small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas i {
    line-height: 2 !important; /* smaller px for small phones */
  }
}
/* Blog Card */
.blogpostsblog-card {
  background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  color: #222;
}
.blogpostsblog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* Headings */
.blogHeading {
  font-size: 1.4rem;
  color: #0056b3;
  margin-bottom: 10px;
  font-weight: 600;
}
.blogHeading:hover { color: #0d6efd; }

/* Content */
.blogContent {
  color: #2c2c2c;
  font-size: 16px !important;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Links inside content */
.blogContent a {
  color: #0d6efd;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.blogContent a:hover {
  color: #084298;
  border-bottom: 1px solid #084298;
}

/* Responsive Backgrounds */
@media (max-width: 992px) {
  .blogpostsblog-card { background: linear-gradient(135deg, #fff7e6, #fff3cc); }
  .blogHeading { color: #b35a00; }
  .blogHeading:hover { color: #ff7b00; }
}
@media (max-width: 576px) {
  .blogpostsblog-card { background: linear-gradient(135deg, #f9f9f9, #e6ffe6); padding: 15px; }
  .blogHeading { font-size: 1.2rem; color: #1a7d1a; }
  .blogHeading:hover { color: #28a745; }
  .blogContent { font-size: 0.95rem; }
}

/* Image */
.responsive-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 15px;
  object-fit: contain;
}

/* Sidebar */
.sidebar-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.sidebar-box h5 { font-weight: 600; color: #0d6efd; margin-bottom: 12px; }
.sidebar-box ul li { margin-bottom: 8px; }
.sidebar-box ul li a { color: #333; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.sidebar-box ul li a:hover { color: #0d6efd; }

/* Share buttons */
.share-buttons i { transition: transform 0.2s; }
.share-buttons i:hover { transform: scale(1.15); }

/* Blog date */
.blog-date { font-size: 0.85rem; color: #888; margin-top: 10px; }