/**********************************************************************
 * Anchor links (article content)
 */

:is(h1,h2,h3,h4,h5,h6) a:only-child {
	color:inherit;
	text-decoration:none;
}
@media screen {
	:is(h1,h2,h3,h4,h5,h6) a:only-child:is(:hover,:focus) {
		text-decoration:underline;
	}
	:is(h1,h2,h3,h4,h5,h6) a:only-child:is(:hover,:focus)::after {
		content:' ';
		display:inline-block;
		vertical-align:middle;
		width:0.9em;
		height:0.9em;
		margin:0 0 0 0.1em;
		background:transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M35,65 L65,35 M25,40 l-5,5 a1,1 0 0,0 35,35 l5,-5 M40,25 l5,-5 a1,1 0 0,1 35,35 l-5,5' fill='none' stroke='%23555f60' stroke-width='8' /%3E%3C/svg%3E") no-repeat center center;
	}
}
@media print {
	:is(h1,h2,h3,h4,h5,h6) a:only-child::after {
		display:none;
	}
}