:root {
	--nptv-black: #000000;
	--nptv-surface: #1f1f1f;
	--nptv-surface-deep: #1a1a1a;
	--nptv-card: #17272f;
	--nptv-green: #52bd68;
	--nptv-green-bright: #62ca76;
	--nptv-green-dark: #275c35;
	--nptv-white: #f8f8f8;
	--nptv-muted: #d4d4d4;
	--nptv-border: rgba(82, 189, 104, 0.62);
	--nptv-focus: #9cefaa;
	--nptv-shell: 1300px;
	--nptv-radius: 12px;
	--nptv-font: Arial, Helvetica, system-ui, -apple-system, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nptv-black);
	color: var(--nptv-white);
	font-family: var(--nptv-font);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--nptv-focus);
	outline-offset: 3px;
}

.shell {
	width: min(calc(100% - 40px), var(--nptv-shell));
	margin-inline: auto;
}

.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;
}

.screen-reader-text:focus,
.skip-link:focus {
	top: 8px;
	left: 8px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	margin: 0;
	clip: auto;
	background: var(--nptv-white);
	color: #111111;
	font-weight: 700;
	white-space: normal;
}

/* Header */
.site-header {
	position: relative;
	z-index: 50;
	background: var(--nptv-surface);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 85px;
}

.site-branding {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	width: 220px;
}

.site-branding__link,
.brand-logo {
	display: block;
}

.site-branding__logo {
	width: auto;
	max-width: 220px;
	max-height: 44px;
}

.site-header__navigation {
	display: block;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}

.primary-navigation .menu,
.footer-column .menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation > .menu {
	display: flex;
	align-items: center;
	gap: 24px;
}

.primary-navigation .menu-item {
	position: relative;
}

.primary-navigation .menu-item > a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	color: var(--nptv-white);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	transition: color 160ms ease;
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation .menu-item > a:hover {
	color: var(--nptv-green);
}

.primary-navigation .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -16px;
	min-width: 190px;
	padding: 8px 0;
	margin: 0;
	visibility: hidden;
	list-style: none;
	background: #292929;
	border: 1px solid #3b3b3b;
	border-radius: 7px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.primary-navigation .sub-menu a {
	display: block;
	min-height: auto;
	padding: 9px 16px;
}

.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-left: 34px;
}

.header-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 136px;
	min-height: 38px;
	padding: 8px 17px;
	border: 1px solid var(--nptv-border);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-action--filled {
	background: #284f31;
	color: var(--nptv-white);
}

.header-action--outline {
	background: transparent;
	color: var(--nptv-green-bright);
}

.header-action:hover {
	background: var(--nptv-green);
	border-color: var(--nptv-green);
	color: #07140a;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 8px 0 8px 12px;
	background: transparent;
	color: var(--nptv-white);
	border: 0;
	cursor: pointer;
}

.menu-toggle__label {
	font-size: 0.88rem;
	font-weight: 700;
}

.menu-toggle__icon {
	display: grid;
	gap: 5px;
	width: 23px;
}

.menu-toggle__icon span {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 170ms ease, opacity 170ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Landing page */
.channel-section {
	min-height: 596px;
	padding: 39px 0 38px;
	background-color: var(--nptv-black);
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.08) 100%), var(--nptv-hero-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.channel-section__header {
	text-align: center;
}

.channel-section__header h1 {
	max-width: 980px;
	margin: 0 auto;
	color: var(--nptv-white);
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
}

.channel-section__header p {
	max-width: 1300px;
	margin: 34px auto 0;
	color: #ededed;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.28;
	text-align: left;
}

.channel-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top: 58px;
}

.channel-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 267px;
	overflow: hidden;
	background: var(--nptv-card);
	border: 1px solid var(--nptv-border);
	border-radius: 12px;
	isolation: isolate;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.channel-card:hover {
	border-color: var(--nptv-green-bright);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.channel-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	padding: 30px 28px 27px;
	text-align: center;
}

.channel-card__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
}

.channel-card__logo {
	width: auto;
	max-width: 238px;
	max-height: 70px;
	object-fit: contain;
}

.channel-card--rakhoitv .channel-card__logo {
	max-width: 238px;
	max-height: 46px;
}

.channel-card--xoilactv .channel-card__logo {
	max-width: 236px;
	max-height: 45px;
}

.channel-card--hoiquantv .channel-card__logo {
	max-width: 154px;
	max-height: 76px;
}

.channel-card__title {
	max-width: 240px;
	min-height: 36px;
	margin: 31px 0 24px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.18;
}

