/*Handle anchors*/
body.single-post .main-content .entry-content {
	h2 a.heading-anchor-link,
	h3 a.heading-anchor-link {
		opacity: 0;
		font-size: 10px;
		padding-left: 5px;
		position: relative;
		transition: opacity 0.2s linear;
	}

	h2:hover a.heading-anchor-link,
	h3:hover a.heading-anchor-link {
		opacity: 0.7;
	}

	h2:hover a.heading-anchor-link:hover,
	h3:hover a.heading-anchor-link:hover {
		opacity: 0.9;
	}

	h2 a.heading-anchor-link i,
	h3 a.heading-anchor-link i {
		position: relative;
		margin-left: 5px;
	}

	h2:not(:first-child)::before,
	h3:not(:first-child)::before {
		display: block;
		content: "";
		height: 75px;
		margin-top: -75px;
	}

	@media (min-width: 1024px) {
		h2:not(:first-child)::before,
		h3:not(:first-child)::before {
			height: 135px;
			margin-top: -135px;
		}
		h2:first-child::before,
		h3:first-child::before {
			display: block;
			content: "";
			height: 135px!important;
			margin-top: -135px!important;
		}
	}
}
