/* Keep the links the same as they were before upgrading EdGEL:
 * - blue, not grey
 * - no underline
 * - not bolded
 */
a {
    color: rgb(var(--edgel-link-hover-color-rgb));
    font-weight: var(--edgel-body-font-weight);
    text-decoration: none;
}
a:hover {
    /*
     *  This is --edgel-link-color-rgb, but we can't use it directly since
     * reboot.scss overwrites it for a:hover
     */
    color: #3a3a3a;
}
