/* Make the logo (the avatar, really) look a bit nicer by giving it a rounded border. */
header .md-logo img {
	border: 1px solid var(--md-primary-bg-color);
	border-radius: 20%;
}

/* Use our identity green as the background color for checked tasks in the
 * pymdownx.tasklist plugin, instead of another generic green that doesn't fit. */
.md-typeset [type="checkbox"]:checked + .task-list-indicator::before {
	background-color: var(--md-primary-fg-color);
}

/* Hide admonitions on pages that only list excerpts (e.g. blog archive). I
 * haven't yet found a way to make them less distracting. */
.md-post--excerpt .admonition {
	display: none;
}

/* "Brand" colors. */
.rss-color {
	color: #fb9e3a;
}
.jsonfeed-color {
	color: #8be028;
}
