/* Custom dark theme overrides */

/*
 * Fix for article title links appearing black on a dark background.
 * This rule uses a more specific selector to target only the `<a>` tags
 * within the article cards, ensuring it overrides broader, less specific
 * link styles without the need for `!important`.
 */
.article-card .card-title a {
    color: #4e95f5;
    /* A readable light blue, consistent with dark themes */
    text-decoration: none;
}

.article-card .card-title a:hover {
    color: #83b8ff;
    /* A lighter blue for the hover state */
    text-decoration: underline;
}