.channel-card__button,
.button-link,
.wp-block-button__link,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 166px;
	min-height: 38px;
	padding: 9px 22px;
	background: var(--nptv-green);
	color: #f8fff9;
	border: 0;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.channel-card__button:hover,
.button-link:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
	background: var(--nptv-green-bright);
	color: #061309;
	transform: translateY(-1px);
}

/* Footer */
.site-footer {
	background: var(--nptv-surface);
	color: var(--nptv-muted);
}

.site-footer__main {
	min-height: 324px;
	padding: 39px 0 36px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 2.25fr) minmax(210px, 1fr) minmax(245px, 1.1fr);
	gap: 92px;
}

.footer-heading {
	position: relative;
	padding: 0 0 15px;
	margin: 0;
	color: var(--nptv-green);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
}

.footer-heading::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 52px;
	height: 2px;
	background: var(--nptv-green);
	content: "";
}

.footer-brand {
	display: inline-block;
	margin-top: 38px;
}

.footer-brand__logo {
	width: 225px;
	height: auto;
}

.footer-about__body {
	margin-top: 35px;
}

.footer-about p {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.38;
}

.footer-about .footer-hours {
	margin-top: 18px;
}

.footer-column .menu {
	margin-top: 29px;
}

.footer-column .menu-item + .menu-item {
	margin-top: 8px;
}

.footer-column .menu-item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: var(--nptv-muted);
	font-size: 0.74rem;
	line-height: 1.35;
	transition: color 150ms ease, transform 150ms ease;
}

