.page-post {
	margin-top: 20px;
	display: flex;
	gap: 56px;
}

.post-template-default .wrapper {
	overflow: visible;
}

.page-post .post-navigation {
	position: sticky;
    top: 200px;
	min-width: 320px;
    height: fit-content;
}

.page-post {
	margin-top: 20px;
    margin-bottom: 76px;
}

.page-post .post-content {
	padding-left: 40px;
	padding-right: 40px;
}

.page-post .post-content h1 {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-post .post-content h1 strong {
	font-size: 30px;
	font-weight: 500;
	text-align: right;
}

.page-post .post-content h1,
.page-post .post-content h2 {
	color: var(--c-title);
	line-height: 1.3;
	padding-bottom: 16px;
	border-bottom: 3px solid #BC27C7;
}

.page-post .post-content p > a {
	display: inline;
}

.page-post .post-content a {
	font-size: 18px;
	color: var(--c-text);
	text-decoration: underline;
	font-weight: 600;
}

.page-post .post-content .btn {
	display: inline-flex;
	text-decoration: none;
	font-size: 16px;
	font-weight: 800;
}

.page-post .post-content .btn:after {
	display: none;
}

.page-post .post-content p,
.page-post .post-content ol,
.page-post .post-content ul,
.page-post .post-content h1,
.page-post .post-content h2,
.page-post .post-content h3,
.page-post .post-content h4,
.page-post .post-content h5,
.page-post .post-content h6,
.page-post .post-content blockquote,
.page-post .post-content pre {
	margin-bottom: 24px;
}

.page-post .post-content h1,
.page-post .post-content h2 {
	font-size: 40px;
	margin-top: 56px;
}

.page-post .post-content h3 {
	font-size: 30px;
	font-weight: 500;
}

.page-post .post-content strong,
.page-post .post-content b {
	font-weight: 600;
}

.page-post .post-content blockquote {
	position: relative;
	overflow: hidden;
	padding: 32px 24px 0px 24px;
	display: flex;
	align-items: center;
	flex-direction: column;
    text-align: center;
	background: var(--color);
	border-radius: 8px;
	color: #fff;
}

.page-post .post-content blockquote:after {
    content: '';
    display: block;
    width: 1238px;
    z-index: 1;
    background: url(../img/bg-home-image.png) no-repeat left top;
    background-size: cover;
	position: absolute;
    left: 18%;
    top: -70%;
    width: 200%;
    height: 200%;
}

.page-post .post-content blockquote > * {
	max-width: 75%;
}

.page-post .breadcrumbs {
	font-weight: 600;
	color: var(--c-title);
	margin-bottom: 32px;
}

.page-post .breadcrumbs a:first-child {
	color: var(--color);
}

.page-post .breadcrumbs a:last-child {
	color: var(--c-title);
}

.page-post .post-navigation h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--c-title);
	line-height: 28px;
	margin-bottom: 32px;
}

.page-post .post-navigation li {
	margin-bottom: 18px;
	transition: all 0.4s;
}


.page-post .post-navigation li a {
	display: block;
	position: relative;
	padding-left: 48px;
	font-size: 22px;
	font-weight: 500;
	line-height: 28px;
	color: #6A6D70;
}

.page-post .post-navigation li a:after {
	content: '';
	width: 6px;
	height: 100%;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 0;
	background: #BC27C7;
}

.page-post .post-navigation li .active:after {
	background: var(--color);
}

.page-post .post-navigation li .active {
	transform: translateX(5px);
	color: #000;
}

.page-post .post-navigation li a:hover {
	transform: translateX(5px);
	opacity: 0.8;
}

.page-post .btn {
	padding: 18px 26px;
	border-radius: 26px;
	margin-bottom: 12px;
	min-width: 249px;
}

.page-post .btn.type-1 {
	background: var(--color);
	color: #fff;
	border: 1px solid var(--color);
}

.page-post .btn.type-1:hover {
	background: #BC27C7;
	color: #fff;
	border: 1px solid #BC27C7;
}

.page-post .btn.type-2 {
	background: #fff;
	color: var(--color);
	border: 1px solid var(--color);
}

.page-post .btn.type-2:hover {
	background: #BC27C7;
	color: #fff;
}

.page-post .post-content ul,
.page-post .post-content ol {
	padding-left: 20px;
	font-size: 18px;
}

