/* ==========================================================
   CUSTOM.CSS
   File di override "forzato" per gli stili dei link.
   Va caricato DOPO style.css (e dopo qualsiasi altro CSS)
   cosi' che le regole con !important abbiano sempre la priorita'.
   STN - 29/07/2026
   ========================================================== */

/* --- Link standard del sito: blu, sottolineato, hover --- */
/*
a {
	color: #0066cc !important;
	text-decoration: underline !important;
	transition: color 0.3s ease !important;
}

a:visited {
	color: #0055aa !important;
}

a:hover {
	color: #004080 !important;
	text-decoration: underline !important;
}

a:active {
	color: #002b55 !important;
}

a:focus {
	outline: 2px solid #66a3ff !important;
	outline-offset: 2px !important;
}

/* --- Eccezioni intenzionali: vanno mantenute diverse dal blu standard --- */

/* Link "HOME" attivo nel menu di navigazione */
/*
#nav > ul > li > a.nav-active,
.nav-active {
	color: #26385D !important;
	font-weight: bold !important;
	text-decoration: none !important;
}
*/
/* Link azzurro (es. Bilancio di Sostenibilita') */
/*
.text-blue {
	color: #04a0d4 !important;
}
.text-blue:hover {
	color: #037ba8 !important;
}
*/
/* Link nel footer (sfondo scuro) */
/*.footerbox a {
	color: white !important;
	text-decoration: none !important;
}
.footerbox a:hover {
	text-decoration: underline !important;
}
*/
/* Link nei credits (sfondo scuro) */
/*.credits a {
	color: white !important;
	text-decoration: underline !important;
}
*/
/* Link nel banner cookie (sfondo verde) */
/*
#cookie-law p a {
	color: white !important;
}
*/
/* Icone social nel footer/header */
/*
.fab a {
	color: #666 !important;
}
.fab a:hover {
	color: #FF9900 !important;
}
*/