.bsk-blog-detail {
	background: #fff;
	color: var(--bsk-text-primary)
}

.bsk-blog-detail .bsk-blog-reading-progress {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	overflow: hidden;
	pointer-events: none
}

.bsk-blog-detail .bsk-blog-reading-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(275.09deg, #3CE6E9 7.18%, #0634E6 102.07%);
	transform: scaleX(0);
	transform-origin: left center;
	will-change: transform
}

.bsk-blog-detail-breadcrumb {
	height: 72px;
	box-sizing: border-box;
	background: #fff;
	position: sticky;
	top: 160px;
	z-index: 90;
}

.bsk-blog-detail-breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 70px;
	overflow: hidden;
	white-space: nowrap
}

.bsk-blog-detail-breadcrumb-list a {
	flex: 0 0 auto;
	color: var(--bsk-text-secondary);
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	text-decoration: none;
	transition: color .2s ease
}

.bsk-blog-detail-breadcrumb-list a:first-child {
	color: var(--bsk-text-primary);
	font-weight: 600
}

.bsk-blog-detail-breadcrumb-list a[aria-current="page"] {
	min-width: 0;
	flex: 1 1 auto;
	overflow: hidden;
	color: var(--bsk-text-tertiary);
	font-weight: 400;
	text-overflow: ellipsis
}

.bsk-blog-detail-breadcrumb-list a:hover,
.bsk-blog-detail-breadcrumb-list a:focus-visible {
	color: var(--bsk-primary)
}

.bsk-blog-detail-breadcrumb-separator {
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-top: 1px solid var(--bsk-text-tertiary);
	border-right: 1px solid var(--bsk-text-tertiary);
	transform: rotate(45deg)
}

.bsk-blog-detail-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 338px;
	padding: 60px 0;
	box-sizing: border-box;
	overflow: hidden;
	background: var(--bsk-bg-blue-light)
}

.bsk-blog-detail-cta-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
	text-align: center
}

.bsk-blog-detail-cta-title,
.bsk-blog-detail-cta-desc {
	margin: 0
}

.bsk-blog-detail-cta-title {
	color: var(--bsk-text-primary);
	font-size: 36px;
	font-weight: 800;
	line-height: 1.6
}

.bsk-blog-detail-cta-desc {
	margin-top: 10px;
	color: var(--bsk-text-secondary);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5
}

.bsk-blog-detail-cta-decoration {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1920px;
	height: 100%;
	transform: translateX(-50%);
	pointer-events: none
}

.bsk-blog-detail-cta-decoration img {
	position: absolute;
	display: block;
	width: 180px;
	height: 180px;
	border-radius: 24px;
	object-fit: cover;
	pointer-events: none
}

.bsk-blog-detail-cta-decoration img:nth-child(1) { top: -112px; left: 60px; }
.bsk-blog-detail-cta-decoration img:nth-child(2) { top: 40px; left: 360px; }
.bsk-blog-detail-cta-decoration img:nth-child(3) { top: 158px; left: 220px; }
.bsk-blog-detail-cta-decoration img:nth-child(4) { top: -72px; right: 240px; }
.bsk-blog-detail-cta-decoration img:nth-child(5) { top: 48px; right: 100px; }
.bsk-blog-detail-cta-decoration img:nth-child(6) { top: 248px; right: 360px; }

.bsk-blog-detail-article {
	padding-top: 80px;
	padding-bottom: 120px
}

.bsk-blog-detail-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 920px;
	margin: 0 auto 64px;
	text-align: center
}

.bsk-blog-detail-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px
}

.bsk-blog-detail-tags a {
	padding: 4px 8px;
	border-radius: 8px;
	background: #e6efff;
	color: var(--bsk-primary);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-decoration: none
}

.bsk-blog-detail h1 {
	margin: 0;
	color: var(--bsk-title-important);
	font-size: 50px;
	font-weight: 800;
	line-height: 1.5
}

.bsk-blog-detail-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 24px 0 0;
	color: var(--bsk-text-secondary);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5
}

.bsk-blog-detail-meta-separator {
	color: var(--bsk-text-tertiary)
}

.bsk-blog-detail-author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--bsk-bg-gray);
	color: var(--bsk-text-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease
}

.bsk-blog-detail-author:hover,
.bsk-blog-detail-author:focus-visible {
	background: var(--bsk-bg-blue-light);
	color: var(--bsk-primary)
}

.bsk-blog-detail-author img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover
}

.bsk-blog-detail-author strong {
	font-weight: 600
}

.bsk-blog-detail-cover {
	display: block;
	width: 1200px;
	height: 600px;
	margin: 0 auto 80px;
	border-radius: 16px;
	object-fit: cover
}

