/**
 * Nội dung khối « Thiết kế web » (paste HTML dùng class tkw-*)
 * Chỉ nạp trên taxonomy program-country.
 * Cột đọc: min(60rem,100%) — đủ rộng để khớp thẻ desktop, không để lề phải trống lớn.
 */
.tkw-article {
	--tkw-bg: #faf8f6;
	--tkw-surface: #ffffff;
	--tkw-ink: #2d2a28;
	--tkw-muted: #5c5652;
	--tkw-accent: #4a1d10;
	--tkw-accent-soft: rgba(74, 29, 16, 0.08);
	--tkw-border: rgba(74, 29, 16, 0.12);
	--tkw-radius: 12px;
	--tkw-shadow: 0 4px 24px rgba(45, 42, 40, 0.08);
	--tkw-shadow-sm: 0 1px 2px rgba(45, 42, 40, 0.05);
	--tkw-measure: min(60rem, 100%);
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	color: var(--tkw-ink);
	font-size: 1rem;
	line-height: 1.75;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.tkw-article * {
	box-sizing: border-box;
}

.tkw-article a {
	color: var(--tkw-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.15s ease, opacity 0.15s ease;
}

.tkw-article a:hover {
	opacity: 0.88;
}

.tkw-article a:focus-visible {
	outline: 2px solid var(--tkw-accent);
	outline-offset: 3px;
}

/* Header */
.tkw-header {
	margin-bottom: 1.75rem;
}

.tkw-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 4vw, 2.125rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--tkw-ink);
	letter-spacing: -0.02em;
	max-width: var(--tkw-measure);
}

.tkw-lead {
	margin: 0;
	font-size: 1.0625rem;
	color: var(--tkw-muted);
	max-width: var(--tkw-measure);
}

/* Hero */
.tkw-hero {
	margin: 1.5rem 0 2rem;
	max-width: var(--tkw-measure);
	border-radius: var(--tkw-radius);
	overflow: hidden;
	box-shadow: var(--tkw-shadow);
	background: var(--tkw-surface);
}

.tkw-hero img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.tkw-hero figcaption {
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: var(--tkw-muted);
	text-align: center;
	background: var(--tkw-bg);
}

/* Sections */
.tkw-section {
	margin-bottom: 2.5rem;
}

.tkw-section h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.25rem, 2.8vw, 1.875rem);
	font-weight: 700;
	color: var(--tkw-accent);
	line-height: 1.28;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--tkw-border);
	max-width: var(--tkw-measure);
}

.tkw-section h3 {
	margin: 1.25rem 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--tkw-ink);
}

.tkw-section p {
	margin: 0 0 1rem;
	max-width: var(--tkw-measure);
}

.tkw-section p:last-child {
	margin-bottom: 0;
}

.tkw-section__intro {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: var(--tkw-muted);
	max-width: var(--tkw-measure);
	line-height: 1.65;
}

/* Feature cards */
.tkw-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1.25rem;
	max-width: var(--tkw-measure);
}

@media (min-width: 640px) {
	.tkw-features {
		grid-template-columns: repeat(2, 1fr);
	}
}

.tkw-feature {
	display: flex;
	gap: 1rem;
	padding: 1.15rem 1.25rem;
	background: var(--tkw-bg);
	border: 1px solid var(--tkw-border);
	border-radius: var(--tkw-radius);
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.tkw-feature:hover {
	border-color: rgba(74, 29, 16, 0.2);
	background: var(--tkw-surface);
}

.tkw-feature__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tkw-accent-soft);
	border-radius: 10px;
	overflow: visible;
	position: relative;
}

.tkw-feature__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

/* Biểu tượng trừu tượng (không phụ thuộc file ảnh ngoài) */
.tkw-feature__icon--ui::before,
.tkw-feature__icon--stack::before,
.tkw-feature__icon--speed::before,
.tkw-feature__icon--search::before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* Khung + chấm — UI/UX */
.tkw-feature__icon--ui::before {
	border: 2px solid var(--tkw-accent);
	border-radius: 5px;
	box-shadow: inset 0 -6px 0 0 var(--tkw-accent-soft);
}

