/* ==========================================================================
   Smart Internal Auto-linking — front-end styles
   Table of contents:
   1. Auto-inserted link appearance (dynamic color injected via wp_add_inline_style)
   ========================================================================== */

/* 1. Auto-inserted link appearance with maximum theme override compatibility */
.sil-auto-link,
body a.sil-auto-link,
body .entry-content a.sil-auto-link,
body .elementor-widget a.sil-auto-link,
body article a.sil-auto-link,
body main a.sil-auto-link {
	text-decoration: underline !important;
	font-weight: 500 !important;
	transition: opacity 0.2s ease, color 0.2s ease !important;
}

.sil-auto-link:hover,
body a.sil-auto-link:hover,
body .entry-content a.sil-auto-link:hover,
body .elementor-widget a.sil-auto-link:hover {
	opacity: 0.8 !important;
}