.bsk-blog-detail-body {
	display: block
}

.bsk-blog-detail-body.has-toc {
	display: grid;
	grid-template-columns: 300px 800px;
	justify-content: center;
	align-items: start;
	column-gap: 80px
}

.bsk-blog-detail-sidebar {
	position: sticky;
	top: 250px;
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-self: start;
	/*max-height: calc(100vh - 282px);*/
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin
}

.bsk-blog-detail-sidebar[hidden] {
	display: none
}

.bsk-blog-detail-toc > p {
	margin: 0 0 20px;
	color: var(--bsk-text-primary);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4
}

.bsk-blog-detail-toc ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	border-left: 4px solid var(--bsk-divider);
	list-style: none
}

.bsk-blog-detail-toc li {
	position: relative;
	margin: 0
}

.bsk-blog-detail-toc li::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -4px;
	width: 4px;
	background: var(--bsk-text-secondary);
	content: "";
	transform: scaleY(0);
	transform-origin: center;
	transition: transform .2s ease
}

.bsk-blog-detail-toc li.is-active::before {
	transform: scaleY(1)
}

.bsk-blog-detail-toc a {
	display: block;
	padding-left: 20px;
	color: var(--bsk-text-tertiary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	text-decoration: none;
	transition: color .2s ease
}

.bsk-blog-detail-toc a:hover,
.bsk-blog-detail-toc a:focus-visible {
	color: var(--bsk-primary)
}

.bsk-blog-detail-toc li.is-active a {
	color: var(--bsk-text-secondary);
	font-weight: 700
}

.bsk-blog-detail-sidebar-cta {
	position: relative;
	width: 300px;
	height: fit-content;
	box-sizing: border-box;
	gap: 16px;
	padding: 31px 36px 45px;
	overflow: hidden;
	background: #31CECD;
	color: #fff;
}

.bsk-blog-detail-sidebar-cta p {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.5
}

.bsk-blog-detail-sidebar-cta button {
	margin-top: 16px;
	position: relative;
	text-align: left;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: var(--bsk-font-base);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	cursor: pointer;
	transition: opacity .2s ease
}

.bsk-blog-detail-sidebar-cta button::before,
.bsk-blog-detail-sidebar-cta button::after {
	position: absolute;
	height: 3px;
	border-radius: 3px;
	background: #fff;
	content: ""
}

.bsk-blog-detail-sidebar-cta button::after {
	right: 0;
	bottom: -10px;
	left: 0
}

.bsk-blog-detail-sidebar-cta button::before {
	right: -1px;
	bottom: -10px;
	width: 15.6px;
	transform: rotate(40deg);
	transform-origin: right center
}

.bsk-blog-detail-sidebar-cta button:hover,
.bsk-blog-detail-sidebar-cta button:focus-visible {
	opacity: .75
}

.bsk-blog-detail-body.has-toc .bsk-common-article-content {
	width: 100%;
	margin: 0
}

.bsk-blog-detail-content-footer {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-top: 32px
}

.bsk-blog-detail-content-try {
	display: inline-flex;
	width: 160px;
	height: 30px;
	padding: 0;
	align-items: center;
	gap: 10px;
	border: 0;
	background: transparent;
	color: var(--bsk-primary);
	font-family: var(--bsk-font-base);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	text-align: left;
	cursor: pointer;
	transition: opacity .2s ease
}

.bsk-blog-detail-content-try img {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 0;
	filter: brightness(0) saturate(100%) invert(18%) sepia(99%) saturate(4660%) hue-rotate(231deg) brightness(84%) contrast(119%)
}

.bsk-blog-detail-content-try:hover,
.bsk-blog-detail-content-try:focus-visible {
	opacity: .7
}

.bsk-blog-detail-share {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.bsk-blog-detail-share > p,
.bsk-blog-detail-written-title {
	margin: 0 !important;
	color: var(--bsk-text-primary);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6
}

.bsk-blog-detail-share-list {
	display: flex;
	align-items: center;
	gap: 4px
}

.bsk-blog-detail-share-list a,
.bsk-blog-detail-share-list img {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 0
}

.bsk-blog-detail-share-list a {
	transition: opacity .2s ease, transform .2s ease
}

.bsk-blog-detail-share-list a:hover,
.bsk-blog-detail-share-list a:focus-visible {
	opacity: .75;
	transform: translateY(-2px)
}

.bsk-blog-detail-written {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.bsk-blog-detail-written-card {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	align-items: flex-start;
	gap: 20px;
	padding: 24px;
	border-radius: 24px;
	background: var(--bsk-bg-gray)
}

.bsk-blog-detail-written-card > img {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	border-radius: 50%;
	object-fit: cover
}

.bsk-blog-detail-written-card > div {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	gap: 8px
}

.bsk-blog-detail-written-card a {
	width: fit-content;
	color: var(--bsk-text-primary);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: color .2s ease
}

.bsk-blog-detail-written-card a:hover,
.bsk-blog-detail-written-card a:focus-visible {
	color: var(--bsk-primary)
}

.bsk-blog-detail-written-card p {
	margin: 0;
	color: var(--bsk-text-secondary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5
}

.bsk-blog-detail-related {
	padding: 100px 0;
	overflow: hidden;
	border-radius: 100px 100px 0 0;
	background: var(--bsk-bg-gray)
}

.bsk-blog-detail-related-head {
	display: flex;
	height: 72px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px
}

.bsk-blog-detail-related-head h2 {
	margin: 0;
	color: var(--bsk-text-primary);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.5
}

.bsk-blog-detail-related-controls {
	display: flex;
	gap: 16px
}

.bsk-blog-detail-related-controls button {
	display: flex;
	width: 56px;
	height: 56px;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--bsk-text-disabled);
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease
}

.bsk-blog-detail-related-controls button img {
	display: block;
	width: 36px;
	height: 36px;
	filter: brightness(0) saturate(100%) invert(62%) sepia(8%) saturate(538%) hue-rotate(173deg) brightness(89%) contrast(86%);
	transition: filter .2s ease
}

.bsk-blog-detail-related-prev img {
	transform: rotate(180deg)
}

.bsk-blog-detail-related-controls button:hover:not(:disabled),
.bsk-blog-detail-related-controls button:focus-visible:not(:disabled) {
	border-color: rgba(6, 52, 230, .5);
	box-shadow: 0 4px 14px rgba(6, 52, 230, .08)
}

.bsk-blog-detail-related-controls button:hover:not(:disabled) img,
.bsk-blog-detail-related-controls button:focus-visible:not(:disabled) img {
	filter: brightness(0) saturate(100%) invert(18%) sepia(99%) saturate(4660%) hue-rotate(231deg) brightness(84%) contrast(119%)
}

.bsk-blog-detail-related-controls button:disabled {
	cursor: default
}

.bsk-blog-detail-related-viewport {
	width: calc(1200px + (100vw - 1200px) / 2);
	margin-right: 0;
	margin-left: auto;
	overflow: visible;
	touch-action: pan-y;
	user-select: none
}

.bsk-blog-detail-related-track {
	display: flex;
	gap: 24px;
	transition: transform .35s ease;
	will-change: transform
}

.bsk-blog-detail-related-track.is-dragging {
	transition: none
}

.bsk-blog-detail-related-card {
	display: flex;
	width: 468px;
	height: 552px;
	padding: 24px;
	box-sizing: border-box;
	flex: 0 0 468px;
	flex-direction: column;
	gap: 24px;
	border-radius: 32px;
	background: #fff;
	box-shadow: 4px 4px 28px rgba(7, 24, 91, .03)
}

.bsk-blog-detail-related-card a {
	text-decoration: none
}

.bsk-blog-detail-related-media {
	display: block;
	width: 420px;
	height: 240px;
	flex: 0 0 240px;
	overflow: hidden;
	border-radius: 24px;
	background-color: #fff
}

.bsk-blog-detail-related-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.bsk-blog-detail-related-card-body {
	display: flex;
	width: 420px;
	height: 240px;
	flex-direction: column;
	justify-content: space-between
}

.bsk-blog-detail-related-card-content {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.bsk-blog-detail-related-card h4 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	color: var(--bsk-title-important);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.375;
	overflow-wrap: anywhere;
	-webkit-line-clamp: 3
}

.bsk-blog-detail-related-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px
}

.bsk-blog-detail-related-tags a {
	padding: 4px 8px;
	border-radius: 8px;
	background: #e6efff;
	color: var(--bsk-primary);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px
}

.bsk-blog-detail-related-card-body > p {
	margin: 0;
	color: var(--bsk-text-tertiary);
	font-size: 20px;
	font-weight: 400;
	line-height: 30px
}

.bsk-blog-detail-related-dots {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 60px;
	padding-left: 24px;
	box-sizing: border-box
}

.bsk-blog-detail-related-dots span {
	width: 20px;
	height: 12px;
	border-radius: 10px;
	background: var(--bsk-divider);
	transition: width .2s ease, background-color .2s ease
}

.bsk-blog-detail-related-dots span.is-active {
	width: 36px;
	background: #7E99BA
}