/* Lớp chồng — công nghệ / CMS */
.tkw-feature__icon--stack::before {
	background: linear-gradient(
		180deg,
		var(--tkw-accent) 0%,
		var(--tkw-accent) 32%,
		transparent 32%,
		transparent 42%,
		var(--tkw-accent) 42%,
		var(--tkw-accent) 74%,
		transparent 74%,
		transparent 84%,
		var(--tkw-accent) 84%
	);
	border-radius: 3px;
	opacity: 0.85;
}

/* Tốc độ — sóng */
.tkw-feature__icon--speed::before {
	border-radius: 50%;
	border: 3px solid var(--tkw-accent);
	border-top-color: transparent;
	border-right-color: transparent;
	transform: rotate(-45deg);
}

/* Kính lúp — SEO */
.tkw-feature__icon--search::before {
	border: 2.5px solid var(--tkw-accent);
	border-radius: 50%;
	box-shadow: 8px 8px 0 -4px var(--tkw-accent);
	transform: translate(-3px, -3px);
}

.tkw-feature__body h3 {
	margin: 0 0 0.35rem;
	font-size: 1rem;
}

.tkw-feature__body p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--tkw-muted);
	max-width: none;
}

/* Showcase grid */
.tkw-showcase {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-top: 1.25rem;
	max-width: var(--tkw-measure);
}

@media (min-width: 768px) {
	.tkw-showcase {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.tkw-showcase--two {
		grid-template-columns: repeat(2, 1fr);
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
}

.tkw-showcase figure {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--tkw-border);
	background: var(--tkw-bg);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tkw-showcase figure:hover {
	transform: translateY(-1px);
	box-shadow: var(--tkw-shadow-sm);
}

.tkw-showcase img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.tkw-showcase figcaption {
	padding: 0.5rem 0.65rem;
	font-size: 0.75rem;
	text-align: center;
	color: var(--tkw-muted);
	line-height: 1.35;
}

/* Notice */
.tkw-notice {
	margin: 2rem 0;
	padding: 1.15rem 1.25rem;
	border-left: 4px solid var(--tkw-accent);
	border-radius: 0 var(--tkw-radius) var(--tkw-radius) 0;
	background: linear-gradient(90deg, var(--tkw-accent-soft), var(--tkw-bg));
	max-width: var(--tkw-measure);
}

.tkw-notice strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--tkw-accent);
	font-size: 0.9375rem;
}

.tkw-notice p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--tkw-muted);
	max-width: none;
}

/* FAQ (SEO helpful content) */
.tkw-faq {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--tkw-border);
	max-width: var(--tkw-measure);
}

.tkw-faq-item {
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--tkw-border);
}

.tkw-faq-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.tkw-faq-item h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--tkw-ink);
}

.tkw-faq-item p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--tkw-muted);
	max-width: none;
}

