/* Remove underline from h3 elements */

h3 {
    text-decoration: none !important;
    border-bottom: none !important;
}

h3:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Also apply to links within h3 */
h3 a,
h3 a:hover,
h3 a:focus,
h3 a:visited {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Remove any pseudo-element underlines */
h3::before,
h3::after {
    border-bottom: none !important;
}