  /* Keep link color consistent */
main .text-formatted a {
  color: #006DE0;
}


/* ✅ Safely remove underline from all link types without killing button color */
a.btn,
a.button,
a.wp-block-button__link,
a.column_button,
a.cta,
a.overlay-btn,
a.faq-cta {
  text-decoration: none !important;
  box-shadow: none !important; /* optional cleanup */
  background-image: none !important;
}

/* But restore background color for real buttons */
a.btn,
a.button,
a.wp-block-button__link,
a.column_button,
a.cta,
a.overlay-btn,
a.faq-cta {
  background-color: var(--btn-bg, #0066cc) !important;
  color: var(--btn-text, #fff) !important;
}

main .text-formatted a.card-link,
main .text-formatted a.advanced-card-link,
main .text-formatted a.acard-link {
  background-image: none !important;
  background-size: 0 !important;
  padding-bottom: 0 !important;
  transition: none !important;
  text-decoration: none !important;
}

a.jumbo-link {
  background-color: #f1f1f1 !important; /* light gray base */
  color: #003366 !important; /* UIS dark blue text */
  text-decoration: none !important; /* remove underline */
  background-image: none !important; /* cancel underline gradient */
  transition: color 0.3s ease, background-color 0.3s ease !important;
}

/* Force Theme 2 dropdown hover to stay white text on dark blue background */
#primary_nav_wrap > ul > li > ul > li:hover > a,
#primary_nav_wrap > ul > li > ul > li:hover > span {
  background-color: var(--t2-blue) !important;
  color: #fff !important;
}
a.jumbo-link:hover {
  background-color: #f1f1f1 !important; /* keep same background */
  color: #006DE0 !important; /* bright UIS blue on hover */
  text-decoration: none !important;
  background-image: none !important;
}

/* === FIX UIS BLOCK BUTTON HOVER === */
.wp-block-button__link,
a.column_button {
  display: inline-block !important;
  text-decoration: none !important;
  padding: 16px 26px !important;
  margin: 8px 0 !important;
  border-radius: 4px !important;
  background-color: #0066cc !important; /* dark UIS blue base */
  color: #ffffff !important;
  font-weight: 600 !important;
  text-align: center !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* ✅ UIS hover: gold background, white text stays */
.wp-block-button__link:hover,
a.column_button:hover {
  background-color: #003366 !important; 
  color: #ffffff !important;            
  text-decoration: none !important;
}