/* CTA strip */
.tkw-cta {
	margin-top: 2rem;
	padding: 1.5rem 1.25rem;
	text-align: center;
	border-radius: var(--tkw-radius);
	background: linear-gradient(135deg, var(--tkw-accent) 0%, #3c1910 100%);
	color: #faf8f6;
	box-shadow: var(--tkw-shadow);
	max-width: var(--tkw-measure);
}

.tkw-cta p {
	margin: 0 0 0.75rem;
	font-size: 1.0625rem;
	font-weight: 600;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.tkw-cta p:last-child,
.tkw-cta .tkw-cta__link {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 1rem;
}

.tkw-cta a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}

.tkw-cta a:focus-visible {
	outline-color: #fff;
}

/* Contact */
.tkw-contact {
	margin-top: 2rem;
	padding: 1.25rem 1.5rem;
	border-radius: var(--tkw-radius);
	border: 1px solid var(--tkw-border);
	background: var(--tkw-surface);
	max-width: var(--tkw-measure);
}

.tkw-contact h2 {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	color: var(--tkw-ink);
}

.tkw-contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tkw-contact li {
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	color: var(--tkw-muted);
}

.tkw-contact li:last-child {
	margin-bottom: 0;
}

.tkw-contact strong {
	color: var(--tkw-ink);
	font-weight: 600;
	margin-right: 0.35rem;
}

/* Nhãn chủ đề (pill) — dưới tiêu đề */
.tkw-pills {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.65rem;
	max-width: var(--tkw-measure);
}

.tkw-pills .tkw-pill {
	display: inline-block;
	margin: 0;
	padding: 0.35rem 0.8rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--tkw-accent);
	background: var(--tkw-accent-soft);
	border-radius: 999px;
	border: 1px solid var(--tkw-border);
}

/* Đối thoại bối cảnh / cách làm */
.tkw-split {
	display: grid;
	gap: 1rem;
	margin-top: 1.25rem;
	max-width: var(--tkw-measure);
}

.tkw-split__col {
	padding: 1.15rem 1.2rem;
	background: var(--tkw-bg);
	border-radius: var(--tkw-radius);
	border: 1px solid var(--tkw-border);
}

.tkw-split__col--emphasis {
	background: var(--tkw-surface);
	border-color: rgba(74, 29, 16, 0.15);
	border-left-width: 3px;
	border-left-color: var(--tkw-accent);
	box-shadow: none;
}

.tkw-split__label {
	margin: 0 0 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tkw-accent);
}

.tkw-split__col p {
	margin: 0 0 0.65rem;
	max-width: none;
	font-size: 0.9375rem;
}

.tkw-split__col p:last-child {
	margin-bottom: 0;
}

/* Quy trình — lưới bước */
.tkw-steps {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	counter-reset: tkwstep;
	max-width: var(--tkw-measure);
}

.tkw-step {
	position: relative;
	margin: 0;
	padding: 1.15rem 1.1rem 1.15rem 1.15rem;
	padding-top: 2.35rem;
	background: var(--tkw-bg);
	border: 1px solid var(--tkw-border);
	border-radius: var(--tkw-radius);
}

.tkw-step__num {
	position: absolute;
	top: 0.75rem;
	left: 1rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #fff;
	background: var(--tkw-accent);
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
	line-height: 1.2;
}

.tkw-step__body h3 {
	margin: 0 0 0.4rem;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--tkw-ink);
}

.tkw-step__body p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--tkw-muted);
	line-height: 1.65;
	max-width: none;
}

/* Trích dẫn nhấn mạnh (ý chính) */
.tkw-quote {
	margin: 1.75rem 0;
	padding: 1.25rem 1.35rem;
	border-radius: var(--tkw-radius);
	background: var(--tkw-bg);
	border: 1px solid var(--tkw-border);
	border-left: 4px solid var(--tkw-accent);
	font-size: 1.03rem;
	font-style: italic;
	font-weight: 500;
	color: var(--tkw-ink);
	line-height: 1.55;
	max-width: var(--tkw-measure);
}

.tkw-quote p {
	margin: 0;
	max-width: none;
}

.tkw-quote footer {
	display: block;
	margin-top: 0.6rem;
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 600;
	color: var(--tkw-muted);
	letter-spacing: 0.02em;
}

