.breadcrumb-blogs a {
  color: var(--bs-gray-400);
}

.breadcrumb-blogs li:hover a {
  color: var(--bs-primary);
}

.card.card__blogs{
    background: var(--bs-light);
}
.card.card__blogs .card__blogs__time{
    color: var(--bs-gray-900);
}
.card.card__blogs:hover{
    background: var(--primary-gradient10);
}
.card.card__blogs:hover :is(h2, h2 a, p , time) {
  color: var(--bs-white);
}

/* Wishlist heart icon */
.wishlist-heart {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.wishlist-heart.active {
  animation: heartPop 0.4s ease;
}
@keyframes heartPop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.35); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.blog-article a {
  color: #2563eb;
  text-decoration: underline;
}

.blog-article a:hover {
  color: #1d4ed8;
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

.blog-article table th {
  background: #1e293b;
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
}

.blog-article table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.blog-article table tr:hover td {
  background: #f8fafc;
}

@media (max-width: 768px) {
  .blog-article table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .blog-article table th,
  .blog-article table td {
    padding: 8px 12px;
  }
}

.blog-faqs {
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}

.blog-faqs .faq-item {
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.blog-faqs .faq-item h3 {
  color: #1e293b;
}

.blog-faqs .faq-item p {
  color: #475569;
}
