/*
 * Site Signal - kieu dang chung.
 *
 * Viet theo loi dien thoai truoc: moi kich thuoc mac dinh la cua be ngang
 * 375px, man hinh rong hon moi duoc them cot. Lam nguoc lai thi luon con mot
 * khoi nao do tran ngang ma khong ai de y.
 *
 * Ba thu lam nen dien mao rieng cua site nay:
 *   1. nen den, chu Unbounded rat dam va dan sat o moi tieu de;
 *   2. anh bo goc rat manh (--r), luon nam trong mot khung rieng;
 *   3. diem cua NGUOI MUA nam trong mot khung tron dat de len goc anh.
 */

:root {
	--bg: #0d0d12;
	--surface: #16161f;
	--surface-2: #1d1d29;
	--ink: #f3f3f7;
	--muted: #9b9bb0;
	--line: #282838;
	--accent: #5a31f4;
	/* Ban sang cua mau nhan: #5a31f4 dat lam CHU tren nen den thi doc khong ra. */
	--accent-lift: #a78bff;
	--good: #4ade80;
	--warn: #fbbf24;
	/* O dat anh san pham: anh Amazon deu nen trang, nen o phai sang theo. */
	--tile: #f2f2f7;

	--fd: "Unbounded", "Arial Black", system-ui, sans-serif;
	--fb: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--r: 20px;
	--r-sm: 12px;
	--wrap: 1220px;
	--gut: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--fb);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }

:focus-visible {
	outline: 2px solid var(--accent-lift);
	outline-offset: 3px;
	border-radius: 4px;
}

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

.sg-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 50;
	background: var(--accent);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 var(--r-sm) 0;
	font-weight: 600;
}
.sg-skip:focus { left: 0; }

/* ------------------------------------------------------------------ */
/* Dau trang                                                           */
/* ------------------------------------------------------------------ */

.sg-head {
	border-bottom: 1px solid var(--line);
	background: linear-gradient(180deg, #14141d, var(--bg));
}

.sg-head__bar {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 14px var(--gut);
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: space-between;
}

.sg-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.sg-brand__t {
	font-family: var(--fd);
	font-weight: 900;
	font-size: 17px;
	letter-spacing: -.04em;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sg-find { position: relative; flex: 0 0 auto; }
.sg-find > summary {
	list-style: none;
	cursor: pointer;
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
}
.sg-find > summary::-webkit-details-marker { display: none; }
.sg-find[open] > summary { color: var(--ink); border-color: var(--accent); }

.sg-find__p {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 30;
	width: min(84vw, 340px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: 10px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
}

.sg-search { display: flex; gap: 8px; }
.sg-search input {
	flex: 1 1 auto;
	min-width: 0;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--ink);
	font: 500 15px/1.4 var(--fb);
	padding: 10px 12px;
}
.sg-search input::placeholder { color: #6c6c84; }
.sg-search button {
	flex: 0 0 auto;
	background: var(--accent);
	color: #fff;
	border: 0;
	border-radius: 10px;
	font: 700 14px/1 var(--fb);
	padding: 0 16px;
	cursor: pointer;
}
.sg-search button:hover { filter: brightness(1.15); }

.sg-nav {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 var(--gut) 10px;
	overflow-x: auto;
	scrollbar-width: none;
}
.sg-nav::-webkit-scrollbar { display: none; }
.sg-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 6px;
	width: max-content;
}
.sg-nav a {
	display: block;
	white-space: nowrap;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid transparent;
}
.sg-nav a:hover { color: var(--ink); background: var(--surface); border-color: var(--line); }

/* ------------------------------------------------------------------ */
/* Khung chung                                                         */
/* ------------------------------------------------------------------ */

.sg-main { display: block; }

.sg-wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 24px var(--gut) 56px;
}

.sg-kicker {
	font-family: var(--fd);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--accent-lift);
	margin: 0 0 10px;
}
.sg-kicker--sub { margin-top: 26px; }

