/* E-Mail-Schutz Styles */

.email-protected {
    cursor: pointer;
    position: relative;
}

.email-protected::before {
    content: '🔒 ';
    font-size: 0.8em;
    opacity: 0.6;
}

.email-protected:hover {
    text-decoration: underline;
}

/* Nach Dekodierung: Schloss entfernen */
.email-protected.decoded::before {
    content: '';
}

/* Noscript Fallback: Link behält gleichen Style */
noscript .email-protected {
    cursor: pointer;
    text-decoration: underline;
    color: inherit;
}

noscript .email-protected::before {
    content: '🔒 ';
    font-size: 0.8em;
    opacity: 0.6;
