/*
 * Tag My Hash public stylesheet.
 *
 * Minimal default styling for hashtag links. Themes may override
 * by targeting the .tagmyhash-link selector.
 */

.tagmyhash-link {
	color: #1a73e8;
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.15s ease-in-out;
}

.tagmyhash-link:hover,
.tagmyhash-link:focus {
	color: #0b47a1;
	text-decoration: underline;
	outline: none;
}

.tagmyhash-link:focus-visible {
	outline: 2px solid #0b47a1;
	outline-offset: 2px;
}