/*
 * a11y-fixes.css for dvdbrowser.
 *
 * Underlines body-content links so they remain distinguishable when sitting
 * inside a block of text — DubBot's link-in-text-block rule needs more than
 * color alone to differentiate a link from the surrounding paragraph.
 *
 * Scoped to .field--type-text and .views-row so site navigation and the
 * overlay anchors (handled separately in the template override) aren't
 * affected.
 */
.field--type-text a,
.field--type-text-long a,
.field--type-text-with-summary a,
.field--name-body a,
.views-row p a,
.views-row li a:not(.overlay-target-link):not(.overlay-icon),
.views-row td a,
.region-content p a {
  text-decoration: underline;
}
.field--type-text a:hover,
.field--type-text-long a:hover,
.field--type-text-with-summary a:hover,
.field--name-body a:hover,
.region-content p a:hover {
  text-decoration: underline;
}
