/*
AS-01
Adjusted the following style for .skiplink:focus-visible to the following. Only affects the desktop view; mobile is unaffected. - JR 3/19
*/
@media (min-width: 57.5rem) {
		.skiplink:focus-visible {
		    padding: 30px 1rem; /* (Add 30px padding) */
		}
}


/*
AS-04
Added the following style to address the .news__text-container--links-only on homepage. - JR 3/19
Will need to research additional classes to focus only those that are on a light-blue background sitewide, as this focuses on the main page as to not disrupt elements on white backgrounds.
*/
.news__text-container--links-only a.news__link:focus-visible {
    outline: #003c71 2px solid;
}


/*
AS-06
Changed the heading tag for "Launch Your Career" to <h2>. - JR 3/19
*/


/*
Quality of Life Edits
*/
where:(:focus, :focus-visible) {
    outline-offset: 0.25rem; /* (Adds 4px padding for better spacing between outline an element) */
}