/* 
 * Cybersecurity Category Fix
 * This stylesheet ensures all cybersecurity category labels use coral color
 */

/* Direct approach to style all cybersecurity categories */
.blog-card-category {
  color: white !important;
}

/* Make Technology category blue like in the screenshot */
.blog-card-category.category-technology {
  background-color: #4169E1 !important; /* Royal Blue */
}

/* Make Cybersecurity category coral */
.blog-card-category.category-cybersecurity,
div.blog-card-category[class*="cybersecurity"],
div.blog-card-category:contains("Cybersecurity") {
  background-color: #FF7F50 !important; /* Coral color */
}

/* Force all elements with cybersecurity in the class or text to be coral */
[class*="cybersecurity"],
[class*="Cybersecurity"] {
  background-color: #FF7F50 !important;
}
