/* ============================================================
   Site Home Guide - bo khung giao dien
   Thu tu: bien -> nen tang -> dau trang -> the bai -> dai noi dung
           -> dau trang muc -> cot ben -> chan trang -> man hinh nho
   ============================================================ */

/* --- 1. Bien --------------------------------------------- */
:root {
	--ink:       #1f2320;
	--ink-2:     #4a524c;
	--muted:     #7b837c;
	--rule:      #e4e0d8;
	--rule-soft: #efece5;
	--paper:     #ffffff;
	--paper-2:   #faf8f4;
	--paper-3:   #f2eee6;

	--accent:      #2f6b4f;
	--accent-dark: #24543e;
	--accent-tint: #eaf2ed;

	--serif: "Lora", Georgia, "Times New Roman", serif;
	--sans:  "Karla", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--wrap:   1180px;
	--narrow: 720px;
	--wide:   960px;
	--gut:    22px;

	--r:    4px;
	--r-lg: 10px;
	--shadow: 0 1px 2px rgba(31, 35, 32, .04), 0 10px 30px -18px rgba(31, 35, 32, .28);
}

/* --- 2. Nen tang ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.22; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }

.hg-wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gut);
}
.hg-wrap--narrow { max-width: calc(var(--narrow) + var(--gut) * 2); }
.hg-wrap--wide   { max-width: calc(var(--wide)   + var(--gut) * 2); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; margin: -1px; padding: 0;
	overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

.hg-skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--accent); color: #fff;
	padding: 12px 20px; font-size: 14px; font-weight: 600;
}
.hg-skip:focus { left: 0; }

:where(a, button, input, [tabindex]):focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

/* --- 3. Dau trang ---------------------------------------- */
.hg-head__top { background: var(--paper); }
.hg-head__inner {
	display: grid; grid-template-columns: 1fr auto 1fr;
	align-items: center; gap: 14px;
	padding-block: 18px 14px;
}