/* —— Tablet: nhẹ nhàng mở rộng —— */
@media (min-width: 768px) {
	.tkw-header {
		margin-bottom: 2rem;
	}

	.tkw-hero {
		margin: 1.75rem 0 2.25rem;
		border-radius: 14px;
	}

	.tkw-section {
		margin-bottom: 2.75rem;
	}

	.tkw-features {
		gap: 1.15rem;
		margin-top: 1.5rem;
	}

	.tkw-feature {
		padding: 1.25rem 1.4rem;
	}

	.tkw-showcase {
		gap: 1rem;
		margin-top: 1.5rem;
	}

	.tkw-showcase figcaption {
		padding: 0.65rem 0.85rem;
		font-size: 0.8125rem;
	}

	.tkw-faq-item h3 {
		font-size: 1.0625rem;
	}

	.tkw-faq-item p {
		font-size: 1rem;
	}

	.tkw-cta {
		padding: 1.65rem 1.75rem;
	}

	.tkw-contact {
		padding: 1.4rem 1.65rem;
	}

	.tkw-split {
		grid-template-columns: 1fr 1fr;
		gap: 1.35rem;
		margin-top: 1.4rem;
	}

	.tkw-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.1rem;
	}

	.tkw-quote {
		font-size: 1.08rem;
		padding: 1.35rem 1.5rem;
	}
}

