/* OD Auto Linker — Front-end link styles */

/* All links inside paragraphs */
p a,
.entry-content a,
.post-content a,
.page-content a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.15s ease;
}

p a:hover,
.entry-content a:hover,
.post-content a:hover,
.page-content a:hover,
p a:focus,
.entry-content a:focus,
.post-content a:focus,
.page-content a:focus {
    text-decoration-color: currentColor;
}

/* Auto-link specific enhancement */
a.odal-auto-link {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.15s ease;
}

a.odal-auto-link:hover,
a.odal-auto-link:focus {
    text-decoration-color: currentColor;
}