.hg-logo {
	grid-column: 2;
	display: inline-flex; align-items: center; gap: 9px;
	text-decoration: none; justify-self: center;
}
.hg-logo__text {
	font-family: var(--serif); font-weight: 600;
	font-size: clamp(22px, 3.6vw, 34px);
	letter-spacing: -.01em; color: var(--ink);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.hg-head__tools { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.hg-iconbtn {
	display: grid; place-items: center;
	width: 38px; height: 38px; border-radius: 999px;
	background: none; border: 1px solid var(--rule); color: var(--ink); cursor: pointer;
}
.hg-iconbtn:hover { border-color: var(--accent); color: var(--accent); }
.hg-iconbtn svg {
	width: 17px; height: 17px;
	fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round;
}
.hg-cta {
	display: inline-block; border-radius: 999px;
	background: var(--accent); color: #fff;
	padding: 10px 20px;
	font-size: 13px; font-weight: 700; letter-spacing: .03em; text-decoration: none;
}
.hg-cta:hover { background: var(--accent-dark); }

.hg-burger {
	grid-column: 1; justify-self: start; display: none;
	width: 38px; height: 38px; background: none; border: 0; cursor: pointer; padding: 0;
}
.hg-burger span[aria-hidden] { display: grid; gap: 4px; width: 20px; margin-inline: auto; }
.hg-burger i { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* Chi thanh chuyen muc dinh lai khi cuon - mot dai mong, khong che noi dung,
   va khong can JS moi chay dung. */
.hg-nav {
	position: sticky; top: 0; z-index: 90;
	background: var(--paper);
	border-block: 1px solid var(--rule);
}
.hg-nav__inner { overflow-x: auto; scrollbar-width: none; }
.hg-nav__inner::-webkit-scrollbar { display: none; }
.hg-nav__list {
	display: flex; gap: 8px; list-style: none;
	width: max-content; margin-inline: auto;
	padding-block: 8px; align-items: center; white-space: nowrap;
}
.hg-nav__list a {
	display: block; padding: 7px 14px; border-radius: 999px;
	font-size: 13px; font-weight: 600; letter-spacing: .06em;
	text-transform: uppercase; text-decoration: none; color: var(--ink-2);
}
.hg-nav__list a:hover { background: var(--paper-3); color: var(--ink); }
.hg-nav__list .current-menu-item a,
.hg-nav__list .current-cat a { background: var(--accent); color: #fff; }

.hg-searchbar { background: var(--paper-2); border-bottom: 1px solid var(--rule); padding: 16px 0; }

.hg-searchform { display: flex; gap: 8px; max-width: 560px; }
.hg-searchform input {
	flex: 1; min-width: 0;
	border: 1px solid var(--rule); border-radius: 999px;
	padding: 12px 18px; font: inherit; font-size: 15px;
	background: #fff; color: var(--ink);
}
.hg-searchform input:focus { outline: none; border-color: var(--accent); }
.hg-searchform button {
	border: 0; border-radius: 999px; cursor: pointer;
	background: var(--accent); color: #fff;
	padding: 12px 24px; font-size: 14px; font-weight: 700;
}
.hg-searchform button:hover { background: var(--accent-dark); }

/* ngan keo */
.hg-drawer { position: fixed; inset: 0; z-index: 120; background: rgba(31, 35, 32, .45); }
.hg-drawer[hidden] { display: none; }
.hg-drawer__panel {
	width: min(340px, 86vw); height: 100%;
	background: var(--paper); padding: 18px var(--gut) 40px;
	overflow-y: auto; animation: hg-slide .22s ease-out;
}
@keyframes hg-slide { from { transform: translateX(-100%); } }
.hg-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hg-drawer__title {
	font-family: var(--sans); font-size: 12px; font-weight: 700;
	letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.hg-drawer__close { background: none; border: 0; cursor: pointer; font-size: 28px; line-height: 1; padding: 0 4px; }
.hg-drawer__list { list-style: none; margin-top: 16px; }
.hg-drawer__list li { border-bottom: 1px solid var(--rule-soft); }
.hg-drawer__list a {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 12px 0 12px 12px; text-decoration: none;
	font-size: 15px; font-weight: 600;
	border-left: 3px solid var(--accent);
}
.hg-drawer__list em { font-style: normal; font-size: 12px; color: var(--muted); }

/* --- 4. Anh theo ty le ----------------------------------- */
/* Anh san pham Amazon chup tren nen trang va khong cung ty le nen phai
   "contain" - keo theo do nen khung buoc phai trang. */
.hg-media {
	display: block; position: relative; overflow: hidden;
	background: #fff;
	border: 1px solid var(--rule-soft);
	border-radius: var(--r-lg);
}
.hg-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.hg-media--wide   { aspect-ratio: 4 / 3; }
.hg-media--square { aspect-ratio: 1 / 1; }
.hg-card__media:hover .hg-media img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .hg-media img { transition: none; } }

/* --- 5. Manh nho ----------------------------------------- */
.hg-kicker {
	display: inline-block; margin-bottom: 8px;
	font-family: var(--sans); font-size: 12px; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
	color: var(--accent);
}
.hg-kicker:hover { text-decoration: underline; text-underline-offset: 3px; }

.hg-stars { display: inline-flex; align-items: center; gap: 7px; }
.hg-stars__track {
	position: relative; display: inline-block;
	width: 72px; height: 12px; background: var(--rule);
	-webkit-mask: repeating-linear-gradient(90deg, #000 0 11px, transparent 11px 15px);
	        mask: repeating-linear-gradient(90deg, #000 0 11px, transparent 11px 15px);
}
.hg-stars__on { position: absolute; inset: 0 auto 0 0; background: #d79a2b; }
.hg-stars b { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--ink-2); }

.hg-price { font-family: var(--sans); font-weight: 700; font-size: 15px; color: var(--ink); }

.hg-byline { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.hg-byline__text { display: flex; flex-direction: column; min-width: 0; }
.hg-byline__by { font-family: var(--sans); font-size: 13px; color: var(--ink-2); }
.hg-byline__by a { font-weight: 700; text-decoration: none; }
.hg-byline__by a:hover { color: var(--accent); }
.hg-byline__meta { font-family: var(--sans); font-size: 12.5px; color: var(--muted); }

.hg-avatar {
	display: grid; place-items: center; flex: none;
	width: 38px; height: 38px; border-radius: 999px;
	color: #fff; text-decoration: none;
	font-family: var(--sans); font-size: 13px; font-weight: 700;
}
.hg-avatar--lg { width: 66px; height: 66px; font-size: 21px; }
.hg-avatar--xl { width: 96px; height: 96px; font-size: 30px; }

/* --- 6. The bai ------------------------------------------ */
.hg-card { display: flex; flex-direction: column; min-width: 0; }
.hg-card__media { display: block; text-decoration: none; }
.hg-card__body { padding-top: 14px; }
.hg-card__title { letter-spacing: -.005em; }
.hg-card__title a {
	text-decoration: none;
	background-image: linear-gradient(var(--accent), var(--accent));
	background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%;
	transition: background-size .25s ease;
}
.hg-card__title a:hover { background-size: 100% 1px; color: var(--accent); }
.hg-card__dek { margin: 10px 0 0; color: var(--ink-2); font-size: 15px; }
.hg-card__facts { margin: 10px 0 0; }

.hg-card--hero { flex-direction: row; gap: 40px; align-items: center; }
.hg-card--hero .hg-card__media { flex: 1 1 58%; min-width: 0; }
.hg-card--hero .hg-media { aspect-ratio: 3 / 2; }
.hg-card--hero .hg-card__body { flex: 1 1 42%; padding-top: 0; }
.hg-card--hero .hg-card__title { font-size: clamp(28px, 3.8vw, 44px); }
.hg-card--hero .hg-card__dek { font-size: 17px; }

.hg-card--card .hg-card__title { font-size: 20px; }
.hg-card--wide .hg-card__title { font-size: clamp(22px, 2.4vw, 28px); }

.hg-card--row { flex-direction: row; gap: 15px; align-items: center; }
.hg-card--row .hg-card__media { flex: 0 0 88px; }
.hg-card--row .hg-card__body { padding-top: 0; }
.hg-card--row .hg-card__title { font-size: 16px; line-height: 1.32; }
.hg-card--row .hg-kicker { font-size: 11px; margin-bottom: 4px; }

/* --- 7. Dai noi dung ------------------------------------- */
.hg-rail { padding-block: 52px; }
.hg-rail--warm, .hg-rail--brands, .hg-rail--explore { background: var(--paper-2); }

.hg-rail__head {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.hg-rail__title {
	font-size: clamp(23px, 2.6vw, 31px);
	position: relative; padding-bottom: 10px;
}
.hg-rail__title::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 52px; height: 3px; border-radius: 3px; background: var(--accent);
}
.hg-rail__more {
	font-family: var(--sans); font-size: 13px; font-weight: 700;
	text-decoration: none; color: var(--accent); white-space: nowrap;
	border-bottom: 1px solid currentColor; padding-bottom: 1px;
}

.hg-hero { padding-block: 40px 14px; }
.hg-rail--fresh { padding-top: 34px; }

.hg-split { display: grid; grid-template-columns: 1.35fr 1fr; gap: 40px; align-items: start; }
.hg-split__rest { display: grid; gap: 18px; }
.hg-split__rest .hg-card { padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.hg-split__rest .hg-card:last-child { padding-bottom: 0; border-bottom: 0; }

.hg-grid { display: grid; gap: 38px 28px; }
.hg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hg-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* o chuyen muc, anh tron */
.hg-tiles { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; }
.hg-tile {
	display: grid; justify-items: center; gap: 9px;
	text-align: center; text-decoration: none;
}
.hg-tile__img {
	display: block; width: 92px; height: 92px; border-radius: 999px;
	overflow: hidden; background: #fff;
	border: 2px solid var(--rule-soft);
	transition: border-color .2s ease;
}
.hg-tile__img img { width: 100%; height: 100%; object-fit: contain; padding: 9px; }
.hg-tile:hover .hg-tile__img { border-color: var(--accent); }
.hg-tile__name { font-family: var(--sans); font-size: 14px; font-weight: 700; line-height: 1.25; }
.hg-tile:hover .hg-tile__name { color: var(--accent); }
.hg-tile__count { font-family: var(--sans); font-size: 12px; color: var(--muted); }

.hg-tiles--plain { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.hg-tile--plain {
	justify-items: start; text-align: left;
	background: #fff; border: 1px solid var(--rule);
	border-left: 4px solid var(--accent);
	border-radius: var(--r); padding: 14px 16px; gap: 3px;
}
.hg-tile--plain:hover { border-color: var(--accent); }

/* thuong hieu */
.hg-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hg-chips a {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 7px 15px; border-radius: 999px;
	background: #fff; border: 1px solid var(--rule);
	font-family: var(--sans); font-size: 13.5px; font-weight: 600;
	text-decoration: none; color: var(--ink-2);
}
.hg-chips a:hover { border-color: var(--accent); color: var(--accent); }
.hg-chips em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.hg-chips--big a { padding: 10px 19px; font-size: 15px; }
.hg-chips--onwarm a { background: #fff; }

/* nguoi viet */
.hg-team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.hg-person { display: grid; justify-items: center; gap: 8px; text-align: center; text-decoration: none; }
.hg-person__name { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.hg-person:hover .hg-person__name { color: var(--accent); }
.hg-person__count { font-family: var(--sans); font-size: 12.5px; color: var(--muted); }

/* --- 8. Khoi tin cay + ban tin --------------------------- */
.hg-trust { background: var(--accent-tint); padding-block: 48px; }
.hg-trust__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.hg-trust__copy h2 { font-size: clamp(23px, 2.6vw, 31px); margin-bottom: 12px; }
.hg-trust__copy p { margin: 0; color: var(--ink-2); }
.hg-trust__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 0; }
.hg-trust__stats div {
	background: #fff; border-radius: var(--r-lg); padding: 18px 20px;
}
.hg-trust__stats dt {
	font-family: var(--sans); font-size: 12px; font-weight: 700;
	letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.hg-trust__stats dd {
	margin: 4px 0 0; font-family: var(--serif);
	font-size: 32px; font-weight: 600; color: var(--accent);
}

.hg-news { background: var(--accent); color: #fff; padding-block: 52px; text-align: center; }
.hg-news__kicker {
	margin: 0 0 8px;
	font-family: var(--sans); font-size: 12px; font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .75);
}
.hg-news__title { font-size: clamp(25px, 3.2vw, 36px); }
.hg-news__sub { margin: 12px auto 0; max-width: 54ch; color: rgba(255, 255, 255, .86); }
.hg-news__form { display: flex; gap: 8px; max-width: 480px; margin: 22px auto 0; }
.hg-news__form input {
	flex: 1; min-width: 0; border: 0; border-radius: 999px;
	padding: 13px 20px; font: inherit; font-size: 15px;
}
.hg-news__form button {
	border: 0; border-radius: 999px; cursor: pointer;
	background: var(--ink); color: #fff;
	padding: 13px 26px; font-size: 14px; font-weight: 700;
}
.hg-news__form button:hover { background: #000; }

/* --- 9. Dau cac trang muc -------------------------------- */
.hg-crumbs { padding-block: 20px 0; }
.hg-crumbs ol { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.hg-crumbs li + li::before { content: "/"; margin-right: 7px; color: var(--rule); }
.hg-crumbs a, .hg-crumbs span { font-family: var(--sans); font-size: 12.5px; color: var(--muted); text-decoration: none; }
.hg-crumbs a:hover { color: var(--accent); }

.hg-termhead {
	background: var(--paper-2);
	border-bottom: 1px solid var(--rule);
	padding-bottom: 38px;
}
.hg-termhead--plain { background: var(--paper); }
.hg-termhead__kicker {
	margin: 18px 0 8px;
	font-family: var(--sans); font-size: 12px; font-weight: 700;
	letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
}
.hg-termhead__title { font-size: clamp(32px, 5vw, 52px); }
.hg-termhead__desc { margin-top: 14px; max-width: 62ch; color: var(--ink-2); }
.hg-termhead__count {
	margin: 14px 0 0;
	font-family: var(--sans); font-size: 13px; font-weight: 600;
	letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.hg-termhead__form { margin-top: 20px; }

.hg-brandhead, .hg-authorhead {
	background: var(--paper-2);
	border-bottom: 1px solid var(--rule);
	padding-bottom: 34px;
}
.hg-brandhead__badge {
	display: grid; place-items: center;
	width: 66px; height: 66px; border-radius: var(--r-lg);
	margin-top: 18px; color: #fff;
	font-family: var(--sans); font-size: 23px; font-weight: 700;
}
.hg-brandhead__stats { display: flex; gap: 32px; margin: 20px 0 0; }
.hg-brandhead__stats dt {
	font-family: var(--sans); font-size: 11.5px; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.hg-brandhead__stats dd {
	margin: 2px 0 0; font-family: var(--serif);
	font-size: 28px; font-weight: 600; color: var(--accent);
}
.hg-brandhead .hg-chips, .hg-authorhead .hg-chips { margin-top: 20px; }
.hg-authorhead .hg-avatar--xl { margin-top: 18px; }

/* --- 10. Bo cuc ------------------------------------------ */
.hg-layout {
	display: grid; grid-template-columns: minmax(0, 1fr) 290px;
	gap: 56px; padding-block: 44px; align-items: start;
}
.hg-layout__main { min-width: 0; }
.hg-termlead { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--rule); }
.hg-empty { font-size: 18px; color: var(--muted); padding: 28px 0; }

/* --- 11. Cot ben ----------------------------------------- */
.hg-side { display: grid; gap: 34px; min-width: 0; }
.hg-side__box--sticky { position: sticky; top: 76px; }
.hg-side__title {
	font-size: 20px; padding-bottom: 10px; margin-bottom: 14px;
	border-bottom: 2px solid var(--accent);
}
.hg-side__cats { list-style: none; }
.hg-side__cats li { border-bottom: 1px solid var(--rule-soft); }
.hg-side__cats a {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 10px 0 10px 12px; border-left: 3px solid var(--accent);
	font-family: var(--sans); font-size: 14px; font-weight: 600;
	text-decoration: none; color: var(--ink-2);
}
.hg-side__cats a:hover { background: var(--paper-2); color: var(--ink); }
.hg-side__cats em { font-style: normal; font-size: 12px; color: var(--muted); }
.hg-side__picks { display: grid; gap: 16px; }

/* --- 12. Phan trang -------------------------------------- */
.hg-pager { margin-top: 44px; }
.hg-pager ul { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; justify-content: center; }
.hg-pager a, .hg-pager span {
	display: grid; place-items: center;
	min-width: 42px; height: 42px; padding-inline: 16px; border-radius: 999px;
	border: 1px solid var(--rule);
	font-family: var(--sans); font-size: 14px; font-weight: 600;
	text-decoration: none; color: var(--ink-2);
}
.hg-pager a:hover { border-color: var(--accent); color: var(--accent); }
.hg-pager .current { background: var(--accent); border-color: var(--accent); color: #fff; }
.hg-pager .dots { border-color: transparent; }

/* --- 13. Trang 404 --------------------------------------- */
.hg-404 { padding-block: 44px 56px; }
.hg-404 .hg-wrap--narrow { text-align: center; }
.hg-404__leaf { width: 46px; height: 46px; fill: var(--accent); opacity: .35; margin-inline: auto; }
.hg-404__code {
	margin: 6px 0 0; font-family: var(--serif); font-weight: 600;
	font-size: clamp(56px, 12vw, 96px); line-height: 1; color: var(--paper-3);
}
.hg-404__title { font-size: clamp(27px, 4.4vw, 40px); margin-top: 4px; }
.hg-404__lead { margin: 14px auto 0; max-width: 52ch; color: var(--ink-2); }
.hg-404__search { margin-top: 24px; display: flex; justify-content: center; }
.hg-404__search .hg-searchform { width: min(520px, 100%); }
.hg-404 .hg-tiles--plain { margin-top: 34px; }

/* --- 14. Chan trang -------------------------------------- */
.hg-foot {
	background: var(--paper-2);
	border-top: 1px solid var(--rule);
	padding-block: 48px 30px;
	font-family: var(--sans); font-size: 14px;
}
.hg-foot a { color: var(--ink-2); text-decoration: none; }
.hg-foot a:hover { color: var(--accent); }
.hg-foot__top {
	display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
	padding-bottom: 30px; border-bottom: 1px solid var(--rule);
}
.hg-logo--foot .hg-logo__text { font-size: clamp(20px, 2.4vw, 27px); }
.hg-foot__blurb { margin: 0; max-width: 64ch; color: var(--muted); line-height: 1.6; }
.hg-foot__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-block: 30px; }
.hg-foot__col h2 {
	margin-bottom: 13px; font-family: var(--sans);
	font-size: 12px; font-weight: 700;
	letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.hg-foot__col ul { list-style: none; display: grid; gap: 9px; }
.hg-foot__cats { grid-template-columns: repeat(2, 1fr); gap: 9px 20px; }
.hg-foot__legal { padding-top: 24px; border-top: 1px solid var(--rule); display: grid; gap: 8px; }
.hg-foot__legal p { margin: 0; font-size: 13px; color: var(--muted); }
.hg-foot__disclosure { font-size: 12px; max-width: 80ch; }

/* --- 15. Man hinh nho ------------------------------------ */
@media (max-width: 1080px) {
	.hg-tiles { grid-template-columns: repeat(4, 1fr); }
	.hg-team { grid-template-columns: repeat(3, 1fr); }
	.hg-layout { grid-template-columns: 1fr; gap: 44px; }
	.hg-side { grid-template-columns: repeat(2, 1fr); align-items: start; }
	.hg-side__box--sticky { position: static; }
	.hg-foot__cols { grid-template-columns: 1fr 1fr; }
	.hg-trust__inner { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 900px) {
	.hg-burger { display: block; }
	.hg-card--hero { flex-direction: column; gap: 20px; }
	.hg-card--hero .hg-card__body { padding-top: 0; }
	.hg-split { grid-template-columns: 1fr; gap: 28px; }
	.hg-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.hg-rail { padding-block: 38px; }
	.hg-grid--2, .hg-grid--3 { grid-template-columns: 1fr; }
	.hg-grid { gap: 30px 18px; }
	.hg-tiles { grid-template-columns: repeat(3, 1fr); gap: 14px; }
	.hg-tile__img { width: 72px; height: 72px; }
	.hg-team { grid-template-columns: repeat(2, 1fr); }
	.hg-side { grid-template-columns: 1fr; }
	.hg-cta { display: none; }
	.hg-head__inner { padding-block: 12px; }
	.hg-logo__text { font-size: 20px; }
	.hg-trust__stats { grid-template-columns: 1fr; }
	.hg-brandhead__stats { gap: 22px; }
	.hg-foot__top { grid-template-columns: 1fr; gap: 16px; }
	.hg-foot__cols { grid-template-columns: 1fr; gap: 26px; }
}


/* === de mau chu huy hieu plugin === */
/*
 * Huy hieu cua plugin dat chu cung mau voi nen (nen la chinh mau do pha 10%
 * do duc), nen tuong phan chi 2.5-4.1 - duoi chuan AA 4.5, rieng nhan
 * 'Prime' gan nhu khong doc duoc.
 *
 * Chi doi MAU CHU, giu nguyen nen cua plugin. Dung hai lop cung ten de co do
 * uu tien cao hon luat goc ma khong phai dung !important.
 *
 * Khong sua tep CSS cua plugin: ban cap nhat sau nay se ghi de len.
 */
.acms-badge.acms-badge--prime   { color: #01607f; }
.acms-badge.acms-badge--danger  { color: #a81b1b; }
.acms-badge.acms-badge--success { color: #10693a; }
.acms-badge.acms-badge--warning { color: #8a5a06; }
.acms-badge.acms-badge--info    { color: #0b5e86; }


/* === mau chu phu cua plugin === */
/*
 * Plugin lay mau chu phu tu `var(--color-text-muted, #9ca3af)`. Khong theme
 * nao dat bien do nen no roi ve #9ca3af - tren nen trang chi duoc 2.54, duoi
 * chuan. Do bang Chrome that: nhan "/10", "ACMS Score" va dong "Updated: ..."
 * deu dinh.
 *
 * #6b7280 duoc 4.83, va chinh plugin cung dung mau nay o cho khac.
 */
:root { --color-text-muted: #6b7280; }

/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* Day lien ket trang tinh o chan trang.                                */
/* Mau chu ke thua cua chan trang: chu chan trang da qua vong do tuong  */
/* phan, con mau nhan cua site thi chua.                                */
/* ------------------------------------------------------------------ */
.hg-foot-pages {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	font-size: 13px;
	line-height: 1.6;
}
.hg-foot-pages a {
	color: inherit;
	text-decoration: none;
	opacity: .82;
}
.hg-foot-pages a:hover,
.hg-foot-pages a:focus {
	opacity: 1;
	text-decoration: underline;
}

/* --- Logo thuong hieu ------------------------------------------------ */
/* Dau hieu do bang em nen no lon nho theo chinh co chu cua ten site. */
.hg-lg { white-space: nowrap; }
.hg-lg__mark { display: inline-block; width: 1em; height: 1em; vertical-align: -0.14em; margin-right: 0.36em; }
.hg-lg__tld { font-weight: 400; opacity: .5; }

/* --- Lien ket chan trang --------------------------------------------- */
/* Viet .hg-mang .hg-mang__h chu khong phai .hg-mang__h: luat cua theme
   kieu .xx-foot__disclosure p co do uu tien (0,1,1), cao hon (0,1,0), nen ban
   ngan gon bi de mat. Da do that moi biet.

   Khong dung opacity de lam mo: no keo do tuong phan xuong duoi nguong doc
   duoc o phan lon theme. Phan cap bang co chu la du, va co san toi thieu 11px
   vi co theme dat khoi cong bo chi 12px. */
.hg-mang { margin: 22px 0 0; }
.hg-mang .hg-mang__h { margin: 0 0 8px; font-size: max(11px, .8em); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hg-mang .hg-mang__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; font-size: max(11px, .8em); line-height: 1.6; }
.hg-mang .hg-mang__list li { margin: 0; padding: 0; flex: 0 0 auto; width: auto; max-width: 100%; }
.hg-mang .hg-mang__list li::before { content: none; }
.hg-mang .hg-mang__list a { text-decoration: none; }
.hg-mang .hg-mang__list a:hover,
.hg-mang .hg-mang__list a:focus { text-decoration: underline; }
/* Dong tua an theo mau chu mo cua khoi cong bo, do duoc 3.68 - duoi
   nguong doc duoc. Lay mau dam hon, dung mau ma cac lien ket ben
   canh dang dung. */
.hg-mang .hg-mang__h { color: var(--ink-2); }