/* —— Desktop: cột đọc cân đối, bóng nhẹ, lưới 2 cột (không kéo giãn 4 cột) —— */
@media (min-width: 1024px) {
	.country_thiet_ke_web {
		background: #f3f1ee;
	}

	.country_thiet_ke_web .service-article-tax-wrap {
		max-width: 100%;
	}

	.country_thiet_ke_web .tkw-article {
		/* Gần hết chiều ngang vùng nội dung (trừ padding thẻ) — bớt lề phải trống */
		--tkw-measure: min(62rem, 100%);
		font-size: 1.0625rem;
		line-height: 1.75;
		max-width: 68rem;
		margin-left: auto;
		margin-right: auto;
		padding: 2.5rem 3rem 3rem;
		background: var(--tkw-surface);
		border: 1px solid rgba(74, 29, 16, 0.09);
		border-radius: 12px;
		box-shadow: var(--tkw-shadow-sm);
	}

	.tkw-title {
		font-size: clamp(1.875rem, 2.4vw, 2.5rem);
		margin-bottom: 1rem;
		letter-spacing: -0.03em;
		max-width: var(--tkw-measure);
		line-height: 1.2;
	}

	.tkw-lead {
		font-size: 1.125rem;
		max-width: var(--tkw-measure);
		line-height: 1.65;
		color: #4a4540;
	}

	.tkw-hero {
		margin: 2rem 0 2.5rem;
		margin-left: 0;
		margin-right: auto;
		max-width: var(--tkw-measure);
		border-radius: 12px;
		box-shadow: var(--tkw-shadow-sm);
	}

	.tkw-hero figcaption {
		padding: 1rem 1.25rem;
		font-size: 0.9375rem;
	}

	.tkw-section {
		margin-bottom: 2.75rem;
	}

	.tkw-section h2 {
		font-size: clamp(1.375rem, 1.85vw, 1.75rem);
		font-weight: 600;
		color: var(--tkw-ink);
		margin-bottom: 1.125rem;
		padding-bottom: 0.625rem;
		border-bottom-color: rgba(74, 29, 16, 0.14);
		letter-spacing: -0.02em;
		max-width: var(--tkw-measure);
	}

	.tkw-section h3 {
		font-size: 1.0625rem;
	}

	.tkw-section p {
		max-width: var(--tkw-measure);
	}

	.tkw-features {
		gap: 1rem 1.25rem;
		margin-top: 1.5rem;
		max-width: var(--tkw-measure);
	}

	.tkw-feature {
		padding: 1.35rem 1.5rem;
		gap: 1.15rem;
		border-radius: 10px;
	}

	.tkw-feature__icon {
		width: 56px;
		height: 56px;
		border-radius: 12px;
	}

	.tkw-feature__icon--ui::before,
	.tkw-feature__icon--stack::before,
	.tkw-feature__icon--speed::before,
	.tkw-feature__icon--search::before {
		width: 26px;
		height: 26px;
	}

	.tkw-feature__body h3 {
		font-size: 1.125rem;
	}

	.tkw-feature__body p {
		font-size: 1rem;
	}

	.tkw-showcase {
		gap: 1.25rem;
		margin-top: 1.5rem;
		max-width: var(--tkw-measure);
	}

	.tkw-showcase--two {
		max-width: var(--tkw-measure);
		width: 100%;
	}

	.tkw-showcase figure {
		border-radius: 12px;
	}

	.tkw-showcase figcaption {
		padding: 0.85rem 1rem;
		font-size: 0.875rem;
	}

	.tkw-notice {
		margin: 2.5rem 0;
		padding: 1.35rem 1.5rem;
	}

	.tkw-notice strong {
		font-size: 1rem;
	}

	.tkw-notice p {
		font-size: 1rem;
	}

	.tkw-faq {
		margin-top: 2.5rem;
		padding-top: 2.5rem;
		max-width: var(--tkw-measure);
	}

	.tkw-faq-item {
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.tkw-faq-item h3 {
		font-size: 1.125rem;
	}

	.tkw-faq-item p {
		font-size: 1.0625rem;
		line-height: 1.72;
	}

	.tkw-cta {
		margin-top: 2.5rem;
		padding: 2rem 2.25rem;
		border-radius: 12px;
		max-width: var(--tkw-measure);
		margin-left: 0;
		margin-right: auto;
	}

	.tkw-cta p {
		font-size: 1.1875rem;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.tkw-cta p:last-child,
	.tkw-cta .tkw-cta__link {
		font-size: 1.0625rem;
	}

	.tkw-contact h2 {
		font-size: 1.25rem;
	}

	.tkw-contact li {
		font-size: 1rem;
	}

	.tkw-pills .tkw-pill {
		font-size: 0.8125rem;
		padding: 0.4rem 0.9rem;
	}

	.tkw-split {
		max-width: var(--tkw-measure);
		gap: 1.25rem;
		align-items: stretch;
	}

	.tkw-split__col {
		padding: 1.35rem 1.5rem;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.tkw-split__col p {
		font-size: 1rem;
	}

	/* 2×2: tránh bốn cột mỏng — cân đối như layout sản phẩm chuẩn */
	.tkw-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem 1.25rem;
		max-width: var(--tkw-measure);
	}

	/* 6 bước: 3 cột × 2 hàng */
	.tkw-steps--six {
		grid-template-columns: repeat(3, 1fr);
	}

	.tkw-step {
		padding: 1.35rem 1.35rem 1.35rem 1.35rem;
		padding-top: 2.55rem;
		min-height: 100%;
		align-self: stretch;
		background: var(--tkw-surface);
	}

	.tkw-step__body h3 {
		font-size: 1.0625rem;
	}

	.tkw-step__body p {
		font-size: 0.9375rem;
	}

	.tkw-quote {
		font-size: 1.0625rem;
		margin: 2rem 0;
		max-width: var(--tkw-measure);
	}

	.tkw-section__intro {
		max-width: var(--tkw-measure);
	}

	.tkw-notice {
		max-width: var(--tkw-measure);
	}

	.tkw-contact {
		margin-top: 2.5rem;
		padding: 1.65rem 2rem;
		max-width: var(--tkw-measure);
		margin-left: 0;
		margin-right: auto;
	}
}

/* —— Wide desktop: cột ~bằng vùng nội dung (70rem − padding) —— */
@media (min-width: 1280px) {
	.country_thiet_ke_web .tkw-article {
		padding: 2.75rem 3.25rem 3.25rem;
		max-width: 70rem;
		--tkw-measure: min(63rem, 100%);
	}

	.tkw-title {
		font-size: 2.5rem;
		max-width: var(--tkw-measure);
	}
}

/* —— Mở rộng (mẫu landing dạng accordion / lưới ngành) —— */
.tkw-header--center {
	text-align: center;
}

.tkw-header--center .tkw-title,
.tkw-header--center .tkw-lead,
.tkw-header--center .tkw-pills {
	margin-left: auto;
	margin-right: auto;
}

.tkw-subtitle {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--tkw-accent);
}

.tkw-section__closing-title {
	margin: 2rem auto 0.75rem;
	font-size: clamp(1.2rem, 2.4vw, 1.45rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--tkw-ink);
	max-width: var(--tkw-measure);
}

.tkw-section--center {
	text-align: center;
}

.tkw-section--center .tkw-subtitle,
.tkw-section--center > h2 {
	margin-left: auto;
	margin-right: auto;
}

.tkw-section--center > p:not(.tkw-section__intro) {
	margin-left: auto;
	margin-right: auto;
}

.tkw-section--center .tkw-split,
.tkw-section--center .tkw-industries {
	text-align: left;
}

.tkw-section--center .tkw-industries .tkw-industry {
	text-align: center;
}

/* Khối h4 + đoạn (giống cột nội dung mẫu) */
.tkw-h4-stack {
	margin-top: 1.25rem;
	max-width: var(--tkw-measure);
	text-align: left;
}

.tkw-h4-stack h4 {
	margin: 1.35rem 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--tkw-accent);
	line-height: 1.3;
}

