/**
 * IntoChinaTrip Blog Article V2
 * Scoped to .ictp-blog-v2; no global Astra or page-builder overrides.
 */

body.ictp-blog-article-v2-active,
body.ictp-blog-article-v2-active .site-content {
	background: #fffdfa;
}

.ictp-blog-v2 {
	--ictp-blog-green: #075858;
	--ictp-blog-green-deep: #064642;
	--ictp-blog-orange: #e9773c;
	--ictp-blog-orange-soft: #fdf0e8;
	--ictp-blog-ink: #163b37;
	--ictp-blog-muted: #6d8380;
	--ictp-blog-muted-light: #99aaa7;
	--ictp-blog-line: #dce4e1;
	--ictp-blog-line-soft: #e8eeeb;
	--ictp-blog-warm: #faf6ef;
	--ictp-blog-paper: #fffdfa;
	--ictp-blog-radius: 14px;
	--ictp-blog-radius-sm: 7px;
	width: 100%;
	margin: 0;
	padding: 0 0 112px;
	overflow: clip;
	background: var(--ictp-blog-paper);
	color: var(--ictp-blog-ink);
	font-family: Inter, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

.ictp-blog-v2 *,
.ictp-blog-v2 *::before,
.ictp-blog-v2 *::after {
	box-sizing: border-box;
}

.ictp-blog-v2 a {
	color: inherit;
	text-decoration: none;
}

.ictp-blog-v2 button,
.ictp-blog-v2 input,
.ictp-blog-v2 select,
.ictp-blog-v2 textarea {
	font-family: Inter, sans-serif;
}

.ictp-blog-v2__shell {
	display: grid;
	grid-template-columns: minmax(0, 720px) 240px;
	column-gap: 100px;
	align-items: stretch;
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
	padding-top: 64px;
}

.ictp-blog-v2__article-column,
.ictp-blog-v2__sidebar-column,
.ictp-blog-v2__main-flow {
	min-width: 0;
}

.ictp-blog-v2__sidebar-column {
	align-self: stretch;
}

.ictp-blog-v2__article-head {
	margin: 0 0 28px;
}

.ictp-blog-v2 a.ictp-blog-v2__category {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
	color: var(--ictp-blog-orange);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	transition: gap .25s ease;
}

.ictp-blog-v2__category::before {
	width: 20px;
	height: 1.5px;
	background: currentColor;
	content: "";
	transition: width .25s ease;
}

.ictp-blog-v2__category:hover {
	gap: 12px;
}

.ictp-blog-v2__category:hover::before {
	width: 28px;
}

.ictp-blog-v2__article-head h1 {
	max-width: 680px;
	margin: 0;
	color: var(--ictp-blog-green-deep);
	font-family: Montserrat, sans-serif;
	font-size: clamp(34px, 3.4vw, 42px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.18;
}

.ictp-blog-v2__meta {
	display: flex;
	align-items: center;
	margin-top: 24px;
	color: var(--ictp-blog-muted);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .04em;
}

.ictp-blog-v2__meta > time,
.ictp-blog-v2__meta > span {
	display: flex;
	align-items: center;
}

.ictp-blog-v2__meta > span::before {
	width: 3px;
	height: 3px;
	margin: 0 14px;
	border-radius: 50%;
	background: var(--ictp-blog-muted-light);
	content: "";
}

.ictp-blog-v2__share-inline {
	display: none;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.ictp-blog-v2__hero {
	position: relative;
	width: 100%;
	height: 480px;
	margin: 0 0 56px;
	overflow: hidden;
	border-radius: var(--ictp-blog-radius);
	background: #1a3a36;
}

.ictp-blog-v2__hero::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(6, 70, 66, .15));
	content: "";
	pointer-events: none;
}

.ictp-blog-v2__hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 8s ease;
}

.ictp-blog-v2__hero:hover img {
	transform: scale(1.03);
}

.ictp-blog-v2__mobile-toc {
	display: none;
	width: min(720px, calc(100% - 40px));
	margin: 0 auto 40px;
}

.ictp-blog-v2__mobile-toc summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-top: 1px solid var(--ictp-blog-line);
	border-bottom: 1px solid var(--ictp-blog-line);
	color: var(--ictp-blog-green);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.ictp-blog-v2__mobile-toc summary::-webkit-details-marker {
	display: none;
}

.ictp-blog-v2__mobile-toc summary::after {
	font-size: 18px;
	font-weight: 400;
	content: "+";
}