.sg-phead { padding: 8px 0 22px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.sg-ptitle {
	font-family: var(--fd);
	font-weight: 800;
	font-size: clamp(28px, 8vw, 54px);
	letter-spacing: -.04em;
	line-height: 1;
	margin: 0 0 12px;
	overflow-wrap: anywhere;
}
.sg-phead__d { color: var(--muted); max-width: 62ch; margin: 0 0 12px; }
.sg-phead__form { max-width: 420px; margin-top: 14px; }

.sg-empty { color: var(--muted); margin: 24px 0; }

.sg-crumbs { font-size: 12px; color: var(--muted); margin: 0 0 14px; }
.sg-crumbs a:hover { color: var(--accent-lift); }
.sg-crumbs span { padding: 0 6px; }

.sg-meta {
	font-size: 12.5px;
	color: var(--muted);
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: baseline;
}
.sg-meta__k { color: var(--ink); font-weight: 600; }

.sg-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--accent-lift);
	margin-bottom: 8px;
}
.sg-eyebrow a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* Diem nguoi mua trong khung tron                                     */
/* ------------------------------------------------------------------ */

.sg-dial {
	--pct: 0;
	position: absolute;
	right: 12px;
	bottom: -16px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: conic-gradient(var(--accent-lift) calc(var(--pct) * 1%), rgba(255, 255, 255, .13) 0);
	box-shadow: 0 8px 26px rgba(0, 0, 0, .65);
	z-index: 2;
}
.sg-dial__in {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--surface);
	display: grid;
	place-items: center;
	line-height: 1;
	text-align: center;
}
.sg-dial__in b {
	display: block;
	font-family: var(--fd);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: -.04em;
}
.sg-dial__in i {
	display: block;
	font-style: normal;
	font-size: 7px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 2px;
}
.sg-dial--lg { width: 72px; height: 72px; bottom: -22px; right: 16px; }
.sg-dial--lg .sg-dial__in { width: 58px; height: 58px; }
.sg-dial--lg .sg-dial__in b { font-size: 19px; }
.sg-dial--lg .sg-dial__in i { font-size: 8px; }

.sg-rate { font-size: 12.5px; color: var(--muted); }
.sg-rate b { color: var(--ink); font-weight: 700; }
.sg-rate__n::before { content: "\00b7"; padding: 0 5px; }
.sg-rate__w {
	display: inline-block;
	margin-left: 6px;
	color: var(--accent-lift);
	font-weight: 600;
}

.sg-pick {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
	background: rgba(90, 49, 244, .2);
	border: 1px solid rgba(167, 139, 255, .45);
	color: var(--ink);
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 10px;
}
.sg-pick i { font-style: normal; font-weight: 500; color: var(--muted); font-size: 11px; }
/* Huy hieu phai chiem tron mot dong, neu khong nhan chuyen muc bi day nam
   canh no va doc thanh mot cum vo nghia. */
.sg-card__body .sg-pick { display: flex; width: -moz-fit-content; width: fit-content; margin-bottom: 8px; }

/* ------------------------------------------------------------------ */
/* Gia va nut mua                                                      */
/* ------------------------------------------------------------------ */

.sg-price { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.sg-price b {
	font-family: var(--fd);
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -.03em;
}
.sg-price s { color: var(--muted); font-size: 13px; }
.sg-price em {
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	color: #0d0d12;
	background: var(--good);
	border-radius: 6px;
	padding: 2px 7px;
}
.sg-price--lg b { font-size: 30px; }

.sg-buy {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	border-radius: 999px;
	padding: 12px 20px;
	margin-top: 4px;
}
.sg-buy:hover { filter: brightness(1.18); }
.sg-buy__x { transition: transform .15s ease; }
.sg-buy:hover .sg-buy__x { transform: translateX(3px); }

/* ------------------------------------------------------------------ */
/* The bai                                                             */
/* ------------------------------------------------------------------ */

.sg-card { display: block; }

.sg-card__shot { position: relative; display: block; margin-bottom: 22px; }

/*
 * Anh o day la anh cat nen trang cua Amazon, khong phai anh chup bao chi. Neu
 * phu kin khung (cover) thi mot chiec hop LEGO bi xen con mot goc, nhin khong
 * ra la mon gi. Nen: giu tron mon hang (contain) tren mot o sang, bo goc manh
 * - o sang lai lam bat len giua nen den.
 */
.sg-card__shot img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: var(--tile);
	padding: 14px;
	border-radius: var(--r);
}
.sg-card:hover .sg-card__shot img { filter: brightness(1.04); }

