* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Nunito", Arial, sans-serif;
	color: #24242b;
	background: #fff;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.wrap {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 28px;
}

.top {
	height: 44px;
	background: #fff7f8;
	border-bottom: 1px solid #f5e6e9;
	font-size: 14px;
	color: #666;
}

.top .wrap,
.nav .wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	gap: 18px;
}

.top-sep {
	margin: 0 12px;
}

.social span {
	margin-left: 18px;
	color: #111;
	font-weight: 800;
}

.nav {
	height: 96px;
	background: #fff;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 900;
	font-size: 26px;
	line-height: 0.9;
}

.logo-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #f66f8d;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 26px;
}

.logo b {
	color: #f25d7a;
}

.menu {
	display: flex;
	gap: 42px;
	font-weight: 800;
	color: #222;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: 56px;
}

.menu li.current-menu-item > a,
.menu li.current_page_item > a {
	color: #f66f8d;
}

.menu li {
	position: relative;
}

.search {
	font-size: 30px;
	line-height: 1;
	margin-left: auto;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: 4px;
	border-radius: 10px;
	transition: background 0.2s;
}

.menu-toggle:hover {
	background: #fff0f3;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
	display: block;
	width: 24px;
	height: 2px;
	background: #24242b;
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle-icon {
	position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	content: '';
	position: absolute;
	left: 0;
}

.menu-toggle-icon::before { top: -7px; }
.menu-toggle-icon::after  { top: 7px; }

.menu-toggle.is-open .menu-toggle-icon {
	background: transparent;
}

.menu-toggle.is-open .menu-toggle-icon::before {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-icon::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.25s;
}

.mobile-menu-overlay.is-open {
	display: block;
	opacity: 1;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(340px, 88vw);
	height: 100%;
	background: #fff;
	z-index: 1000;
	box-shadow: -8px 0 40px rgba(0,0,0,0.12);
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
	overflow-y: auto;
	padding: 0 0 32px;
}

.mobile-menu.is-open {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 22px;
	border-bottom: 1px solid #f5e6e9;
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 1;
}

.mobile-menu-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #555;
	padding: 6px 10px;
	border-radius: 8px;
	transition: background 0.2s;
}

.mobile-menu-close:hover {
	background: #fff0f3;
}

.mobile-nav {
	list-style: none;
	margin: 0;
	padding: 12px 0;
}

.mobile-nav li a {
	display: block;
	padding: 14px 22px;
	font-weight: 800;
	font-size: 17px;
	color: #24242b;
	border-bottom: 1px solid #faf0f2;
	transition: background 0.15s;
}

.mobile-nav li a:hover,
.mobile-nav li.current-menu-item > a,
.mobile-nav li.current_page_item > a {
	background: #fff3f5;
	color: #f66f8d;
}

.hero {
	margin: 10px auto 34px;
	border-radius: 28px;
	background: #fff3f5;
	min-height: 474px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	position: relative;
}

.hero-text {
	padding: 88px 40px 70px 38px;
}

.hero h1 {
	font-size: 58px;
	line-height: 1.22;
	margin: 0 0 24px;
	font-weight: 900;
	letter-spacing: -1px;
}

.hero h1 span {
	display: block;
	color: #f26482;
}

.hero p {
	font-size: 20px;
	line-height: 1.75;
	color: #5d5d65;
	max-width: 700px;
}

.btns {
	display: flex;
	gap: 18px;
	margin-top: 34px;
}

.btn {
	display: inline-block;
	padding: 18px 29px;
	border-radius: 999px;
	font-weight: 900;
	border: 2px solid #f3d9df;
	background: #fff;
	color: #24242b;
}

.btn.primary,
.searchbox button,
.newsletter button {
	background: #f66f8d;
	color: #fff;
	border-color: #f66f8d;
}

.hero-img {
	position: relative;
	padding: 40px 45px 0 0;
}

.hero-img .house {
	width: 100%;
	height: 430px;
	border-radius: 210px 28px 28px 210px;
	object-fit: cover;
	box-shadow: 0 18px 50px #d5e1e6;
}

.hero-img > img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	border-radius: 26px;
}

.bubble .emoji,
.bubble .wp-smiley {
	width: 24px !important;
	height: 24px !important;
	min-height: 24px !important;
	max-width: 24px !important;
	object-fit: contain !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	vertical-align: middle;
}

.bubble {
	position: absolute;
	background: #fff;
	border-radius: 24px;
	padding: 18px 25px;
	box-shadow: 0 12px 30px #dfcbd0;
	display: flex;
	gap: 14px;
	align-items: center;
	font-weight: 900;
}

.bubble small {
	display: block;
	color: #666;
	font-size: 14px;
}

.b1 {
	right: 35px;
	top: 70px;
}

.b2 {
	left: -25px;
	bottom: 28px;
}

.section {
	background: #fff8fa;
	border-radius: 22px;
	margin-bottom: 34px;
	padding: 26px;
}

.section-top {
	margin-top: 28px;
}

.title {
	font-size: 28px;
	font-weight: 900;
	margin: 0 0 18px;
}

.cats {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.cat {
	background: #fff;
	border: 1px solid #f0e7e9;
	border-radius: 15px;
	min-height: 158px;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 900;
	box-shadow: 0 4px 12px #f4edf0;
	padding: 14px;
}

.cat .ico {
	font-size: 40px;
}

.cat small {
	display: block;
	color: #777;
	margin-top: 8px;
}

.main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 48px;
}

.headrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.see {
	color: #5295d6;
	font-weight: 800;
}

.feature {
	display: grid;
	grid-template-columns: 410px 1fr;
	gap: 28px;
	margin-bottom: 28px;
}

.img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 14px;
}

.badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: #ffdce6;
	color: #f15f82;
	font-size: 13px;
	font-weight: 900;
}

.feature h2 {
	font-size: 30px;
	line-height: 1.15;
	margin: 14px 0;
}

.muted {
	color: #666;
	line-height: 1.65;
}

.cards,
.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.post {
	border: 1px solid #eee;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 22px #f7f0f2;
}

.post img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.post > div {
	padding: 16px;
}