.tkw-h4-stack h4:first-child {
	margin-top: 0;
}

.tkw-h4-stack p {
	margin: 0 0 1rem;
	max-width: none;
}

/* Accordion HTML5 (không dùng <style> trong paste) */
.tkw-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: var(--tkw-measure);
}

.tkw-accordion details {
	border: 1px solid var(--tkw-border);
	border-radius: 10px;
	background: var(--tkw-surface);
	overflow: hidden;
}

.tkw-accordion summary {
	cursor: pointer;
	padding: 0.9rem 1rem;
	font-weight: 600;
	font-size: 0.98rem;
	color: var(--tkw-ink);
	list-style: none;
	position: relative;
	padding-right: 2.25rem;
}

.tkw-accordion summary::-webkit-details-marker {
	display: none;
}

.tkw-accordion summary::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 2px solid var(--tkw-accent);
	border-bottom: 2px solid var(--tkw-accent);
	transform: translateY(-60%) rotate(45deg);
	transition: transform 0.2s ease;
}

.tkw-accordion details[open] summary::after {
	transform: translateY(-20%) rotate(-135deg);
}

.tkw-accordion details[open] summary {
	border-bottom: 1px solid var(--tkw-border);
	background: var(--tkw-bg);
}

.tkw-accordion__body {
	padding: 1rem 1.1rem 1.15rem;
	font-size: 0.9375rem;
	color: var(--tkw-muted);
}

.tkw-accordion__body p {
	margin: 0 0 0.75rem;
	max-width: none;
}

.tkw-accordion__body p:last-child {
	margin-bottom: 0;
}

/* Cột: accordion + ảnh minh họa */
.tkw-split--media {
	align-items: start;
}

.tkw-split--media .tkw-figure--side {
	margin: 0;
	border-radius: var(--tkw-radius);
	overflow: hidden;
	border: 1px solid var(--tkw-border);
	background: var(--tkw-bg);
	box-shadow: var(--tkw-shadow-sm);
}

.tkw-split--media .tkw-figure--side img {
	display: block;
	width: 100%;
	height: auto;
}

/* Lưới ngành (icon + tiêu đề) */
.tkw-industries {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.85rem;
	margin: 1.5rem auto 0;
	max-width: var(--tkw-measure);
}

@media (min-width: 480px) {
	.tkw-industries {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	.tkw-industries {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}

.tkw-industry {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0.85rem 0.5rem;
	border: 1px solid var(--tkw-border);
	border-radius: 10px;
	background: var(--tkw-bg);
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tkw-industry:hover {
	border-color: rgba(74, 29, 16, 0.22);
	background: var(--tkw-surface);
}

.tkw-industry img {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: contain;
	margin-bottom: 0.5rem;
}

.tkw-industry h4 {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--tkw-ink);
}