.sg-card__rank {
	position: absolute;
	left: 12px;
	top: 12px;
	min-width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--bg);
	border: 1px solid var(--line);
	font-family: var(--fd);
	font-weight: 800;
	font-size: 13px;
}

.sg-card__t {
	font-family: var(--fd);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -.035em;
	line-height: 1.12;
	margin: 0 0 10px;
	overflow-wrap: anywhere;
}
.sg-card__t a:hover { color: var(--accent-lift); }
.sg-card__d { color: var(--muted); font-size: 14.5px; margin: 0 0 10px; }
.sg-card__rate { margin: 8px 0 0; }

.sg-card--lede .sg-card__t,
.sg-card--wide .sg-card__t { font-size: clamp(24px, 6.4vw, 40px); font-weight: 800; }
.sg-card--lede .sg-card__shot img,
.sg-card--wide .sg-card__shot img { aspect-ratio: 16 / 10; }
.sg-card--lede .sg-card__d,
.sg-card--wide .sg-card__d { font-size: 16px; }

/* ------------------------------------------------------------------ */
/* Dai tin hai cot                                                     */
/* ------------------------------------------------------------------ */

.sg-lede {
	border-bottom: 1px solid var(--line);
	background: radial-gradient(120% 90% at 12% 0%, rgba(90, 49, 244, .2), transparent 60%);
}
.sg-lede__in {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 28px var(--gut) 40px;
	display: grid;
	gap: 36px;
}

.sg-lines { list-style: none; margin: 0; padding: 0; }
.sg-line {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-top: 1px solid var(--line);
}
.sg-line:first-child { border-top: 0; padding-top: 0; }
.sg-line__n {
	flex: 0 0 auto;
	font-family: var(--fd);
	font-weight: 800;
	font-size: 16px;
	color: var(--accent-lift);
	width: 26px;
	letter-spacing: -.04em;
}
.sg-line__b { min-width: 0; }
.sg-line__t {
	font-family: var(--fd);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -.03em;
	line-height: 1.2;
	margin: 0 0 6px;
	overflow-wrap: anywhere;
}
.sg-line__t a:hover { color: var(--accent-lift); }
.sg-line .sg-eyebrow { margin-bottom: 5px; }

/* ------------------------------------------------------------------ */
/* Dai noi dung                                                        */
/* ------------------------------------------------------------------ */

.sg-strip { border-bottom: 1px solid var(--line); }
.sg-strip:last-of-type { border-bottom: 0; }
.sg-strip__in { max-width: var(--wrap); margin: 0 auto; padding: 34px var(--gut) 40px; }
.sg-strip__in--flush { padding-left: 0; padding-right: 0; }
.sg-strip--deal { background: var(--surface); }

.sg-strip__h { margin-bottom: 22px; }
.sg-strip__t {
	font-family: var(--fd);
	font-weight: 800;
	font-size: clamp(22px, 5.6vw, 34px);
	letter-spacing: -.04em;
	line-height: 1.05;
	margin: 0;
	overflow-wrap: anywhere;
}
.sg-strip__more {
	display: inline-block;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--accent-lift);
}

.sg-grid { display: grid; gap: 34px 24px; }

/* ------------------------------------------------------------------ */
/* The gia giam                                                        */
/* ------------------------------------------------------------------ */

