.single-post .uicore-body-content {
	background-color: #FBFCFA;
	padding-top: 160px;
}
@media (max-width: 575px) {
	.single-post .uicore-body-content {
		padding-top: 101px;
	}
}

.article-sidebar-wrap {
	position: sticky;
	top: 10px;
}
.article-back {
	
	max-width: 1180px;
	padding: 0 20px;
	margin: 0 auto 40px;
}
.article-back-link {
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: "General Sans Variable", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0px;
    color: #025760;
}
.article-hero {
	max-width: 1180px;
	padding: 0 20px 72px;
	margin: 0 auto 48px;
	display: flex;
	gap: 48px;
	border-bottom: 1px solid rgba(0,0,0, .1);
	
}
@media (max-width: 575px) {
	.article-hero {
		padding: 0 20px 48px;
	}
}
.article-hero__meta-wrap {
	width: 50%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.article-hero__thumbnail {
	width: 48%;
	display: flex;
	align-items: flex-start;
}
.article-hero__thumbnail img {
	width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.83;
    object-fit: cover;
    border-radius: 24px;
}
.article-hero__title {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: 0px;
    color: #192830;
	margin-top: 0;
	margin-bottom: 48px;
}
@media (max-width: 575px) {
	.article-hero__title {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 40px;
	}
}
.article-hero__author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.article-hero__author img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.article-hero__author span {
	display: flex;
	flex-direction: column;
}
.article-hero__author small {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
	color: rgba(25,40,48, 0.6);
}
.article-hero__author strong {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
	color: #192830;
}
.article-hero__byline {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
	color: rgba(25,40,48, 0.6);
	display: flex;
	gap: 8px;
}
.article-layout {
	max-width: 1180px;
	padding: 0 10px;
	margin: 0px auto;
	display: flex;
	gap: 72px;
}
.article-sidebar {
	width: 326px;
}
.article-content {
	width: calc(100% - 398px);
}
.sidebar-toc {
	background-color: #E0E7DA;
	padding: 24px;
	border-radius: 16px;
	margin-bottom: 24px;
}
.sidebar-toc__heading {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
	color: #025760;
	margin-bottom: 16px
}
.sidebar-toc__list {
	margin: 0;
	padding: 0;
}
.sidebar-toc__list li:not(:last-child) {
	margin-bottom: 12px;
}
.sidebar-toc__list a {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
	color: #025760;
}
.sidebar-cta {
	background-color: #EFEDE9;
	padding: 24px;
	border-radius: 16px;
}
.sidebar-cta__title {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
	color: #192830;
	margin-bottom: 12px
}
.sidebar-cta__text {
	font-family: "General Sans Variable", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
	color: #192830;
	margin-bottom: 24px
}
.sidebar-cta-btns-wrap {
	display: flex;
	gap: 8px;
}
.sidebar-cta__btn {
	width: 50%;
	height: 40px;
	padding: 10px;
	background-color: #025760;
	border-radius: 10px;
	color: #fff;
	font-family: "General Sans Variable", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
	text-align: center;
}

.sidebar-cta__phone {
	width: 50%;
	height: 40px;
	padding: 10px;
	border: 1px solid rgba(2,87,96, .4);
	border-radius: 10px;
	color: #025760;
	font-family: "General Sans Variable", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
	text-align: center;
}

.sidebar-cta__btn:hover {
	color: #025760;
	background-color: #E1FAB9;
}
.sidebar-cta__phone:hover {
	background-color: #025760;
	color: #fff;
}
@media (max-width: 991px) {
	.article-sidebar {
		display: none;
	}
	.article-content {
		width: 100%;
	}
	.article-hero__authors {
		margin-bottom: 32px;
	}
	.article-hero {
		flex-direction: column-reverse;
		gap: 40px;
	}
	.article-hero__thumbnail,
	.article-hero__meta-wrap {
		width: 100%;
	}
}