.post h3 {
	font-size: 20px;
	line-height: 1.35;
	margin: 8px 0;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.tag {
	padding: 10px 18px;
	border-radius: 999px;
	background: #fff;
	font-weight: 800;
	border: 1px solid #f1e5e8;
}

.tag.pink   { background: #ffe6ea; border-color: #f9cdd4; }
.tag.blue   { background: #eaf4ff; border-color: #c8e0f7; }
.tag.purple { background: #eee7ff; border-color: #d4c9f5; }
.tag.yellow { background: #fff4d9; border-color: #f0dfa0; }
.tag.green  { background: #e9faec; border-color: #bbe8c1; }

.sidebar .panel {
	background: #fff8fa;
	border-radius: 22px;
	padding: 24px;
	margin-bottom: 24px;
}

.sticky {
	position: sticky;
	top: 18px;
}

.searchbox {
	display: flex;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	overflow: hidden;
}

.searchbox input {
	flex: 1;
	border: 0;
	padding: 0 14px;
	font-weight: 700;
	min-height: 52px;
}

.searchbox button {
	width: 55px;
	border: 0;
	font-size: 20px;
	background: #f66f8d;
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

.side-card {
	text-align: center;
}

.side-card img {
	max-width: 220px;
}

.popular .item {
	display: grid;
	grid-template-columns: 26px 64px 1fr;
	gap: 10px;
	align-items: center;
	margin: 13px 0;
	font-weight: 900;
	font-size: 15px;
}

.num {
	background: #f66f8d;
	color: #fff;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
}

.popular img {
	width: 64px;
	height: 52px;
	border-radius: 8px;
	object-fit: cover;
}

.benefits {
	margin: 44px auto 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	border: 1px solid #f0e6e9;
	border-radius: 18px;
	padding: 18px;
}

.benefit {
	display: flex;
	gap: 14px;
	align-items: center;
}

.benefit i {
	font-size: 34px;
}

.breadcrumb {
	display: inline-flex;
	background: #fff;
	border-radius: 999px;
	padding: 10px 18px;
	color: #777;
	font-weight: 800;
	box-shadow: 0 8px 22px #f2dce1;
	gap: 6px;
}

.article-hero {
	margin: 10px auto 34px;
	border-radius: 30px;
	background: #fff3f5;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.03fr 0.97fr;
	min-height: 430px;
}

.hero-content {
	padding: 56px 46px;
}

.article-hero h1 {
	font-size: 52px;
	line-height: 1.12;
	margin: 18px 0 18px;
	font-weight: 900;
	letter-spacing: -1px;
}

.excerpt {
	font-size: 20px;
	line-height: 1.7;
	color: #5d5d65;
}

.meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 25px;
	color: #666;
	font-weight: 800;
}

.meta span {
	background: #fff;
	border-radius: 999px;
	padding: 10px 15px;
}

.layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr) 310px;
	gap: 30px;
}

.layout-single,
.layout-page {
	grid-template-columns: minmax(0, 1fr) 340px;
}

.article {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 26px;
	padding: 42px;
	box-shadow: 0 8px 28px #f7f0f2;
}

.article p {
	font-size: 19px;
	line-height: 1.85;
	color: #4e4e56;
	margin: 0 0 22px;
}

.article h2 {
	font-size: 30px;
	margin-top: 36px;
}

.article h3 {
	font-size: 24px;
	margin: 28px 0 12px;
}

.article ul,
.article ol {
	padding-left: 22px;
}

.article img {
	border-radius: 18px;
}

.share {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	border-top: 1px solid #f1e8eb;
	border-bottom: 1px solid #f1e8eb;
	padding: 22px 0;
	margin: 38px 0;
}

.share-links {
	display: flex;
	gap: 10px;
}

.share a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff3f5;
	color: #f66f8d;
	font-weight: 900;
}

.author {
	display: flex;
	gap: 20px;
	background: #fff8fa;
	border-radius: 22px;
	padding: 24px;
	margin: 30px 0;
}

.author img {
	border-radius: 50%;
}

.related {
	margin-top: 34px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.filter a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border: 1px solid #f0e7e9;
	border-radius: 14px;
	padding: 15px 16px;
	margin-bottom: 12px;
	font-weight: 900;
}

.filter a.active {
	background: #f66f8d;
	color: #fff;
}

.toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	background: #fff8fa;
	border-radius: 18px;
	padding: 18px 20px;
}

.toolbar b {
	font-size: 20px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	min-width: 42px;
	height: 42px;
	border-radius: 13px;
	display: inline-grid;
	place-items: center;
	background: #fff8fa;
	font-weight: 900;
	padding: 0 8px;
}

.pagination .page-numbers.current {
	background: #f66f8d;
	color: #fff;
}

.error-wrap {
	margin: 10px auto 34px;
	border-radius: 34px;
	background: linear-gradient(135deg, #fff3f5, #fff9ed);
	min-height: 560px;
	display: grid;
	grid-template-columns: 1fr 0.95fr;
	gap: 20px;
	overflow: hidden;
	padding: 50px;
}

.error-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.code {
	font-size: 138px;
	line-height: 0.85;
	font-weight: 900;
	color: #f66f8d;
	letter-spacing: -7px;
	margin: 38px 0 12px;
	text-shadow: 0 10px 0 #ffe1e8;
}

.lead {
	font-size: 20px;
	line-height: 1.75;
	color: #5d5d65;
	max-width: 660px;
	margin: 0;
}

.search-box {
	margin-top: 28px;
	max-width: 610px;
}

.actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.btn-outline {
	display: inline-block;
	padding: 13px 22px;
	border-radius: 999px;
	border: 2px solid #ffd3dc;
	color: #f26482;
	font-weight: 900;
	background: #fff;
}

.visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.house-card {
	width: 100%;
	max-width: 470px;
	background: #fff;
	border-radius: 34px;
	padding: 34px;
	box-shadow: 0 20px 55px #ead9de;
	text-align: center;
}

footer {
	margin-top: 36px;
	background: #ffe5ea;
	padding: 30px 0 10px;
}

.foot {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
	gap: 42px;
}

.foot h4 {
	margin: 0 0 14px;
	font-size: 19px;
}

.foot p,
.foot a {
	color: #555;
	line-height: 1.8;
	font-weight: 700;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.newsletter {
	display: flex;
}

.newsletter input {
	flex: 1;
	border: 0;
	border-radius: 10px 0 0 10px;
	padding: 0 16px;
	min-height: 48px;
}

.newsletter button {
	border: 0;
	font-weight: 900;
	border-radius: 0 10px 10px 0;
	padding: 0 20px;
}

.footer-bottom {
	border-top: 1px solid #f4cbd3;
	margin-top: 22px;
	padding-top: 14px;
	color: #666;
}

@media (max-width: 1200px) {
	.layout {
		grid-template-columns: 260px 1fr;
	}

	.right {
		grid-column: 1 / -1;
	}
}

@media (max-width: 1000px) {
	.menu {
		display: none;
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.hero,
	.main,
	.feature,
	.foot,
	.article-hero,
	.layout,
	.layout-single,
	.layout-page,
	.error-wrap,
	.archive-featured {
		grid-template-columns: 1fr;
	}

	.archive-featured > a img {
		min-height: 220px;
		height: 220px;
	}

	.archive-featured-content {
		padding: 22px 24px;
	}

	.archive-featured-content h2 {
		font-size: 22px;
	}

	.hero h1 {
		font-size: 40px;
	}

	.hero-text {
		padding: 38px 24px;
	}

	.hero-img {
		padding: 20px;
	}

	.hero-img .house {
		height: 300px;
		border-radius: 28px;
	}

	.cards,
	.cats,
	.grid,
	.related-grid,
	.benefits {
		grid-template-columns: 1fr 1fr;
	}

	.bubble {
		display: none;
	}

	.sticky {
		position: static;
	}

	.error-wrap {
		padding: 34px 22px;
	}
}

/* Archive featured post (first post in archive shown larger) */

.archive-featured {
	display: grid;
	grid-template-columns: minmax(340px, 42%) 1fr;
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 22px;
	overflow: hidden;
	margin-bottom: 24px;
	box-shadow: 0 8px 28px #f6edf0;
	min-height: 255px;
}

.archive-featured > a {
	display: block;
}

.archive-featured > a img {
	width: 100%;
	height: 100%;
	min-height: 255px;
	object-fit: cover;
}

.archive-featured-content {
	padding: 30px 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.archive-featured-content h2 {
	font-size: 26px;
	line-height: 1.22;
	margin: 14px 0 12px;
	letter-spacing: -0.4px;
}

.archive-featured-content h2 a:hover {
	color: #f66f8d;
}

.archive-featured-content .meta {
	background: none;
	padding: 0;
	font-weight: 800;
	color: #777;
	margin-top: 10px;
	flex-wrap: nowrap;
}

.archive-featured-content .meta span {
	background: none;
	padding: 0;
}

/* Article content components: TOC, Note callout, Checklist, Full-width image */

.toc {
	background: #fff8fa;
	border-radius: 22px;
	padding: 24px;
	margin: 26px 0;
}

.toc h2 {
	font-size: 22px;
	margin: 0 0 14px;
	font-weight: 900;
}

.toc a {
	display: block;
	background: #fff;
	border: 1px solid #f0e7e9;
	border-radius: 13px;
	padding: 13px 16px;
	margin: 10px 0;
	font-weight: 800;
	color: #444;
	transition: background 0.15s, color 0.15s;
}

.toc a:hover {
	background: #fff0f3;
	color: #f66f8d;
}

.note {
	background: #fff3f5;
	border-left: 6px solid #f66f8d;
	border-radius: 0 18px 18px 0;
	padding: 22px 24px;
	margin: 26px 0;
	font-size: 18px;
	line-height: 1.7;
	color: #555;
}

.checklist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 20px 0 30px;
}

.check {
	background: #fff8fa;
	border: 1px solid #f0e7e9;
	border-radius: 16px;
	padding: 17px;
	font-weight: 900;
}

.check span {
	color: #f66f8d;
	margin-right: 8px;
}

.article img.full,
.article .full {
	width: 100%;
	height: 390px;
	object-fit: cover;
	border-radius: 22px;
	margin: 18px 0 26px;
	display: block;
}

/* CTA block in sidebar */
.cta-block {
	background: linear-gradient(135deg, #fff0f4, #fff8e9);
	border-radius: 22px;
	padding: 26px;
	text-align: center;
}

.cta-block h3 {
	font-size: 22px;
	margin: 0 0 10px;
	font-weight: 900;
}

@media (max-width: 620px) {
	.wrap {
		padding: 0 16px;
	}

	.top {
		height: auto;
		padding: 10px 0;
	}

	.top .wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero h1,
	.article-hero h1 {
		font-size: 32px;
	}

	.cards,
	.cats,
	.grid,
	.related-grid,
	.benefits {
		grid-template-columns: 1fr;
	}

	.searchbox {
		flex-direction: column;
	}

	.searchbox button {
		width: 100%;
		min-height: 48px;
	}

	.code {
		font-size: 96px;
	}
}

/* ============================================================
   PAGE: GIỚI THIỆU (page-gioi-thieu.php)
   ============================================================ */

.about-hero {
	min-height: 445px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 34px;
}

.about-stat {
	background: #fff8fa;
	border-radius: 22px;
	padding: 25px;
	text-align: center;
	border: 1px solid #f1e8eb;
}

.about-stat b {
	display: block;
	font-size: 34px;
	color: #f26482;
	font-weight: 900;
}

.about-stat span {
	display: block;
	font-weight: 900;
	margin-top: 6px;
}

.about-stat small {
	color: #666;
	font-weight: 700;
}

.about-story {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 34px;
	align-items: center;
	margin-bottom: 34px;
}

.about-story img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 26px;
	box-shadow: 0 14px 34px #f0e4e8;
}

.about-story-box {
	background: #fff;
	border-radius: 24px;
	padding: 32px;
	border: 1px solid #f1e8eb;
}

.about-section {
	margin-bottom: 34px;
}

.about-section--soft {
	background: #fff8fa;
	border-radius: 28px;
	padding: 34px;
}

.about-section .title,
.about-section--soft .title {
	font-size: 34px;
}

.lead {
	font-size: 19px;
	line-height: 1.75;
	color: #5d5d65;
	margin: 0 0 22px;
}

.about-values {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.about-value {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 22px;
	padding: 26px;
	box-shadow: 0 8px 22px #f7f0f2;
}

.about-value i {
	font-size: 38px;
}

.about-value h3 {
	font-size: 21px;
	margin: 14px 0 8px;
}

.about-value p {
	color: #666;
	line-height: 1.65;
	margin: 0;
}

.about-mission {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	margin-bottom: 34px;
}

.about-mission-card {
	border-radius: 24px;
	padding: 32px;
	border: 1px solid #f1e8eb;
}

.about-mission-card h3 {
	font-size: 28px;
	margin: 0 0 12px;
	font-weight: 900;
}

.about-mission-card p {
	font-size: 18px;
	line-height: 1.75;
	color: #5d5d65;
	margin: 0;
}

.about-mission-card--pink   { background: #fff3f5; }
.about-mission-card--yellow { background: #fff9ed; }

.about-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	counter-reset: about-step;
	margin-top: 24px;
}

.about-step {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 22px;
	padding: 24px;
	counter-increment: about-step;
}

.about-step::before {
	content: "0" counter(about-step);
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 15px;
	background: #f66f8d;
	color: #fff;
	font-weight: 900;
	margin-bottom: 14px;
}

.about-step h3 {
	font-size: 21px;
	margin: 0 0 8px;
}

.about-step p {
	color: #666;
	line-height: 1.65;
	margin: 0;
}

.about-team {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 24px;
}

.about-member {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 8px 22px #f7f0f2;
}

.about-member img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.about-member > div {
	padding: 22px;
}

.about-member h3 {
	font-size: 24px;
	margin: 0 0 6px;
}

.about-member p {
	color: #666;
	line-height: 1.65;
	margin: 0;
}

.about-cta {
	background: linear-gradient(135deg, #fff0f4, #fff8e9);
	border-radius: 28px;
	padding: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.about-cta h2 {
	font-size: 34px;
	margin: 0 0 10px;
}

.about-cta p {
	font-size: 18px;
	color: #666;
	line-height: 1.65;
	margin: 0;
}

/* ============================================================
   PAGE: LIÊN HỆ (page-lien-he.php)
   ============================================================ */

.contact-hero {
	min-height: 390px;
}

.contact-hero-card {
	height: 100%;
	min-height: 300px;
	background: #fff;
	border-radius: 28px;
	padding: 34px;
	box-shadow: 0 18px 48px #ead9de;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.contact-hero-card img {
	width: 180px;
}

.contact-hero-card h2 {
	font-size: 26px;
	margin: 16px 0 8px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 34px;
	margin-bottom: 34px;
}

.contact-info {
	display: grid;
	gap: 18px;
	align-content: start;
}

.contact-info-card {
	background: #fff8fa;
	border: 1px solid #f1e8eb;
	border-radius: 24px;
	padding: 26px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.contact-icon {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: #f66f8d;
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 24px;
	flex: 0 0 auto;
}

.contact-info-card h3 {
	font-size: 22px;
	margin: 0 0 6px;
}

.contact-info-card p {
	color: #666;
	line-height: 1.65;
	margin: 0;
	font-weight: 700;
}

.contact-form-box {
	background: #fff8fa;
	border-radius: 28px;
	padding: 34px;
	border: 1px solid #f1e8eb;
}

.contact-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.contact-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-field--full {
	grid-column: 1 / -1;
}

.contact-field label {
	font-weight: 900;
	color: #333;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	border: 1px solid #f0e1e5;
	border-radius: 16px;
	background: #fff;
	padding: 16px 18px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	outline: none;
	box-sizing: border-box;
}

.contact-field textarea {
	resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	border-color: #f66f8d;
	box-shadow: 0 0 0 4px #ffe1e8;
}

.contact-quick {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.contact-quick-card {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 22px;
	padding: 26px;
	text-align: center;
	box-shadow: 0 8px 22px #f7f0f2;
}

.contact-quick-card i {
	font-size: 38px;
}

.contact-quick-card h3 {
	font-size: 20px;
	margin: 14px 0 8px;
}

.contact-quick-card p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.contact-map {
	height: 340px;
	border-radius: 28px;
	background: linear-gradient(135deg, #ffe5ea, #fff8e9);
	position: relative;
	overflow: hidden;
	border: 1px solid #f1e8eb;
	display: grid;
	place-items: center;
}

.contact-map::before {
	content: "";
	position: absolute;
	inset: 36px;
	border: 3px dashed rgba(246, 111, 141, 0.35);
	border-radius: 28px;
}

.contact-map-card {
	background: #fff;
	border-radius: 24px;
	padding: 26px 34px;
	text-align: center;
	box-shadow: 0 16px 38px #e8cfd6;
	position: relative;
	z-index: 1;
}

.contact-map-card span {
	font-size: 48px;
}

.contact-map-card h3 {
	font-size: 24px;
	margin: 10px 0 6px;
}

.contact-map-card p {
	margin: 0;
	color: #666;
	font-weight: 800;
}

.contact-faq {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 24px;
}

.contact-faq-item {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 20px;
	padding: 24px;
}

.contact-faq-item h3 {
	font-size: 20px;
	margin: 0 0 8px;
}

.contact-faq-item p {
	color: #666;
	line-height: 1.65;
	margin: 0;
}

/* ============================================================
   RESPONSIVE — Giới thiệu & Liên hệ
   ============================================================ */

@media (max-width: 1000px) {
	.about-stats,
	.about-values,
	.about-process {
		grid-template-columns: 1fr 1fr;
	}

	.about-story,
	.about-mission,
	.contact-grid,
	.contact-faq {
		grid-template-columns: 1fr;
	}

	.about-story img {
		height: 280px;
	}

	.about-team {
		grid-template-columns: 1fr 1fr;
	}

	.about-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-quick {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 620px) {
	.about-stats,
	.about-values,
	.about-process,
	.about-team,
	.contact-quick,
	.contact-fields {
		grid-template-columns: 1fr;
	}

	.contact-map {
		height: 260px;
	}

	.contact-map-card {
		padding: 22px;
	}

	.about-section--soft .title,
	.about-section .title {
		font-size: 26px;
	}
}

/* ============================================================
   TRANG PHÁP LÝ (page-phap-ly.php)
   ============================================================ */

.legal-hero .hero-img {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	padding: 40px;
}

.legal-box {
	background: #fff;
	border-radius: 28px;
	padding: 36px 32px;
	box-shadow: 0 16px 48px rgba(242, 100, 130, 0.12);
	text-align: center;
	max-width: 340px;
}

.legal-box-icon {
	font-size: 52px;
	display: block;
	margin-bottom: 14px;
	line-height: 1;
}

.legal-box h2 {
	font-size: 20px;
	font-weight: 900;
	margin: 0 0 10px;
	color: #24242b;
}

.legal-box p {
	color: #888;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* 2-col layout: sidebar | article */
.legal-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 30px;
	margin-bottom: 48px;
}

.legal-sidebar {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.legal-toc {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 24px;
}

.legal-toc h3 {
	font-size: 18px;
	font-weight: 900;
	margin: 0 0 14px;
}

.legal-toc a {
	display: block;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	color: #555;
	transition: background 0.15s, color 0.15s;
}

.legal-toc a:hover {
	background: #fff0f4;
	color: #f26482;
}

.legal-notice {
	background: #fff8e7;
	border-left: 4px solid #f6c94e;
	border-radius: 14px;
	padding: 18px 20px;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.legal-notice b {
	display: block;
	margin-bottom: 6px;
	font-size: 15px;
}

.legal-contact-mini {
	background: #fff0f4;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
}

.legal-contact-mini .muted {
	font-size: 14px;
	margin: 0 0 14px;
}

/* Article area */
.legal-content {
	min-width: 0;
}

.legal-updated {
	display: inline-block;
	font-size: 13px;
	color: #888;
	font-weight: 700;
	margin-bottom: 24px;
}

.legal-static-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 16px;
}

.legal-static-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #fff8fa;
	border: 1px solid #f1e5e8;
	border-radius: 18px;
	padding: 20px 18px;
	font-size: 15px;
	font-weight: 800;
	color: #24242b;
	transition: box-shadow 0.15s, border-color 0.15s;
}

.legal-static-card:hover {
	border-color: #f66f8d;
	box-shadow: 0 8px 24px rgba(246, 111, 141, 0.12);
	color: #f26482;
}

.legal-static-card span {
	font-size: 13px;
	font-weight: 600;
	color: #888;
}

/* Responsive legal page */
@media (max-width: 1000px) {
	.legal-layout {
		grid-template-columns: 240px minmax(0, 1fr);
	}

	.legal-static-links {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 620px) {
	.legal-layout {
		grid-template-columns: 1fr;
	}

	.legal-hero .hero-img {
		padding: 24px;
	}

	.legal-box {
		max-width: 100%;
	}

	.legal-static-links {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   CHUYÊN MỤC MẪU NHÀ ĐẸP (category-mau-nha-dep.php)
   ============================================================ */

/* Chips filter tabs */
.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.chip {
	background: #fff;
	border: 1px solid #f0e7e9;
	border-radius: 999px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 900;
	color: #555;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	text-decoration: none;
}

.chip:hover,
.chip.active {
	background: #f66f8d;
	color: #fff;
	border-color: #f66f8d;
}

/* Hero gallery (right column of hero) */
.hero-gallery {
	padding: 34px;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 16px;
}

.hero-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 15px 35px rgba(231, 220, 224, 0.7);
	display: block;
}

.hero-gallery .big {
	min-height: 340px;
}

.hero-gallery .stack {
	display: grid;
	gap: 16px;
}

/* Featured post (overlay style) */
.feature {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 28px;
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: 0 14px 36px rgba(244, 233, 237, 0.8);
	position: relative;
}

.feature-cover {
	position: relative;
	height: 360px;
	overflow: hidden;
}

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

.feature-cover::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(20, 20, 28, 0.66),
		rgba(20, 20, 28, 0.18) 48%,
		rgba(20, 20, 28, 0)
	);
}

.feature-overlay {
	position: absolute;
	left: 34px;
	bottom: 30px;
	z-index: 2;
	max-width: 650px;
	color: #fff;
}

.feature-overlay .badge {
	background: #fff;
	color: #f26482;
}

.feature-overlay h2 {
	font-size: 34px;
	line-height: 1.15;
	margin: 14px 0 10px;
	letter-spacing: -0.6px;
	color: #fff;
}

.feature-overlay p {
	font-size: 17px;
	line-height: 1.6;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
}

.feature-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 22px 28px;
	background: #fff;
}

.feature-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-outline {
	display: inline-block;
	padding: 14px 22px;
	border-radius: 999px;
	border: 2px solid #ffd3dc;
	color: #f26482;
	font-weight: 900;
	background: #fff;
	font-size: 14px;
	transition: background 0.15s, color 0.15s;
}

.btn-outline:hover {
	background: #fff0f4;
}

/* Mini specs pills inside feature info */
.mini-specs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.mini-specs span {
	background: #fff3f5;
	color: #f26482;
	border-radius: 999px;
	padding: 8px 13px;
	font-weight: 900;
	font-size: 13px;
}

/* House card grid */
.house-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

.house-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(247, 240, 242, 0.9);
	position: relative;
}

.house-card img {
	width: 100%;
	height: 245px;
	object-fit: cover;
	display: block;
}

.house-card .body {
	padding: 22px 24px;
}

.house-card h3 {
	font-size: 18px;
	line-height: 1.4;
	margin: 10px 0 8px;
	font-weight: 800;
}

.house-card .muted {
	font-size: 14px;
}

/* Price pills */
.price {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.pill {
	background: #fff3f5;
	border-radius: 999px;
	padding: 7px 12px;
	font-weight: 900;
	color: #f26482;
	font-size: 13px;
}

/* Ribbon badge on house card */
.ribbon {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #f66f8d;
	color: #fff;
	border-radius: 999px;
	padding: 7px 13px;
	font-weight: 900;
	font-size: 12px;
	z-index: 1;
}

/* Right sidebar: search box */
.searchbox {
	display: flex;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	overflow: hidden;
}

.searchbox input {
	flex: 1;
	border: 0;
	padding: 13px 14px;
	font-family: inherit;
	font-weight: 700;
	font-size: 14px;
	outline: none;
}

.searchbox button {
	width: 50px;
	border: 0;
	background: #f66f8d;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

/* Tool estimator widget */
.tool {
	background: linear-gradient(135deg, #fff0f4, #fff8e9);
	border-radius: 22px;
	padding: 24px;
}

.tool h3 {
	font-size: 20px;
	font-weight: 900;
	margin: 0 0 8px;
}

.tool p {
	font-size: 14px;
	color: #888;
	margin: 0 0 10px;
}

.tool input {
	width: 100%;
	border: 0;
	border-radius: 13px;
	padding: 13px 14px;
	margin: 6px 0;
	font-family: inherit;
	font-weight: 800;
	font-size: 14px;
	background: #fff;
	outline: none;
	box-sizing: border-box;
}

.tool .btn {
	width: 100%;
	border: 0;
	margin-top: 10px;
	text-align: center;
	cursor: pointer;
	display: block;
}

/* Popular posts list */
.popular .item {
	display: grid;
	grid-template-columns: 28px 64px 1fr;
	gap: 10px;
	align-items: center;
	margin: 14px 0;
	font-weight: 800;
	font-size: 14px;
}

.popular .item img {
	width: 64px;
	height: 52px;
	border-radius: 8px;
	object-fit: cover;
}

.num {
	background: #f66f8d;
	color: #fff;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	font-size: 13px;
	font-weight: 900;
}

/* Side card promo */
.side-card {
	text-align: center;
}

.side-card img {
	max-width: 180px;
	margin: 0 auto 14px;
	display: block;
}

.side-card .btn {
	display: inline-block;
	margin-top: 14px;
}

/* Responsive mau-nha-dep */
@media (max-width: 1200px) {
	.hero-gallery {
		grid-template-columns: 1fr;
	}

	.hero-gallery .stack {
		grid-template-columns: 1fr 1fr;
	}

	.hero-gallery .big {
		min-height: 280px;
	}
}

@media (max-width: 1000px) {
	.feature-cover {
		height: 280px;
	}

	.feature-overlay h2 {
		font-size: 26px;
	}

	.feature-overlay {
		left: 22px;
		bottom: 20px;
	}

	.feature-info {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.chips {
		gap: 8px;
	}

	.chip {
		padding: 10px 14px;
		font-size: 13px;
	}

	.house-grid {
		grid-template-columns: 1fr;
	}

	.hero-gallery {
		padding: 20px;
		gap: 12px;
	}

	.hero-gallery .big {
		min-height: 220px;
	}
}

@media (max-width: 620px) {
	.feature-cover {
		height: 220px;
	}

	.feature-overlay h2 {
		font-size: 20px;
	}

	.feature-overlay p {
		display: none;
	}

	.hero-gallery .stack {
		display: none;
	}
}

/* ============================================================
   ARCHIVE HERO STATS + BUBBLE FIX
   ============================================================ */

.stats {
	display: flex;
	gap: 18px;
	margin-top: 25px;
	flex-wrap: wrap;
}

.stat {
	background: #fff;
	border-radius: 18px;
	padding: 16px 22px;
	font-weight: 900;
	font-size: 20px;
	box-shadow: 0 8px 22px rgba(243, 219, 225, 0.7);
}

.stat small {
	display: block;
	color: #777;
	font-size: 13px;
	font-weight: 700;
	margin-top: 2px;
}

/* ============================================================
   404 PAGE EXTRAS
   ============================================================ */

/* Floating badges inside house-card */
.floating {
	position: absolute;
	background: #fff;
	border-radius: 22px;
	padding: 16px 20px;
	font-weight: 900;
	font-size: 14px;
	box-shadow: 0 12px 32px rgba(223, 203, 208, 0.7);
}

.floating small {
	display: block;
	color: #666;
	font-size: 12px;
	font-weight: 700;
	margin-top: 2px;
}

.f1 {
	right: -22px;
	top: 32px;
}

.f2 {
	left: -24px;
	bottom: 72px;
}

/* Section modifier: styled background card */
.section.soft {
	background: #fff8fa;
	border-radius: 28px;
	padding: 34px;
	border: 1px solid #f1e8eb;
}

/* Quick grid 4-col */
.quick-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.quick-card {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 22px;
	padding: 26px;
	box-shadow: 0 8px 22px rgba(247, 240, 242, 0.9);
}

.quick-card > i {
	font-style: normal;
	font-size: 36px;
	display: block;
}

.quick-card h3 {
	font-size: 20px;
	font-weight: 900;
	margin: 14px 0 8px;
}

.quick-card p {
	color: #666;
	line-height: 1.6;
	font-size: 15px;
	margin: 0;
}

.quick-card a {
	display: inline-block;
	margin-top: 14px;
	color: #f26482;
	font-weight: 900;
	font-size: 14px;
}

.quick-card a:hover {
	text-decoration: underline;
}

/* Suggested posts 3-col grid (404 page) */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.posts-grid .post img {
	height: 190px;
}

/* Responsive 404 extras */
@media (max-width: 1000px) {
	.quick-grid {
		grid-template-columns: 1fr 1fr;
	}

	.posts-grid {
		grid-template-columns: 1fr 1fr;
	}

	.f1,
	.f2 {
		display: none;
	}

	.stats {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 620px) {
	.quick-grid,
	.posts-grid {
		grid-template-columns: 1fr;
	}

	.stat {
		padding: 12px 16px;
		font-size: 18px;
	}
}

/* ============================================================
   TRANG PHÁP LÝ RIÊNG (bao-mat / dieu-khoan / cookies / disclaimer)
   ============================================================ */

/* Hero right column: center the legal-box */
.hero-card {
	padding: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Disclaimer hero: decorative pink circle top-right */
.hero--disclaimer {
	position: relative;
	overflow: hidden;
}

.hero--disclaimer::after {
	content: "";
	position: absolute;
	right: -70px;
	top: -70px;
	width: 220px;
	height: 220px;
	background: #ffdce6;
	border-radius: 50%;
	opacity: 0.8;
	pointer-events: none;
}

.hero--disclaimer .hero-text,
.hero--disclaimer .hero-card {
	position: relative;
	z-index: 2;
}

/* White article card */
.legal-body {
	background: #fff;
	border: 1px solid #f1e8eb;
	border-radius: 28px;
	padding: 42px;
	box-shadow: 0 10px 30px rgba(247, 240, 242, 0.8);
	min-width: 0;
}

.legal-body h2 {
	font-size: 30px;
	margin: 36px 0 14px;
	font-weight: 900;
}

.legal-body h2:first-of-type {
	margin-top: 0;
}

.legal-body p,
.legal-body li {
	font-size: 17px;
	line-height: 1.85;
	color: #4f4f58;
}

.legal-body ul {
	padding-left: 24px;
	margin: 8px 0 20px;
}

.legal-body li {
	margin-bottom: 10px;
}

/* Sidebar gradient note box (bao-mat: note, dieu-khoan/cookies: notice, disclaimer: side-note) */
.legal-side-note {
	background: linear-gradient(135deg, #fff0f4, #fff8e9);
	border-radius: 22px;
	padding: 22px;
	margin-bottom: 20px;
}

.legal-side-note b {
	display: block;
	font-size: 17px;
	font-weight: 900;
	margin-bottom: 8px;
}

.legal-side-note p {
	color: #666;
	line-height: 1.65;
	font-size: 14px;
	margin: 0;
}

/* Mini contact panel (disclaimer sidebar) */
.legal-mini-contact {
	margin-bottom: 0;
}

.legal-mini-contact h3 {
	font-size: 20px;
	font-weight: 900;
	margin: 0 0 10px;
}

.legal-mini-contact p {
	font-size: 14px;
	color: #666;
	line-height: 1.65;
	font-weight: 700;
	margin: 0 0 14px;
}

/* --- Info grid (bảo mật) --- */
.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 22px 0;
}

.info-card {
	background: #fff8fa;
	border: 1px solid #f1e8eb;
	border-radius: 18px;
	padding: 20px;
}

.info-card b {
	display: block;
	font-size: 17px;
	font-weight: 900;
	margin-bottom: 6px;
}

.info-card span {
	color: #666;
	line-height: 1.65;
	font-size: 15px;
}

/* --- Callout box (all 4 pages) --- */
.callout {
	background: #fff8fa;
	border-left: 6px solid #f66f8d;
	border-radius: 18px;
	padding: 22px 24px;
	margin: 28px 0;
}

.callout p {
	margin: 0;
	font-size: 17px;
	line-height: 1.75;
	color: #4f4f58;
}

.callout--danger {
	background: #fff4e8;
	border-left-color: #f59e0b;
}

.callout--safe {
	background: #f2fff6;
	border-left-color: #22c55e;
}

/* --- Summary grid (điều khoản) --- */
.summary-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
}

.summary {
	background: #fff8fa;
	border: 1px solid #f1e8eb;
	border-radius: 18px;
	padding: 20px;
}

.summary i {
	font-style: normal;
	font-size: 28px;
	display: block;
}

.summary b {
	display: block;
	font-size: 17px;
	font-weight: 900;
	margin: 8px 0 6px;
}

.summary span {
	color: #666;
	line-height: 1.65;
	font-size: 14px;
}

/* --- Cookie types 2x2 grid (cookies) --- */
.cookie-types {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin: 24px 0;
}

.type-card {
	background: #fff8fa;
	border: 1px solid #f1e8eb;
	border-radius: 20px;
	padding: 22px;
}

.type-card i {
	font-style: normal;
	font-size: 30px;
	display: block;
}

.type-card b {
	display: block;
	font-size: 19px;
	font-weight: 900;
	margin: 10px 0 8px;
}

.type-card span {
	color: #666;
	line-height: 1.65;
	font-size: 14px;
}

/* --- Cookie settings box (cookies) --- */
.setting-box {
	background: linear-gradient(135deg, #fff8fa, #fff9ed);
	border: 1px solid #f1e8eb;
	border-radius: 24px;
	padding: 26px;
	margin: 28px 0;
}

.setting-box h2 {
	margin-top: 0 !important;
}

.setting-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #fff;
	border-radius: 18px;
	padding: 18px 20px;
	margin: 12px 0;
}

.setting-row > div:first-child b {
	display: block;
	font-size: 17px;
	font-weight: 900;
}

.setting-row > div:first-child span {
	display: block;
	color: #666;
	font-size: 14px;
	margin-top: 4px;
}

.toggle {
	width: 62px;
	height: 34px;
	background: #ffd3dc;
	border-radius: 999px;
	position: relative;
	flex: 0 0 auto;
}

.toggle::after {
	content: "";
	width: 26px;
	height: 26px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 4px;
	left: 4px;
	box-shadow: 0 4px 10px rgba(224, 184, 194, 0.7);
	transition: left 0.2s;
}

.toggle.on {
	background: #f66f8d;
}

.toggle.on::after {
	left: 32px;
}

/* --- Quick warning banner (disclaimer) --- */
.quick-warning {
	margin-bottom: 34px;
	background: linear-gradient(135deg, #fff0f4, #fff8e9);
	border: 1px solid #f2dfe3;
	border-radius: 28px;
	padding: 28px;
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 22px;
	align-items: center;
}

.quick-warning > i {
	width: 70px;
	height: 70px;
	border-radius: 24px;
	background: #f66f8d;
	color: #fff;
	display: grid;
	place-items: center;
	font-style: normal;
	font-size: 34px;
	font-weight: 900;
}

.quick-warning h2 {
	font-size: 26px;
	font-weight: 900;
	margin: 0 0 8px;
}

.quick-warning p {
	margin: 0;
	color: #666;
	line-height: 1.65;
	font-size: 17px;
}

.stamp {
	background: #fff;
	border-radius: 999px;
	padding: 12px 18px;
	color: #f26482;
	font-weight: 900;
	font-size: 13px;
	white-space: nowrap;
}

/* --- Scope grid 3-col (disclaimer) --- */
.scope-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
}

.scope-card {
	background: #fff8fa;
	border: 1px solid #f1e8eb;
	border-radius: 20px;
	padding: 22px;
}

.scope-card > i {
	font-style: normal;
	font-size: 30px;
	display: block;
}

.scope-card b {
	display: block;
	font-size: 18px;
	font-weight: 900;
	margin: 10px 0 8px;
}

.scope-card span {
	color: #666;
	line-height: 1.65;
	font-size: 14px;
}

/* --- Comparison 2-col (disclaimer) --- */
.comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin: 26px 0;
}

.compare {
	border-radius: 22px;
	padding: 24px;
	border: 1px solid #f1e8eb;
}

.compare h3 {
	font-size: 21px;
	font-weight: 900;
	margin: 0 0 14px;
}

.compare ul {
	padding-left: 20px;
	margin: 0;
}

.compare li {
	font-size: 16px;
	line-height: 1.75;
	color: #4f4f58;
	margin-bottom: 8px;
}

.compare--yes {
	background: #f2fff6;
}

.compare--no {
	background: #fff3f5;
}

/* ---- Responsive: legal pages ---- */
@media (max-width: 1000px) {
	.legal-body {
		padding: 28px;
	}

	.summary-grid,
	.scope-grid {
		grid-template-columns: 1fr 1fr;
	}

	.quick-warning {
		grid-template-columns: 1fr;
		align-items: flex-start;
	}

	.quick-warning > i {
		width: 54px;
		height: 54px;
		font-size: 26px;
	}

	.stamp {
		white-space: normal;
	}

	.comparison {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.legal-body {
		padding: 20px;
	}

	.info-grid,
	.cookie-types,
	.summary-grid,
	.scope-grid {
		grid-template-columns: 1fr;
	}

	.setting-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.legal-body h2 {
		font-size: 24px;
	}
}

/* ── Contact notices ───────────────────────────────────────── */
.contact-notice {
	padding: 16px 20px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 24px;
}

.contact-notice--success {
	background: #e8f8ed;
	border: 1.5px solid #4caf50;
	color: #1b5e20;
}

.contact-notice--error {
	background: #fff3f3;
	border: 1.5px solid #f44336;
	color: #b71c1c;
}

/* ── Comments ──────────────────────────────────────────────── */
.comments-wrap {
	max-width: 860px;
	margin: 56px auto 0;
	padding: 0 20px 60px;
}

.comments-title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 28px;
	color: #24242b;
}

.no-comments {
	color: #888;
	font-size: 15px;
	margin-bottom: 32px;
}

/* Comment list */
.comment-list,
.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .children {
	padding-left: 48px;
	border-left: 3px solid #f5e6d3;
	margin-top: 16px;
}

.comment-item {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
	border-bottom: none;
}

.comment-avatar img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.comment-body {
	flex: 1;
	min-width: 0;
}

.comment-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.comment-author {
	font-weight: 700;
	font-size: 15px;
	color: #24242b;
}

.comment-date {
	font-size: 13px;
	color: #999;
}

.comment-pending {
	font-size: 12px;
	background: #fff3cd;
	color: #856404;
	border-radius: 6px;
	padding: 2px 8px;
}

.comment-text {
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.comment-text p {
	margin: 0 0 8px;
}

.comment-text p:last-child {
	margin-bottom: 0;
}

.comment-reply {
	margin-top: 10px;
}

.comment-reply a,
a.comment-reply-link {
	font-size: 13px;
	font-weight: 700;
	color: #e07b39;
	text-decoration: none;
	transition: color 0.2s;
}

.comment-reply a:hover,
a.comment-reply-link:hover {
	color: #c0612a;
}

/* Comments pagination */
.comments-pagination {
	margin-top: 32px;
	display: flex;
	gap: 8px;
}

.comments-pagination a,
.comments-pagination span {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	border: 1.5px solid #e8e8e8;
	color: #24242b;
	transition: background 0.2s;
}

.comments-pagination a:hover {
	background: #f5e6d3;
	border-color: #e07b39;
	color: #e07b39;
}

/* Comment form */
.comment-form {
	margin-top: 40px;
	padding-top: 36px;
	border-top: 2px solid #f0f0f0;
}

.comment-form h3,
.comment-form #reply-title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 20px;
}

.comment-fields {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

.comment-field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #555;
	margin-bottom: 6px;
}

.comment-field .required {
	color: #e07b39;
}

.comment-field input,
.comment-field textarea {
	width: 100%;
	border: 1.5px solid #e0e0e0;
	border-radius: 8px;
	padding: 10px 14px;
	font-family: inherit;
	font-size: 15px;
	color: #24242b;
	background: #fafafa;
	transition: border-color 0.2s;
}

.comment-field input:focus,
.comment-field textarea:focus {
	outline: none;
	border-color: #e07b39;
	background: #fff;
}

.comment-field--full {
	grid-column: 1 / -1;
}

.comment-form .form-submit {
	margin-top: 8px;
}

.comment-form .btn {
	display: inline-block;
}

/* Cancel reply link */
#cancel-comment-reply-link {
	font-size: 13px;
	color: #999;
	margin-left: 12px;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.comment-fields {
		grid-template-columns: 1fr;
	}

	.comment-list .children {
		padding-left: 24px;
	}

	.comments-wrap {
		padding: 0 16px 40px;
	}
}

/* ── Author page ───────────────────────────────────────────── */
.author-hero .hero-text .author-bio {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	max-width: 560px;
	margin: 12px 0 20px;
}

.author-card {
	background: #fff;
	border-radius: 20px;
	padding: 36px 28px;
	text-align: center;
	box-shadow: 0 4px 24px rgba(0,0,0,.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.author-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #f5e6d3;
}

.author-card h2 {
	font-size: 20px;
	font-weight: 800;
	margin: 0;
	color: #24242b;
}

.author-card .muted {
	font-size: 14px;
	color: #e07b39;
	font-weight: 700;
	margin: 0;
}