.page-post .post-content ol li {
	list-style: auto;
}

.page-post .post-content ul li {
	list-style: disc;
}

.page-post .post-content pre {
	display: flex;
	align-items: center;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
	padding: 24px;
	border-radius: 16px;
	border: 1px solid #9DA0A3;
	font-family: var(--RedHatText);
	font-weight: 600;
	color: #38393B;
	white-space: pre-wrap;
    text-align: center;
}

.page-post .post-content pre strong {
	display: block;
	width: 100%;
}

.page-post .post-content pre a {
	padding: 18px;
	border: 1px solid #000;
	border-radius: 26px;
	min-width: 200px;
	text-decoration: none;
	text-align: center;
}

.page-post .post-content pre a:hover {
	background: var(--color);
	border: 1px solid var(--color);
	color: #fff;
}

.page-post .aligncenter {
	margin: 0 auto;
	display: block;
}

.page-post .two-col {
	display: flex;
    gap: 24px;
	margin-bottom: 24px;
}

.page-post .two-col img {
	height: fit-content;
	min-width: 72px;
}

.page-post .two-col div * {
	margin-bottom: 12px;
}

.page-post hr {
	height: 3px;
	border-radius: 3px;
	background: #BC27C7;
	margin-bottom: 56px;
}

.page-post h5 {
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	color: #590E6E;
}

.page-post h6 {
	margin-bottom: 8px;
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	color: #BC27C7;
}




@media (max-width: 1350px) {
	.page-post {
		gap: 20px;
	}
	
	.page-post .post-navigation {
    	min-width: 290px;
		top: 180px;
	}
	
	.page-post .post-content a,
	.page-post .post-content li {
		font-size: 17px;
	}
	
	.page-post .post-navigation li a {
		padding-left: 30px;
    	font-size: 18px;
	}
	
	.page-post .post-content h1,
	.page-post .post-content h2 {
		padding-bottom: 12px;
	}
	
	.page-post .post-content h1,
	.page-post .post-content h2 {
		font-size: 36px;
		margin-top: 40px;
	}
	
	.page-post  h5 {
		font-size: 20px;
	}
	
	.page-post  h6 {
		font-size: 18px;
	}
	
	.page-post .post-navigation h2 {
		font-size: 20px;
	}
	
	.page-post .post-content h3 {
		font-size: 24px;
	}
}

@media (max-width: 1250px) {
	.page-post .post-content a,
	.page-post .post-content li {
		font-size: 14px;
	}
	
	.page-post .post-navigation li a {
		padding-left: 24px;
    	font-size: 16px;
	}
	
	.page-post .post-navigation {
		top: 160px;
    	min-width: 250px;
	}
	
	.page-post .post-content h2 {
		margin-top: 36px;
		font-size: 30px;
	}
	
	.page-post .post-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 1024px) {
	.page-post {
        gap: 0px;
    }
	
	.page-post .post-content {
 	   	padding-left: 30px;
		padding-right: 0;
	}
	
	.page-post .post-navigation {
    	min-width: 230px;
	}
	
	.page-post .btn {
		min-width: 200px;
	}
	
	.page-post hr {
		margin-bottom: 30px;
	}
}

@media (max-width: 850px) {
	.page-post .post-navigation li {
		margin-bottom: 16px;
	}
	
    .page-post .post-navigation li a {
        padding-left: 16px;
        font-size: 14px;
    }
	
	.page-post .post-navigation {
        min-width: 210px;
    }
	
	.page-post .post-content h1,
	.page-post .post-content h2 {
		margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.page-post article {
		width: 100%;
	}
	
	.page-post .post-content h1 {
		display: flex;
    	flex-direction: column;
    	align-items: baseline;
	}
	
	.page-post .two-col {
		flex-direction: column;
    	align-items: center;
	}
	
	.page-post .two-col img {
		max-width: 150px;
	}
	
	.page-post .post-navigation {
		display: none;
	}
	
	.page-post .post-content {
		padding-left: 0;
	}
	
	.page-post .post-content pre a {
		min-width: 230px;
	}
	
	.page-post .post-content blockquote:after {
		left: 46%;
	}
	
	.page-post {
		margin-top: 10px;
		margin-bottom: 30px;
	}
	
}