.footer-column .menu-item a::before {
	position: absolute;
	top: 0;
	left: 0;
	color: #e6e6e6;
	content: "›";
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.footer-column .menu-item a:hover {
	color: var(--nptv-green-bright);
	transform: translateX(2px);
}

.footer-column .current-menu-item > a {
	color: var(--nptv-green-bright);
}

.responsibility-badge {
	width: 132px;
	height: auto;
	margin-top: 22px;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	min-height: 75px;
	background: var(--nptv-surface-deep);
	border-top: 1px solid #252525;
	text-align: center;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.72rem;
}

.home-extra-content {
	padding: 56px 0;
	background: var(--nptv-black);
}

/* Posts and pages */
.content-shell {
	min-height: 445px;
	padding: 64px 0 80px;
}

.content-shell--center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.archive-header h1,
.entry-title,
.content-shell--center h1 {
	margin: 0 0 32px;
	font-size: clamp(1.75rem, 4vw, 2.7rem);
	line-height: 1.15;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.post-card {
	overflow: hidden;
	background: var(--nptv-card);
	border: 1px solid #294139;
	border-radius: var(--nptv-radius);
}

.post-card__thumbnail {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

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

.post-card__body {
	padding: 22px;
}

.post-card__title {
	margin: 0 0 12px;
	font-size: 1.2rem;
}

.post-card__title a:hover {
	color: var(--nptv-green-bright);
}

.post-card__excerpt p:last-child {
	margin-bottom: 0;
}

.entry {
	max-width: 900px;
	padding: clamp(28px, 5vw, 52px);
	margin-inline: auto;
	background: linear-gradient(145deg, #17272f 0%, #111b20 100%);
	border: 1px solid var(--nptv-border);
	border-radius: 16px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.entry--home-seo {
	max-width: 980px;
}

.entry-breadcrumb {
	display: flex;
	align-items: center;
	max-width: 900px;
	margin: 0 auto 18px;
	overflow: hidden;
	color: #aeb8b2;
	font-size: 0.78rem;
	white-space: nowrap;
}

.entry-breadcrumb a {
	color: var(--nptv-green-bright);
}

.entry-breadcrumb span {
	margin-left: 9px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.entry-header {
	padding-bottom: 24px;
	margin-bottom: 28px;
	border-bottom: 1px solid rgba(82, 189, 104, 0.28);
}

.entry-header .entry-title {
	margin-bottom: 0;
}

.entry-meta {
	margin: 12px 0 0;
	color: #aeb8b2;
	font-size: 0.78rem;
}

.entry-thumbnail {
	margin: 0 0 32px;
}

.entry-thumbnail img {
	width: 100%;
	border-radius: var(--nptv-radius);
}

.entry-content {
	color: #ededed;
	font-size: 1rem;
	line-height: 1.75;
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content .nptv-entry-lead {
	color: var(--nptv-white);
	font-size: 1.08rem;
	font-weight: 700;
}

.entry-content .nptv-entry-note {
	padding: 16px 18px;
	margin-top: 28px;
	background: rgba(82, 189, 104, 0.09);
	border-left: 3px solid var(--nptv-green);
	border-radius: 0 8px 8px 0;
	color: #d7e7dc;
}

.entry-content a {
	color: var(--nptv-green-bright);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.7em;
	color: var(--nptv-white);
}

.entry--home-seo .entry-content > :first-child {
	margin-top: 0;
}

.entry-content blockquote {
	padding: 4px 0 4px 22px;
	margin-left: 0;
	border-left: 3px solid var(--nptv-green);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 10px 12px;
	border: 1px solid #3f3f3f;
	text-align: left;
}

.alignwide {
	width: min(1100px, calc(100vw - 40px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.navigation.pagination {
	margin-top: 38px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 5px 10px;
	background: var(--nptv-surface);
	border-radius: 6px;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--nptv-green);
	color: #061309;
}

.comments-area {
	max-width: 800px;
	padding-top: 40px;
	margin: 48px auto 0;
	border-top: 1px solid #333333;
}

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea {
	width: 100%;
	padding: 11px 12px;
	background: #171717;
	color: var(--nptv-white);
	border: 1px solid #4a4a4a;
	border-radius: 6px;
}

.error-code {
	margin: 0;
	color: var(--nptv-green);
	font-size: clamp(4rem, 15vw, 8rem);
	font-weight: 900;
	line-height: 0.9;
}

.content-shell--center .button-link {
	min-height: 42px;
	margin-top: 22px;
	font-size: 0.85rem;
}

@media (max-width: 1400px) {
	.site-header__inner {
		gap: 22px;
	}

	.site-branding {
		width: 190px;
	}

	.site-branding__logo {
		max-width: 190px;
	}

	.primary-navigation > .menu {
		gap: 16px;
	}

	.primary-navigation .menu-item > a {
		font-size: 0.8rem;
	}

	.site-header__actions {
		gap: 8px;
		margin-left: 8px;
	}

	.header-action {
		min-width: 118px;
		padding-inline: 12px;
	}
}

@media (max-width: 1180px) {
	.shell {
		width: min(calc(100% - 36px), var(--nptv-shell));
	}

	.site-header__inner {
		justify-content: space-between;
		min-height: 64px;
	}

	.site-branding {
		width: 170px;
	}

	.site-branding__logo {
		max-width: 170px;
		max-height: 34px;
	}

	.menu-toggle {
		display: inline-flex;
		order: 4;
		flex: 0 0 36px;
		justify-content: flex-end;
		padding: 0;
	}

	.site-header__navigation {
		position: absolute;
		top: 100%;
		left: 0;
		display: block;
		width: 100%;
		max-height: calc(100vh - 64px);
		padding: 0 18px 22px;
		margin: 0;
		overflow-y: auto;
		visibility: hidden;
		background: var(--nptv-surface);
		border-top: 1px solid #333333;
		box-shadow: 0 18px 26px rgba(0, 0, 0, 0.3);
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
	}

	.site-header__navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.primary-navigation > .menu {
		display: block;
	}

	.primary-navigation .menu-item > a {
		display: flex;
		min-height: 46px;
		padding: 0 4px;
		border-bottom: 1px solid #303030;
		font-size: 0.91rem;
	}

	.primary-navigation .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 4px 18px;
		visibility: visible;
		background: transparent;
		border: 0;
		opacity: 1;
		transform: none;
	}

	.site-header__actions {
		gap: 8px;
		margin-left: auto;
	}

	.header-action {
		min-width: 118px;
		min-height: 34px;
		font-size: 0.67rem;
	}

	.channel-section {
		height: auto;
		padding-block: 40px 58px;
	}

	.channel-section__header p {
		font-size: 0.84rem;
		line-height: 1.45;
	}

	.channel-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__grid {
		grid-template-columns: 1.55fr 1fr 1fr;
		gap: 34px;
	}
}

@media (max-width: 680px) {
	.channel-section {
		padding: 30px 0 52px;
	}

	.channel-section__header h1 {
		font-size: 1.35rem;
		line-height: 1.3;
	}

	.channel-section__header p {
		margin-top: 22px;
		font-size: 0.8rem;
		text-align: left;
	}

	.channel-grid {
		grid-template-columns: 1fr;
		gap: 17px;
		margin-top: 26px;
	}

	.channel-card {
		min-height: 190px;
	}

	.channel-card__content {
		padding-block: 18px;
	}

	.channel-card__title {
		margin-block: 14px 15px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 28px;
	}

	.footer-about {
		grid-column: 1 / -1;
	}

	.post-list {
		grid-template-columns: 1fr;
	}

	.content-shell {
		padding: 48px 0 62px;
	}

	.entry {
		padding: 26px 20px;
		border-radius: 12px;
	}

	.entry-header {
		padding-bottom: 19px;
		margin-bottom: 22px;
	}
}

@media (max-width: 480px) {
	.shell {
		width: calc(100% - 20px);
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: 125px minmax(0, 1fr) 25px;
		min-height: 50px;
		gap: 0;
	}

	.site-branding {
		width: 125px;
	}

	.site-branding__logo {
		width: 125px;
		max-width: 125px;
		max-height: 25px;
	}

	.site-header__actions {
		display: grid;
		grid-template-columns: 88px 88px;
		justify-content: space-between;
		gap: 0;
		padding-right: clamp(2px, calc((100vw - 346px) * 0.227), 10px);
		padding-left: clamp(4px, calc((100vw - 346px) * 0.523), 23px);
		margin-left: 0;
	}

	.header-action {
		min-width: 88px;
		min-height: 25px;
		padding: 4px 8px;
		font-size: 0.48rem;
		border-radius: 14px;
	}

	.menu-toggle {
		flex-basis: 25px;
		min-height: 25px;
	}

	.menu-toggle__icon {
		width: 23px;
	}

	.site-header__navigation {
		max-height: calc(100vh - 50px);
		padding-inline: 10px;
	}

	.channel-section {
		min-height: 916px;
		padding: 16px 0 33px;
		background-position: center;
		background-size: auto 100%;
	}

	.channel-section__header h1 {
		max-width: 360px;
		font-size: 1.125rem;
		line-height: 1.22;
	}

	.channel-section__header p {
		margin-top: 15px;
		font-size: 0.625rem;
		line-height: 1.25;
	}

	.channel-grid {
		gap: 17px;
		margin-top: 16px;
	}

	.channel-card {
		min-height: 157px;
		max-height: 157px;
		border-radius: 12px;
	}

	.channel-card__content {
		padding: 20px 20px 12px;
	}

	.channel-card__logo-wrap {
		height: 42px;
	}

	.channel-card__logo {
		max-width: 168px;
		max-height: 43px;
	}

	.channel-card--rakhoitv .channel-card__logo {
		max-width: 170px;
		max-height: 31px;
	}

	.channel-card--xoilactv .channel-card__logo {
		max-width: 166px;
		max-height: 29px;
	}

	.channel-card--hoiquantv .channel-card__logo {
		max-width: 105px;
		max-height: 52px;
	}

	.channel-card__title {
		min-height: 28px;
		margin: 17px 0 7px;
		font-size: 0.75rem;
		line-height: 1.15;
	}

	.channel-card__button {
		min-width: 96px;
		min-height: 25px;
		padding: 5px 12px;
		font-size: 0.5rem;
	}

	.site-footer__main {
		min-height: 430px;
		padding: 18px 0 20px;
	}

	.site-footer__grid {
		gap: 25px 20px;
	}

	.footer-heading {
		padding-bottom: 9px;
		font-size: 0.78rem;
	}

	.footer-heading::after {
		width: 52px;
	}

	.footer-brand {
		margin-top: 23px;
	}

	.footer-brand__logo {
		width: 125px;
	}

	.footer-about__body {
		margin-top: 18px;
	}

	.footer-about p {
		font-size: 0.625rem;
		line-height: 1.3;
	}

	.footer-about .footer-hours {
		margin-top: 13px;
	}

	.footer-column .menu {
		margin-top: 14px;
	}

	.footer-column .menu-item + .menu-item {
		margin-top: 2px;
	}

	.footer-column .menu-item a {
		padding-left: 11px;
		font-size: 0.59rem;
		line-height: 1.25;
	}

	.footer-column .menu-item a::before {
		font-size: 0.8rem;
	}

	.responsibility-badge {
		width: 90px;
		margin-top: 18px;
	}

	.site-footer__bottom {
		min-height: 44px;
	}

	.site-footer__bottom p {
		font-size: 0.58rem;
	}
}

@media (max-width: 360px) {
	.site-header__inner {
		grid-template-columns: 115px minmax(0, 1fr) 23px;
	}

	.site-branding,
	.site-branding__logo {
		width: 115px;
		max-width: 115px;
	}

	.site-header__actions {
		grid-template-columns: repeat(2, minmax(0, 78px));
		padding-right: 2px;
		padding-left: 4px;
	}

	.header-action {
		min-width: 0;
		padding-inline: 4px;
		font-size: 0.44rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
