/* Make only tags blue while keeping other links white */

/* Tag styling */
.card-meta-tag a,
.post-meta-tag a,
.post-meta-tags a,
.tag-list a,
.tags a,
a[href*="tags/"],
.post-tags a,
.article-tags a,
.widget-tags a,
ul.tags li a,
.tag a,
.tags-list a,
.tag-cloud a {
  color: #3CA3F4 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

/* Tag hover state */
.card-meta-tag a:hover,
.post-meta-tag a:hover,
.post-meta-tags a:hover,
.tag-list a:hover,
.tags a:hover,
a[href*="tags/"]:hover,
.post-tags a:hover,
.article-tags a:hover,
.widget-tags a:hover,
ul.tags li a:hover,
.tag a:hover,
.tags-list a:hover,
.tag-cloud a:hover {
  color: #69B9F9 !important;
  text-decoration: underline !important;
}

/* Target the specific tag elements in the card meta */
.card-meta-tag.list-inline .list-inline-item a {
  color: #3CA3F4 !important;
}

/* Target the specific tag elements in single posts */
.single-post-meta .post-meta-tags a,
.post-meta-tags.list-unstyled.list-inline a {
  color: #3CA3F4 !important;
}