.cii-single-post {
	--cii-ink: #07585b;
	--cii-accent: #7bdde2;
	--cii-pale: #effcfc;
	--cii-copy: #263637;
	background: #fff;
	color: var(--cii-copy);
}

.cii-post-shell {
	width: min(1140px, calc(100% - 40px));
	margin-inline: auto;
}

.cii-post-hero {
	padding: clamp(48px, 7vw, 88px) 0;
	background: linear-gradient(135deg, #e7fbfc 0%, #f7ffff 100%);
	text-align: center;
}

.cii-post-kicker,
.cii-sidebar-kicker {
	margin: 0 0 10px;
	color: #167d81;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.cii-post-hero h1 {
	max-width: 980px;
	margin: 0 auto;
	color: var(--cii-ink);
	font-size: clamp(36px, 5vw, 62px);
	font-weight: 600;
	line-height: 1.12;
}

.cii-post-meta {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 22px 0 0;
	color: #527071;
	font-size: 14px;
}

.cii-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(270px, 1fr);
	gap: clamp(34px, 5vw, 64px);
	align-items: start;
	padding-block: clamp(45px, 6vw, 80px);
}

.cii-featured-image {
	margin: 0 0 38px;
}

.cii-featured-image img {
	display: block;
	width: 100%;
	max-height: 540px;
	border-radius: 22px;
	object-fit: cover;
}

.cii-post-content {
	font-size: 17px;
	line-height: 1.8;
}

.cii-post-content > :first-child {
	margin-top: 0;
}

.cii-post-content h2,
.cii-post-content h3,
.cii-post-content h4 {
	margin: 1.35em 0 .55em;
	color: var(--cii-ink);
	font-weight: 600;
	line-height: 1.25;
}

.cii-post-content h2 {
	font-size: clamp(28px, 3.3vw, 40px);
}

.cii-post-content h3 {
	font-size: clamp(23px, 2.7vw, 32px);
}

.cii-post-content p,
.cii-post-content ul,
.cii-post-content ol {
	margin-bottom: 1.15em;
}

.cii-post-content a,
.cii-post-tags a {
	color: #087e83;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cii-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
}

.cii-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 38px;
	padding-top: 24px;
	border-top: 1px solid #dcebec;
	font-size: 14px;
}

.cii-post-sidebar {
	position: sticky;
	top: 125px;
	padding: 30px;
	border-radius: 22px;
	background: var(--cii-ink);
	box-shadow: 0 18px 50px rgba(7, 88, 91, .15);
}

.cii-post-sidebar h2 {
	margin: 0 0 22px;
	color: #fff;
	font-size: 32px;
	line-height: 1.2;
}

.cii-post-sidebar .cii-sidebar-kicker {
	color: var(--cii-accent);
}

.cii-doctor-card {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	margin-top: 16px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 14px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease;
}

.cii-doctor-card:hover,
.cii-doctor-card:focus-visible {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, .14);
	color: #fff;
}

.cii-doctor-card img {
	width: 84px;
	height: 84px;
	border-radius: 12px;
	object-fit: cover;
	object-position: top center;
}

.cii-doctor-card strong,
.cii-doctor-card small {
	display: block;
}

.cii-doctor-card strong {
	font-size: 16px;
	line-height: 1.35;
}

.cii-doctor-card small {
	margin-top: 5px;
	color: #bdebed;
	font-size: 13px;
}

@media (max-width: 800px) {
	.cii-post-shell {
		width: min(100% - 28px, 720px);
	}

	.cii-post-hero {
		padding-block: 44px;
	}

	.cii-post-layout {
		grid-template-columns: 1fr;
		gap: 42px;
		padding-block: 42px;
	}

	.cii-post-sidebar {
		position: static;
	}
}

@media (max-width: 480px) {
	.cii-post-hero h1 {
		font-size: 34px;
	}

	.cii-post-meta {
		flex-wrap: wrap;
	}

	.cii-post-content {
		font-size: 16px;
	}

	.cii-post-sidebar {
		padding: 22px;
	}
}
