.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-share {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Icon */
.btn-share i {
  font-size: 16px;
}

/* Hover effect */
.btn-share::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.2);
  transition: 0.3s;
}

.btn-share:hover::before {
  width: 100%;
}

.btn-share:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Brand Colors */
.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.linkedin { background: #0a66c2; }
.whatsapp { background: #25d366; }

/* Mobile optimization */
@media (max-width: 576px) {
  .btn-share span {
    display: none;
  }
  .btn-share {
    padding: 10px;
    border-radius: 50%;
    justify-content: center;
  }
}


.blog-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.nav-card {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  border-radius: 16px;
  background: #f8f9fa;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

/* Hover Animation */
.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Gradient overlay effect */
.nav-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, #bb9d3b, #8e7b3e);
  opacity: 0.08;
  transition: 0.3s;
}

.nav-card:hover::before {
  width: 100%;
}

/* Text styles */
.nav-label {
  font-size: 13px;
  font-weight: 600;
  color: #bb9d3b;
  display: block;
  margin-bottom: 6px;
}

.nav-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Align text */
.prev {
  text-align: left;
}

.next {
  text-align: right;
}

/* Mobile */
@media (max-width: 576px) {
  .blog-navigation {
    flex-direction: column;
  }

  .nav-card {
    text-align: left !important;
  }
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  margin-bottom: 12px;
}

.blog-list a {
  display: block;
  padding: 14px 16px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

/* Left accent line */
.blog-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0%;
  width: 4px;
  background: #bb9d3b;
  border-radius: 4px;
  transition: 0.3s;
}

/* Hover effects */
.blog-list a:hover {
  background: #ffffff;
  color: #bb9d3b;
  transform: translateX(6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.blog-list a:hover::before {
  height: 60%;
}

/* Optional: truncate long titles */
.blog-list a {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  margin: 0;
}

.tag-list a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  color: #bb9d3b;
  border: 1px solid #bb9d3b;
  border-radius: 50px;
  background: rgba(187, 157, 59, 0.1);
  transition: all 0.3s ease;
}

.tag-list a:hover {
  background: #bb9d3b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(187, 157, 59, 0.3);
}

.blog-home5 #content{
    padding: 15px;
}

.card .card-body .badge{
    background-color: #bb9d3b;
    color: #fff;
    border: 1px solid transparent;
}
.card .card-body .badge:hover{
    background-color: #fff;
    color: #bb9d3b;
    border: 1px solid #bb9d3b;
}

#content img {
  width: 100%;
  height: 400px; /* set same height */
  object-fit: cover; /* prevents distortion */
}