.sg-deals { display: grid; gap: 22px; }
.sg-deal {
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 14px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.sg-deal__shot { position: relative; flex: 0 0 96px; }
.sg-deal__shot img {
	width: 96px;
	height: 96px;
	object-fit: contain;
	padding: 8px;
	border-radius: var(--r-sm);
	background: var(--tile);
}
.sg-deal__cut {
	position: absolute;
	left: -6px;
	top: -8px;
	background: var(--good);
	color: #0d0d12;
	font-weight: 800;
	font-size: 11px;
	border-radius: 7px;
	padding: 3px 7px;
}
.sg-deal__b { min-width: 0; }
.sg-deal__t {
	font-family: var(--fd);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: -.03em;
	line-height: 1.2;
	margin: 0 0 8px;
	overflow-wrap: anywhere;
}
.sg-deal__t a:hover { color: var(--accent-lift); }
.sg-deal__note { font-size: 11.5px; color: var(--muted); margin: 8px 0 0; }
.sg-deal .sg-card__rate { margin-top: 6px; }

/* ------------------------------------------------------------------ */
/* The chuyen muc / hang                                               */
/* ------------------------------------------------------------------ */

.sg-chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.sg-chips a {
	display: inline-flex;
	align-items: baseline;
	gap: 7px;
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
}
.sg-chips a:hover { border-color: var(--accent); color: var(--accent-lift); }
.sg-chips span { color: var(--muted); font-size: 11px; font-weight: 500; }
.sg-chips--brand a { font-size: 12.5px; padding: 6px 12px; }

/* ------------------------------------------------------------------ */
/* Phan trang                                                          */
/* ------------------------------------------------------------------ */

.sg-pager { margin-top: 40px; }
.sg-pager ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.sg-pager a, .sg-pager span {
	display: inline-block;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
}
.sg-pager a:hover { color: var(--ink); border-color: var(--accent); }
.sg-pager .current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ------------------------------------------------------------------ */
/* Ghi chu nguon so lieu                                               */
/* ------------------------------------------------------------------ */

.sg-source {
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--muted);
	border-left: 2px solid var(--accent);
	padding-left: 14px;
	margin: 26px 0 0;
	max-width: 70ch;
}

/* ------------------------------------------------------------------ */
/* Chan trang                                                          */
/* ------------------------------------------------------------------ */

.sg-foot {
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, var(--bg), #101018);
	margin-top: 10px;
}
.sg-foot__in { max-width: var(--wrap); margin: 0 auto; padding: 40px var(--gut) 48px; }
.sg-foot__brand {
	font-family: var(--fd);
	font-weight: 900;
	font-size: clamp(22px, 6vw, 34px);
	letter-spacing: -.05em;
	margin: 0 0 6px;
	overflow-wrap: anywhere;
}
.sg-foot__tag { color: var(--muted); margin: 0 0 26px; }