.ictp-blog-v2__mobile-toc[open] summary::after {
	content: "−";
}

.ictp-blog-v2__mobile-toc ol {
	margin: 0;
	padding: 14px 0 4px 20px;
}

.ictp-blog-v2__mobile-toc li {
	margin: 5px 0;
	color: var(--ictp-blog-muted);
	font-size: 13px;
}

.ictp-blog-v2__article-body {
	color: #2c4a46;
	font-size: 17px;
	line-height: 1.85;
}

.ictp-blog-v2__article-body > p:first-child {
	margin: 0 0 56px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--ictp-blog-line-soft);
	color: var(--ictp-blog-green-deep);
	font-size: 21px;
	font-weight: 400;
	line-height: 1.7;
}

.ictp-blog-v2__article-body > p:first-child::first-letter {
	float: left;
	margin: 4px 12px 0 0;
	color: var(--ictp-blog-orange);
	font-family: Montserrat, sans-serif;
	font-size: 64px;
	font-weight: 700;
	line-height: .85;
}

.ictp-blog-v2__article-body h2 {
	position: relative;
	margin: 68px 0 24px;
	padding-top: 8px;
	color: var(--ictp-blog-green-deep);
	font-family: Montserrat, sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.3;
	scroll-margin-top: 100px;
}

.ictp-blog-v2__article-body h2::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 2.5px;
	border-radius: 2px;
	background: var(--ictp-blog-orange);
	content: "";
}

.ictp-blog-v2__article-body h3 {
	margin: 36px 0 12px;
	color: var(--ictp-blog-ink);
	font-family: Montserrat, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.ictp-blog-v2__article-body p {
	margin: 0 0 22px;
}

.ictp-blog-v2__article-body p a {
	color: var(--ictp-blog-green);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: rgba(233, 119, 60, .4);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color .2s ease, text-decoration-color .2s ease;
}

.ictp-blog-v2__article-body p a:hover {
	color: var(--ictp-blog-orange);
	text-decoration-color: currentColor;
}

.ictp-blog-v2__article-body ul,
.ictp-blog-v2__article-body ol {
	margin: 0 0 28px;
	padding-left: 28px;
}

.ictp-blog-v2__article-body li {
	padding: 0 0 10px 4px;
	color: #3a5a56;
	font-size: 16px;
	line-height: 1.7;
}

.ictp-blog-v2__article-body li::marker {
	color: var(--ictp-blog-orange);
}

.ictp-blog-v2__article-body blockquote,
.ictp-blog-v2__article-body .wp-block-quote {
	position: relative;
	margin: 52px 0;
	padding: 36px 40px;
	border: 0;
	border-left: 3px solid var(--ictp-blog-orange);
	border-radius: var(--ictp-blog-radius);
	background: var(--ictp-blog-warm);
	color: var(--ictp-blog-green-deep);
	font-family: Montserrat, sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1.6;
}

.ictp-blog-v2__article-body blockquote p:last-child {
	margin-bottom: 0;
}

.ictp-blog-v2__article-body img {
	height: auto;
	border-radius: var(--ictp-blog-radius-sm);
}

.ictp-blog-v2__article-body figcaption {
	margin-top: 8px;
	color: var(--ictp-blog-muted);
	font-size: 12px;
	line-height: 1.5;
}

.ictp-blog-v2__article-body table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

.ictp-blog-v2__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 56px;
}

