.hc-blog-single-banner {
	position: relative;
	padding-top: 125px;
	padding-bottom: 125px;
	background-color: black;
}
.hc-blog-single-banner--bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	opacity: 0.5;
}
.hc-blog-single-banner--content {
	position: relative;
	z-index: 2;
}

.hc-blog-single-banner--categories {
	display: flex;
	justify-content: center;
	gap: 20px;
	list-style-type: none;
}
.hc-blog-single-banner--categories li a {
	text-transform: uppercase;
	border: 2px solid white;
	padding: 7px 12px 5px;
	font-family: var(--pillar-font-reg);
	color: white;
	display: block;
	font-size: 15px;
	line-height: 1.2em;
	text-decoration: none;
}
.hc-blog-single-banner--title {
	color: white;
	text-align: center;
	font-family: var(--pillar-font-bold);
	margin-top: 0;
}
.hc-blog-single-banner--meta {
	display: flex;
	justify-content: center;
	list-style-type: none;
	padding-left: 0;
	flex-wrap: wrap;
	max-width: 650px;
	margin: 0 auto;
}
.hc-blog-single-banner--meta_date {
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	font-family: var(--pillar-font-med);
	flex: 0 0 100%;
	max-width: 100%;
}

.hc-blog-single-banner--meta_date_icon {
	border-radius: 50%;
	width: 57px;
	height: 57px;
	background-color: var(--pillar-main);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 57px;
}
.hc-blog-single-banner--meta_author {
	color: white;
	position: relative;
	font-family: var(--pillar-font-med);
	flex: 0 0 100%;
	max-width: 100%;
	justify-content: center;
	display: flex;
}
.hc-blog-single-banner--meta_author_wrap {
	color: white;

	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

@media screen and (min-width: 768px) {
	.hc-blog-single-banner--meta_author,
	.hc-blog-single-banner--meta_date {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.hc-blog-single-banner--meta:focus-within
	.hc-blog-single-banner--meta_author_tooltip_wrap {
	opacity: 1;
	visibility: visible;
}

.hc-blog-single-banner--meta_author_portrait {
	position: relative;
	width: 57px;
	height: 57px;
	border-radius: 50%;
	min-width: 57px;
}
.hc-blog-single-banner--meta_author_portrait img {
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}
.hc-blog-single-banner--meta_author_name {
}
.hc-blog-single-banner--meta_author_tooltip_wrap {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% + 100px);
	padding-top: 20px;
	opacity: 0;
	visibility: hidden;
	transition:
		visibility 0s ease,
		opacity 0.3s ease 0.1s;
	max-width:calc(100vw - 40px);
}
.hc-blog-single-banner--meta_author_tooltip {
	position: relative;
	padding: 15px;
	background-color: white;
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
}
.hc-blog-single-banner--meta_author_tooltip:before {
	content: "";
	position: absolute;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 12px 12px 12px;
	border-color: transparent transparent #ffffff transparent;
	transform: rotate(0deg);
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
}
.hc-blog-single-banner--meta_author_tooltip_title {
	display: flex;
	gap: 8px;
	align-items: center;
}

.hc-blog-single-banner--meta_author_tooltip_title h6 {
	color: var(--pillar-main);
	font-family: var(--pillar-font-bold);
	font-size: 16px;
	line-height: 25px;
	margin: 0;
}
.hc-blog-single-banner--meta_author_tooltip_title a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--pillar-main);
	border-radius: 50%;
	width: 27px;
	height: 27px;
	margin-bottom: 5px;
}
.hc-blog-single-banner--meta_author_tooltip_title a svg {
	margin-top: -1px;
}
.hc-blog-single-banner--meta_author_tooltip_job_title {
	color: black;
	font-size: 14px;
	font-weight: bold;
}
.hc-blog-single-banner--meta_author_tooltip_description {
	margin-top: 10px;
}
.hc-blog-single-banner--meta_author_tooltip_description p {
	font-size: 15px;
	line-height: 20px;
	text-transform: none;
	font-family: var(--pillar-font-med);
	color: black;
}
.hc-blog-single-banner--meta_author_tooltip_description p:last-child {
	margin-bottom: 0;
}
.hc-blog-single-banner--meta_author_tooltip_link {
	margin-top: 15px;
}
.hc-blog-single-banner--meta_author_tooltip_link a {
	color: var(--pillar-main);
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease-in-out;
}
.hc-blog-single-banner--meta_author_tooltip_link a:hover {
	color: black;
}