.sg-nums {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 28px;
	padding: 20px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.sg-nums dt { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sg-nums dd {
	margin: 4px 0 0;
	font-family: var(--fd);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -.04em;
}

.sg-foot__nav { margin-bottom: 8px; }
.sg-foot__legal { font-size: 12px; color: var(--muted); margin: 22px 0 0; }
.sg-source--foot { margin-top: 22px; }

/* ------------------------------------------------------------------ */
/* Vo trang bai - phan dung chung voi trang tinh                       */
/* ------------------------------------------------------------------ */

/*
 * Vo (dau bai, dong tac gia, be rong cot chu) nam o day chu khong o
 * article.css: article.css chi nap o trang BAI, ma trang tinh cung dung chung
 * bo vo nay.
 */
.sg-art { display: block; }

.sg-art__head {
	border-bottom: 1px solid var(--line);
	background: radial-gradient(110% 100% at 0% 0%, rgba(90, 49, 244, .22), transparent 62%);
}
.sg-art__headin { max-width: 900px; margin: 0 auto; padding: 24px var(--gut) 30px; }

.sg-art__t {
	font-family: var(--fd);
	font-weight: 800;
	font-size: clamp(28px, 8.4vw, 56px);
	letter-spacing: -.045em;
	line-height: .98;
	margin: 0 0 16px;
	overflow-wrap: anywhere;
}
.sg-art__d { color: var(--muted); font-size: 15.5px; max-width: 60ch; margin: 0 0 20px; }

.sg-by { display: flex; align-items: center; gap: 12px; }
.sg-by__av {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--surface-2);
	border: 1px solid var(--line);
	font-family: var(--fd);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: -.02em;
}
.sg-by__t { min-width: 0; font-size: 13.5px; font-weight: 600; }
.sg-by__t a:hover { color: var(--accent-lift); }
.sg-by__t .sg-meta { margin-top: 2px; font-weight: 400; }

.sg-art__body { max-width: 900px; margin: 0 auto; padding: 0 var(--gut); }
.sg-art__foot { max-width: 900px; margin: 0 auto; padding: 28px var(--gut) 44px; }
.sg-art__foot .sg-chips { margin-bottom: 4px; }

/* ------------------------------------------------------------------ */
/* Man hinh rong dan                                                   */
/* ------------------------------------------------------------------ */

@media (min-width: 600px) {
	.sg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sg-deals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sg-nums { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.sg-card--wide { grid-column: 1 / -1; }
	/* Nhan nho nam TREN tieu de, ca hai can trai; lien ket "xem them" moi day
	   sang phai. De nhan mot cot rieng ben trai thi tieu de bi day vao giua
	   trang, doc nhu bi lech. */
	.sg-strip__h { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
	.sg-strip__h .sg-kicker { grid-column: 1; grid-row: 1; }
	.sg-strip__t { grid-column: 1; grid-row: 2; }
	.sg-strip__more { grid-column: 2; grid-row: 1 / 3; align-self: end; margin-top: 0; }
}

@media (min-width: 900px) {
	:root { --gut: 28px; }
	.sg-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.sg-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.sg-deals { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.sg-deal { display: block; }
	.sg-deal__shot { width: 100%; }
	.sg-deal__shot img { width: 100%; height: 150px; padding: 12px; margin-bottom: 12px; }

	/* Dai tin: mot cot lon ben trai, mot cot tin danh so ben phai. */
	.sg-lede__in { grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr); gap: 44px; }
	.sg-lede__b { border-left: 1px solid var(--line); padding-left: 32px; }

	.sg-brand__t { font-size: 20px; }
	.sg-nav a { font-size: 14px; }
}

@media (min-width: 1100px) {
	.sg-card--wide .sg-card__t { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; }
}


/* === 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.                                */
/* ------------------------------------------------------------------ */
.sg-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;
}
.sg-foot-pages a {
	color: inherit;
	text-decoration: none;
	opacity: .82;
}
.sg-foot-pages a:hover,
.sg-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. */
.sg-lg { white-space: nowrap; }
.sg-lg__mark { display: inline-block; width: 1em; height: 1em; vertical-align: -0.14em; margin-right: 0.36em; }
.sg-lg__tld { font-weight: 400; opacity: .5; }

/* --- Lien ket chan trang --------------------------------------------- */
/* Viet .sg-mang .sg-mang__h chu khong phai .sg-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. */
.sg-mang { margin: 22px 0 0; }
.sg-mang .sg-mang__h { margin: 0 0 8px; font-size: max(11px, .8em); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.sg-mang .sg-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; }
.sg-mang .sg-mang__list li { margin: 0; padding: 0; flex: 0 0 auto; width: auto; max-width: 100%; }
.sg-mang .sg-mang__list li::before { content: none; }
.sg-mang .sg-mang__list a { text-decoration: none; }
.sg-mang .sg-mang__list a:hover,
.sg-mang .sg-mang__list a:focus { text-decoration: underline; }