.ictp-blog-v2__side-label,
.ictp-blog-v2__context-label {
	color: var(--ictp-blog-muted-light);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ictp-blog-v2__tags .ictp-blog-v2__side-label {
	margin: 0;
	padding-top: 6px;
	white-space: nowrap;
}

.ictp-blog-v2__tag-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ictp-blog-v2__tag-links a {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border: 1px solid transparent;
	border-radius: 20px;
	background: var(--ictp-blog-warm);
	color: var(--ictp-blog-muted);
	font-size: 12px;
	font-weight: 500;
	transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.ictp-blog-v2__tag-links a:hover {
	border-color: rgba(233, 119, 60, .25);
	background: #fff;
	color: var(--ictp-blog-orange);
}

.ictp-blog-v2__context {
	margin: 0 0 40px;
}

.ictp-blog-v2__context-label {
	display: block;
	margin-bottom: 14px;
}

.ictp-blog-v2__city-list {
	display: grid;
	gap: 10px;
	margin-bottom: 28px;
}

.ictp-blog-v2__city {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--ictp-blog-line-soft);
	border-radius: var(--ictp-blog-radius);
	background: #fff;
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.ictp-blog-v2__city:hover {
	border-color: var(--ictp-blog-orange);
	box-shadow: 0 8px 24px rgba(8, 70, 66, .09);
	transform: translateY(-2px);
}

.ictp-blog-v2__city-icon-shell {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	background: #edf4f1;
	transition: background .3s ease;
}

.ictp-blog-v2__city-icon {
	display: block;
	width: 26px;
	height: 26px;
	background: var(--ictp-blog-green);
	-webkit-mask: var(--ictp-city-icon, none) center / contain no-repeat;
	mask: var(--ictp-city-icon, none) center / contain no-repeat;
	transition: background .3s ease;
}

.ictp-blog-v2__city:hover .ictp-blog-v2__city-icon-shell {
	background: var(--ictp-blog-orange-soft);
}

.ictp-blog-v2__city:hover .ictp-blog-v2__city-icon {
	background: var(--ictp-blog-orange);
}

.ictp-blog-v2__place-info {
	min-width: 0;
	flex: 1;
}

.ictp-blog-v2__place-name {
	display: block;
	color: var(--ictp-blog-green-deep);
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.ictp-blog-v2__place-note {
	display: -webkit-box;
	margin-top: 2px;
	overflow: hidden;
	color: var(--ictp-blog-muted);
	font-size: 11px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ictp-blog-v2__place-arrow {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	fill: none;
	stroke: var(--ictp-blog-muted-light);
	stroke-width: 2;
	transition: stroke .25s ease, transform .25s ease;
}

.ictp-blog-v2__city:hover .ictp-blog-v2__place-arrow {
	stroke: var(--ictp-blog-orange);
	transform: translateX(3px);
}

.ictp-blog-v2__share-group .ictp-blog-v2__context-label {
	margin-bottom: 10px;
}

.ictp-blog-v2__share-icons {
	display: flex;
	align-items: center;
	gap: 6px;
}

.ictp-blog-v2__share-icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid var(--ictp-blog-line-soft);
	border-radius: 50%;
	background: #fff;
	color: var(--ictp-blog-muted);
	cursor: pointer;
	transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ictp-blog-v2__share-icon svg {
	display: block;
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.ictp-blog-v2__share-icon:hover,
.ictp-blog-v2__share-icon:focus-visible {
	border-color: var(--ictp-blog-green);
	background: var(--ictp-blog-green);
	box-shadow: 0 3px 10px rgba(7, 88, 88, .2);
	color: #fff;
	transform: translateY(-2px);
}

.ictp-blog-v2__copy-link:hover,
.ictp-blog-v2__copy-link:focus-visible,
.ictp-blog-v2__copy-link.is-copied {
	border-color: var(--ictp-blog-orange);
	background: var(--ictp-blog-orange);
	color: #fff;
}

.ictp-blog-v2__share-status {
	min-height: 16px;
	margin: 8px 0 0;
	color: var(--ictp-blog-orange);
	font-size: 10px;
	font-weight: 600;
}

.ictp-blog-v2__sidebar {
	position: sticky;
	top: 96px;
	align-self: start;
}

.ictp-blog-v2__sidebar > .ictp-blog-v2__side-label {
	margin: 0 0 20px;
}

.ictp-blog-v2__toc {
	margin: 0;
	padding: 0 0 0 20px;
	border-left: 1px solid var(--ictp-blog-line);
	list-style: none;
}

.ictp-blog-v2__toc li {
	margin: 0;
}

.ictp-blog-v2__toc a {
	position: relative;
	display: block;
	padding: 7px 0 7px 4px;
	color: var(--ictp-blog-muted);
	font-size: 13px;
	line-height: 1.5;
	transition: color .2s ease, padding-left .2s ease;
}

.ictp-blog-v2__toc a::before {
	position: absolute;
	top: 50%;
	left: -21px;
	width: 2px;
	height: 0;
	background: var(--ictp-blog-orange);
	content: "";
	transform: translateY(-50%);
	transition: height .25s ease;
}

.ictp-blog-v2__toc a:hover {
	padding-left: 8px;
	color: var(--ictp-blog-green);
}

.ictp-blog-v2__toc a.is-active {
	color: var(--ictp-blog-green-deep);
	font-weight: 600;
}

.ictp-blog-v2__toc a.is-active::before {
	height: 22px;
}

.ictp-blog-v2__story-cta {
	position: relative;
	margin-top: 36px;
	padding: 28px 24px;
	overflow: hidden;
	border-radius: var(--ictp-blog-radius);
	background: linear-gradient(160deg, var(--ictp-blog-green), var(--ictp-blog-green-deep));
	color: #fff;
}

.ictp-blog-v2__story-cta::before {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(233, 119, 60, .12);
	content: "";
}

.ictp-blog-v2__eyebrow {
	position: relative;
	display: block;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, .6);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.ictp-blog-v2__story-cta h2 {
	position: relative;
	margin: 0 0 10px;
	color: #fff;
	font-family: Montserrat, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

.ictp-blog-v2__story-cta p {
	position: relative;
	margin: 0 0 20px;
	color: rgba(255, 255, 255, .75);
	font-size: 12.5px;
	line-height: 1.6;
}

.ictp-blog-v2__story-cta a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: var(--ictp-blog-radius-sm);
	background: var(--ictp-blog-orange);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ictp-blog-v2__story-cta a:hover,
.ictp-blog-v2__story-cta a:focus-visible {
	background: #f58a4f;
	box-shadow: 0 4px 14px rgba(233, 119, 60, .35);
	transform: translateY(-1px);
}

.ictp-blog-v2__story-cta a span {
	transition: transform .2s ease;
}

.ictp-blog-v2__story-cta a:hover span {
	transform: translateX(3px);
}

.ictp-blog-v2__more {
	width: min(1200px, calc(100% - 48px));
	margin: 96px auto 0;
}

.ictp-blog-v2__more-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 28px;
}

.ictp-blog-v2__more-head p {
	margin: 0 0 8px;
	color: var(--ictp-blog-orange);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.ictp-blog-v2__more-head h2 {
	margin: 0;
	color: var(--ictp-blog-green-deep);
	font-family: Montserrat, sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -.015em;
	line-height: 1.2;
}

.ictp-blog-v2__more-head > a {
	color: var(--ictp-blog-green);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	transition: color .2s ease;
}

.ictp-blog-v2__more-head > a:hover {
	color: var(--ictp-blog-orange);
}

.ictp-blog-v2__guides-grid {
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	gap: 52px;
	align-items: start;
}

.ictp-blog-v2__guide-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
}

.ictp-blog-v2__guide-image {
	display: block;
	height: 232px;
	overflow: hidden;
	border-radius: var(--ictp-blog-radius);
	background: var(--ictp-blog-warm);
}

.ictp-blog-v2__guide-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.ictp-blog-v2__guide-feature:hover .ictp-blog-v2__guide-image img {
	transform: scale(1.03);
}

.ictp-blog-v2__guide-type {
	display: block;
	margin-bottom: 10px;
	color: var(--ictp-blog-orange);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.ictp-blog-v2__guide-feature h3 {
	margin: 0 0 10px;
	color: var(--ictp-blog-green-deep);
	font-family: Inter, sans-serif;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: -.015em;
	line-height: 1.32;
	transition: color .25s ease;
}

.ictp-blog-v2__guide-feature:hover h3 {
	color: var(--ictp-blog-orange);
}

.ictp-blog-v2__guide-feature p {
	margin: 0;
	color: var(--ictp-blog-muted);
	font-size: 14px;
	line-height: 1.65;
}

.ictp-blog-v2__guide-list {
	border-top: 1px solid var(--ictp-blog-line);
}

.ictp-blog-v2__guide-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid var(--ictp-blog-line);
}

.ictp-blog-v2__guide-row .ictp-blog-v2__guide-type {
	margin-bottom: 6px;
}

.ictp-blog-v2__guide-row strong {
	display: block;
	color: var(--ictp-blog-green-deep);
	font-family: Inter, sans-serif;
	font-size: 14.5px;
	font-weight: 550;
	line-height: 1.4;
	transition: color .25s ease;
}

.ictp-blog-v2__guide-row:hover strong {
	color: var(--ictp-blog-orange);
}

.ictp-blog-v2__guide-arrow {
	color: var(--ictp-blog-orange);
	font-size: 16px;
	transition: transform .25s ease;
}

.ictp-blog-v2__guide-row:hover .ictp-blog-v2__guide-arrow {
	transform: translateX(3px);
}

@media (max-width: 950px) {
	.ictp-blog-v2__shell {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding-top: 0;
	}

	.ictp-blog-v2__article-column,
	.ictp-blog-v2__sidebar-column {
		width: 100%;
	}

	.ictp-blog-v2__article-head {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px 0;
		width: min(720px, calc(100% - 48px));
		margin: 48px auto 0;
	}

	.ictp-blog-v2__article-head h1,
	.ictp-blog-v2__meta {
		width: 100%;
	}

	.ictp-blog-v2__share-inline {
		display: flex;
	}

	.ictp-blog-v2__main-flow {
		width: 100%;
		margin-top: 28px;
	}

	.ictp-blog-v2__hero {
		width: min(720px, calc(100% - 48px));
		height: 380px;
		margin: 0 auto 40px;
	}

	.ictp-blog-v2__mobile-toc {
		display: block;
	}

	.ictp-blog-v2__article-body,
	.ictp-blog-v2__tags {
		width: min(720px, calc(100% - 40px));
		margin-right: auto;
		margin-left: auto;
	}

	.ictp-blog-v2__tags {
		margin-top: 56px;
	}

	.ictp-blog-v2__context {
		width: min(720px, calc(100% - 48px));
		margin: 32px auto 28px;
	}

	.ictp-blog-v2__share-group {
		display: none;
	}

	.ictp-blog-v2__sidebar {
		position: static;
		width: min(720px, calc(100% - 48px));
		margin: 0 auto;
	}

	.ictp-blog-v2__sidebar > .ictp-blog-v2__side-label,
	.ictp-blog-v2__toc {
		display: none;
	}

	.ictp-blog-v2__story-cta {
		margin-top: 0;
	}

	.ictp-blog-v2__more {
		margin-top: 64px;
	}

	.ictp-blog-v2__guides-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.ictp-blog-v2__guide-feature {
		grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
		margin-bottom: 28px;
		padding-bottom: 28px;
		border-bottom: 1px solid var(--ictp-blog-line);
	}

	.ictp-blog-v2__guide-image {
		height: 210px;
	}

	.ictp-blog-v2__guide-list {
		border-top: 0;
	}
}

@media (max-width: 620px) {
	.ictp-blog-v2 {
		padding-bottom: 80px;
	}

	.ictp-blog-v2__article-head {
		width: calc(100% - 40px);
		margin-top: 32px;
	}

	.ictp-blog-v2__article-head h1 {
		font-size: 26px;
		line-height: 1.22;
	}

	.ictp-blog-v2__main-flow {
		margin-top: 20px;
	}

	.ictp-blog-v2__hero {
		width: calc(100% - 32px);
		height: 220px;
		margin-bottom: 28px;
	}

	.ictp-blog-v2__mobile-toc {
		width: calc(100% - 40px);
		margin-bottom: 32px;
	}

	.ictp-blog-v2__article-body {
		font-size: 16px;
		line-height: 1.8;
	}

	.ictp-blog-v2__article-body > p:first-child {
		margin-bottom: 40px;
		padding-bottom: 32px;
		font-size: 18px;
		line-height: 1.65;
	}

	.ictp-blog-v2__article-body > p:first-child::first-letter {
		margin: 2px 10px 0 0;
		font-size: 52px;
	}

	.ictp-blog-v2__article-body h2 {
		margin: 52px 0 18px;
		font-size: 23px;
	}

	.ictp-blog-v2__article-body h3 {
		font-size: 17px;
	}

	.ictp-blog-v2__article-body blockquote,
	.ictp-blog-v2__article-body .wp-block-quote {
		margin: 40px 0;
		padding: 28px 24px;
		font-size: 17px;
	}

	.ictp-blog-v2__tags {
		width: calc(100% - 40px);
		margin-top: 48px;
		gap: 10px;
	}

	.ictp-blog-v2__context,
	.ictp-blog-v2__sidebar {
		width: calc(100% - 40px);
	}

	.ictp-blog-v2__context {
		margin: 24px auto 28px;
	}

	.ictp-blog-v2__more {
		width: calc(100% - 40px);
		margin-top: 56px;
	}

	.ictp-blog-v2__more-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 24px;
	}

	.ictp-blog-v2__more-head h2 {
		font-size: 22px;
	}

	.ictp-blog-v2__guide-row {
		padding: 18px 0;
	}

	.ictp-blog-v2__guide-feature {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.ictp-blog-v2__guide-image {
		height: 220px;
	}

}

@media (prefers-reduced-motion: reduce) {
	.ictp-blog-v2 *,
	.ictp-blog-v2 *::before,
	.ictp-blog-v2 *::after {
		scroll-behavior: auto;
		transition-duration: .01ms;
	}
}
