.hc-blog-single * {
	box-sizing: border-box;
	font-family: var(--pillar-font);
}
.hc-blog-single a {
	color: var(--pillar-main);
}
.hc-blog-single--content_wrap > .component-wrapper {
}
.hc-blog-single--toc {
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
	max-height: calc(100vh - 200px);
	overflow: auto;
}
.hc-blog-single--toc.open .hc-blog-single--toc_trigger {
	transform: rotate(180deg) translateY(15px);
}
@media screen and (max-width: 767px) {
	.hc-blog-single--toc {
		margin-bottom: 40px;
	}
}
.hc-blog-single--toc_title_wrap {
	position: relative;
}
.hc-blog-single--toc_title {
	background-color: var(--pillar-main);
	font-family: var(--pillar-font-bold);
	padding: 20px 25px;
	margin: 0;
	color: white;
	font-weight: 600;
	padding-right: 50px;
	font-size: 23px !important;
}
.hc-blog-single--toc_trigger {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	line-height: 0;
}
.hc-blog-single--toc_items {
	margin: 0;
	background-color: white;
	list-style-type: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}
.hc-blog-single--toc_items li:first-child {
	padding-top: 23px;
}
.hc-blog-single--toc_items li:last-child {
	padding-bottom: 23px;
}
.hc-blog-single--toc_items li {
	padding: 13px 0;
	margin-bottom: 0;
}
.hc-blog-single--toc_items li a {
	font-family: var(--pillar-font-med);
	font-size: 16px;
	line-height: 1.2em;
	text-decoration: none;
	color: black;
}
.hc-blog-single--toc_items li a.active {
	font-family: var(--pillar-font-bold);
}

.hc-blog-single--toc_items li + li {
	border-top: 1px solid #d1d1d1;
}
.hc-blog-single--content_wrap {
	padding-top: 75px;
	padding-bottom: 75px;
	background-color: #f7f7f7;
	position: relative;
}
@media screen and (min-width: 768px) {
	.hc-blog-single--content_wrap {
		padding-top: 125px;
		padding-bottom: 75px;
	}
}
.hc-blog-single--content_wrap_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 25%;
}
.hc-blog-single--content_wrap > .component-wrapper {
	z-index: 1;
	position: relative;
}
.hc-blog-single--sidebar {
	height: 100%;
}

.hc-blog-sidebar-item + .hc-blog-sidebar-item {
	margin-top: 40px;
}

.hc-blog-single--content {
}

.hc-blog-single--content h1,
.hc-blog-single--content h2,
.hc-blog-single--content h3,
.hc-blog-single--content h4,
.hc-blog-single--content h5,
.hc-blog-single--content h6 {
	font-family: var(--pillar-font-bold);
	font-weight: bold !important;
	line-height: 1.4em !important;
}
.hc-blog-single--content h1 span,
.hc-blog-single--content h2 span,
.hc-blog-single--content h3 span,
.hc-blog-single--content h4 span,
.hc-blog-single--content h5 span,
.hc-blog-single--content h6 span {
	font-weight: bold !important;
}
.hc-blog-single--content h1 {
	font-size: 34px !important;
}
.hc-blog-single--content h2 {
	font-size: 28px !important;
}
.hc-blog-single--content h3 {
	margin-bottom: 30px;
	font-size: 25px !important;
}
.hc-blog-single--content h4 {
	font-size: 23px !important;
}
.hc-blog-single--content h5 {
	font-size: 20px !important;
}
.hc-blog-single--content h6 {
	font-size: 16px !important;
}
.hc-blog-single--content p {
	margin: 25px 0;
}
.hc-blog-single--content p,
.hc-blog-single--content li,
.hc-blog-single--content span {
	font-weight: 300;
	line-height: 1.5em;
}
.hc-blog-single--content strong {
	font-weight: bold;
}
/**
 * Ordered list
 */
.hc-blog-single--content ol {
	list-style: none;
	counter-reset: my-counter;
	position: relative;
	padding-left: 50px;
	padding-top: 5px;
}
.hc-blog-single--content ol ul {
	margin-top: 20px;
}

.hc-blog-single--content ol::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 8px;
	background:
		linear-gradient(180deg, #7d52f8 1.49%, rgba(125, 82, 248, 0) 98.51%),
		#cf323d;
	height: 100%;
}
.hc-blog-single--content ol > li {
	position: relative;
	margin-bottom: 20px;
}
.hc-blog-single--content ol > li::before {
	content: counter(my-counter) ". ";
	counter-increment: my-counter;
	font-weight: bold;
	position: absolute;
	left: -20px;
}

/* Reset counter for nested ol elements */
.hc-blog-single--content ol > li ol,
.hc-blog-single--content ol > li ul {
	counter-reset: my-counter;
	padding-left: 30px; /* Adjust padding for nested lists if needed */
}

.hc-blog-single--content ol > li ol li::before {
	content: counter(my-counter) ". ";
	counter-increment: my-counter;
	font-weight: bold;
	position: absolute;
	left: -20px;
}

/**
 * normal list
 */
.hc-blog-single--content ul {
	list-style-type: none;
	padding-left: 20px;
	clear: both;
}
.hc-blog-single--content ul li {
	position: relative;
	margin-bottom: 15px;
}

.hc-blog-single--content ul li:before {
	content: "";
	background-color: var(--pillar-main);
	position: absolute;
	left: -20px;
	top: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.hc-blog-sidebar-callout .pillar--product-callout_content_wrap {
	padding: 25px 25px;
	position: relative;
	z-index: 1;
}

.hc-blog-sidebar-callout .pillar--product-callout_link .button {
	width: 100%;
	display: block;
	text-align: center;
}

.hc-blog-sidebar-callout .pillar--product-callout_logo {
	margin-bottom: 10px;
}
.hc-blog-sidebar-callout .pillar--product-callout_link {
	margin-top: 10px;
}
.hc-blog-sidebar-callout .pillar--product-callout_content h3 {
	font-size: 16px;
}
