/* ==========================================================================
   jatimverse.id — main.css
   Mobile-first. Breakpoint: 760px, 860px (header), 900px (grid).
   ========================================================================== */

:root {
	--bar: #121212;
	--bar-ink: #ffffff;
	--bar-muted: #a8a8a8;
	--bar-line: #2a2a2a;
	--bg: #ffffff;
	--soft: #f4f4f2;
	--ink: #121212;
	--ink-2: #3a3a3a;
	--muted: #6b6b6b;
	--line: #e3e3e0;
	--accent: #e4572e;
	--accent-text: #c23f1a;
	--on-accent: #121212;

	--serif: "Source Serif 4", Georgia, "Times New Roman", serif;
	--sans: "Libre Franklin", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--max: 1240px;
	--gutter: 16px;
}

@media (min-width: 760px) {
	:root { --gutter: 24px; }
}

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

html { -webkit-text-size-adjust: 100%; }
html.jv-lock { overflow: hidden; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

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

a { color: inherit; text-decoration: none; }
b,
strong { font-weight: 600; }

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

ul,
ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1,
h2,
h3 { text-wrap: balance; }

.wrap {
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

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

.skip-link {
	position: absolute;
	left: 8px;
	top: -100px;
	z-index: 100;
	background: var(--bg);
	color: var(--ink);
	padding: 8px 12px;
	font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ---------- Logo ---------- */
.logo {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 25px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--bar-ink);
	white-space: nowrap;
}
.logo__id { color: var(--accent); }
.logo--ink { color: var(--ink); }

/* ---------- Header ---------- */
.hd {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--bar);
	color: var(--bar-ink);
}
.admin-bar .hd { top: 46px; }
@media (min-width: 783px) {
	.admin-bar .hd { top: 32px; }
}
@media (max-width: 600px) {
	.admin-bar .hd { top: 0; }
}

.hd__in {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	grid-template-areas:
		"burger logo . search"
		"kanal kanal kanal more";
	align-items: center;
	column-gap: 12px;
}

/* Garis pemisah baris kedua (mobile) tanpa terputus oleh column-gap */
.hd__in::after {
	content: "";
	grid-area: 2 / 1 / 3 / -1;
	align-self: start;
	border-top: 1px solid var(--bar-line);
	pointer-events: none;
}

.hd__burger {
	grid-area: burger;
	width: 36px;
	height: 48px;
	display: grid;
	place-content: center;
	gap: 5px;
}
.hd__burger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--bar-ink);
}

.hd .logo { grid-area: logo; }

.hd__div {
	grid-area: div;
	display: none;
	width: 1px;
	height: 26px;
	background: #3a3a3a;
}

.hd__kanal {
	grid-area: kanal;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.hd__kanal::-webkit-scrollbar { display: none; }
.hd__kanal ul { display: flex; white-space: nowrap; }
.hd__kanal a {
	position: relative;
	display: flex;
	align-items: center;
	height: 44px;
	padding-inline: 12px;
	font-weight: 500;
	font-size: 14.5px;
	color: var(--bar-muted);
}
.hd__kanal li:first-child a { padding-left: 0; }
.hd__kanal a:hover { color: var(--bar-ink); }
.hd__kanal a.is-active { color: var(--bar-ink); font-weight: 600; }

/* Segitiga kanal aktif */
.hd__kanal a.is-active::after,
.hd__more.is-active::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	border: 7px solid transparent;
	border-top: 0;
	border-bottom-color: var(--bg);
}
.hd__kanal li:first-child a.is-active::after { left: calc(50% - 6px); }

.hd__more {
	grid-area: more;
	position: relative;
	height: 44px;
	padding-inline: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--bar-muted);
}
.hd__more:hover,
.hd__more[aria-expanded="true"],
.hd__more.is-active { color: var(--bar-ink); }

.hd__search {
	grid-area: search;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 32px;
	padding-inline: 12px;
	border: 1px solid #3a3a3a;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	color: var(--bar-ink);
}
.hd__search:hover,
.hd__search[aria-expanded="true"] { border-color: var(--bar-ink); }

@media (min-width: 860px) {
	.hd__in {
		grid-template-columns: auto auto auto minmax(0, 1fr) auto auto;
		grid-template-areas: "burger logo div kanal more search";
		height: 56px;
	}
	.hd__div { display: block; }
	.hd__in::after { display: none; }
	.logo { font-size: 27px; }
	.hd__kanal a,
	.hd__more { height: 56px; }
	.hd__kanal li:first-child a { padding-left: 12px; }
	.hd__kanal li:first-child a.is-active::after { left: 50%; }
}

/* Dropdown wilayah */
.hd__drop { position: relative; height: 0; }
.wil-menu {
	position: absolute;
	top: 0;
	right: var(--gutter);
	z-index: 50;
	width: min(340px, calc(100vw - 32px));
	background: var(--bg);
	color: var(--ink);
	border: 1px solid var(--line);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	padding: 8px;
}
.wil-menu__title {
	margin: 6px 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.wil-menu a { display: grid; padding: 8px; }
.wil-menu a:hover { background: var(--soft); }
.wil-menu strong { font-size: 14px; font-weight: 600; }
.wil-menu span { font-size: 12px; color: var(--muted); }

/* Baris pencarian */
.search-row {
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}
.search-row__form,
.search-inline {
	display: flex;
	gap: 8px;
	padding-block: 12px;
}
.search-row input,
.search-inline input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--line);
	background: var(--soft);
	color: var(--ink);
	font: inherit;
	padding: 10px 12px;
	border-radius: 3px;
}
.search-row button,
.search-inline button {
	background: var(--ink);
	color: var(--bg);
	font-weight: 600;
	padding-inline: 16px;
	border-radius: 3px;
}

/* ---------- Sub-nav ---------- */
.subnav {
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}
.subnav__scroll {
	display: flex;
	align-items: center;
	min-height: 44px;
	overflow-x: auto;
	scrollbar-width: none;
	white-space: nowrap;
}
.subnav__scroll::-webkit-scrollbar { display: none; }
.subnav__ctx {
	font-weight: 600;
	font-size: 13px;
	padding-right: 12px;
	margin-right: 6px;
	border-right: 1px solid var(--line);
}
.subnav ul { display: flex; }
.subnav a {
	display: block;
	padding: 12px 10px;
	font-size: 13.5px;
	color: var(--ink-2);
	border-bottom: 2px solid transparent;
}
.subnav a:hover { color: var(--ink); }
.subnav a.is-active {
	color: var(--ink);
	font-weight: 600;
	border-bottom-color: var(--ink);
}

/* ---------- Drawer ---------- */
.scrim {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(0, 0, 0, 0.45);
}
.drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 61;
	width: min(330px, 88vw);
	overflow-y: auto;
	background: var(--bg);
	color: var(--ink);
	padding: 16px 20px 32px;
}
@media (prefers-reduced-motion: no-preference) {
	.drawer:not([hidden]) { animation: jv-slide 0.18s ease-out; }
}
@keyframes jv-slide {
	from { transform: translateX(-12px); opacity: 0.6; }
}
.drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.drawer__close { font-size: 28px; line-height: 1; padding: 4px 8px; }
.drawer__h {
	margin: 24px 0 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}
.drawer__list a {
	display: block;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 500;
}
.drawer__list a:hover { color: var(--accent-text); }
.drawer__list small {
	display: block;
	font-weight: 400;
	font-size: 12px;
	color: var(--muted);
}

/* ---------- Umum ---------- */
.main { padding-block: 20px 56px; }

.empty {
	padding: 40px 0;
	text-align: center;
	color: var(--muted);
}

.sec { margin-top: 40px; }
.sec__h {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	border-top: 2px solid var(--ink);
	padding-top: 10px;
	margin-bottom: 18px;
}
.sec__h h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.01em;
}
.sec__note { font-size: 12.5px; color: var(--muted); }
.sec__more {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-2);
	white-space: nowrap;
}
.sec__more:hover { color: var(--ink); text-decoration: underline; }

/* Label & badge */
.labels {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}
.label-rubrik {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-text);
}
.label-rubrik:hover { text-decoration: underline; }
.badge-sponsor {
	display: inline-block;
	background: var(--accent);
	color: var(--on-accent);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 2px 6px;
	line-height: 1.4;
}

/* Meta */
.by { font-size: 12.5px; color: var(--muted); }
.by-name { color: var(--ink-2); font-weight: 500; }

/* Dek */
.dek {
	margin: 0;
	font-size: 16.5px;
	line-height: 1.45;
	color: var(--ink-2);
	max-width: 62ch;
}

/* Judul */
.hl {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -0.005em;
	color: var(--ink);
}
.hl a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.hl--hero { font-size: clamp(28px, 3.3vw, 40px); line-height: 1.1; }
.hl--main { font-size: 24px; line-height: 1.15; }
.hl--list { font-size: 17px; line-height: 1.25; }
.hl--row { font-size: 18px; line-height: 1.25; }
.hl--pop { font-size: 17px; line-height: 1.25; }
@media (min-width: 900px) {
	.hl--list { font-size: 18px; }
}

/* Gambar kartu */
.img {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--soft);
	max-width: 100%;
}
.img--16x9 { aspect-ratio: 16 / 9; }
.img--4x3 { aspect-ratio: 4 / 3; }
.img__el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Baris atas (60/40) ---------- */
.top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 900px) {
	.top { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 32px; }
	.top--solo { grid-template-columns: minmax(0, 1fr); }
}
.card--hero { display: grid; gap: 14px; align-content: start; }
.card--hero .card__body { display: grid; gap: 10px; }
.card--hero .labels { margin-bottom: -4px; }

.top__side { display: grid; align-content: start; }
.card--side {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 14px;
	padding-block: 14px;
	border-bottom: 1px solid var(--line);
}
.card--side:first-child { padding-top: 0; }
.card--side:last-child { border-bottom: 0; }
.card--side .by { margin-top: 6px; }
@media (min-width: 900px) {
	.card--side { grid-template-columns: 132px minmax(0, 1fr); }
}

/* ---------- Terpopuler ---------- */
.pop__grid {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 40px;
}
@media (min-width: 760px) {
	.pop__grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-flow: column;
		grid-template-rows: repeat(var(--rows, 4), auto);
	}
}
.pop__item {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 96px;
	gap: 14px;
	align-items: center;
	padding-block: 14px;
	border-bottom: 1px solid var(--line);
}
.pop__n {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 58px;
	line-height: 0.9;
	text-align: center;
	color: transparent;
	-webkit-text-stroke: 1px var(--ink);
	font-variant-numeric: lining-nums tabular-nums;
}
.pop__body { display: grid; gap: 4px; justify-items: start; }

/* ---------- Blok kanal ---------- */
.sec__h h2 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.blok__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 900px) {
	.blok__grid { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 32px; }
}
.card--main { display: grid; gap: 12px; align-content: start; }
.card--main .card__body { display: grid; gap: 8px; }
.card--main .labels { margin-bottom: -2px; }
.blok__list { display: grid; align-content: start; }
.card--item {
	padding-block: 14px;
	border-bottom: 1px solid var(--line);
}
.card--item:first-child { padding-top: 0; }
.card--item .by { margin-top: 6px; }

/* ---------- Arsip ---------- */
.crumb { margin-bottom: 12px; font-size: 12.5px; color: var(--muted); }
.crumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumb li { display: flex; gap: 6px; }
.crumb li + li::before { content: "›"; color: var(--muted); }
.crumb a { color: var(--ink-2); font-weight: 500; }
.crumb a:hover { text-decoration: underline; }

.arch {
	padding-block: 4px 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--line);
}
.arch__type {
	margin: 0;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.arch__title {
	margin: 4px 0 6px;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.015em;
}
.arch__desc { margin: 0; color: var(--ink-2); max-width: 60ch; }

.rows { display: grid; }
.card--row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 120px;
	gap: 16px;
	padding-block: 16px;
	border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
	.card--row { grid-template-columns: minmax(0, 1fr) 200px; }
}
.card--row .hl { margin-bottom: 6px; }
.dek--row { font-size: 14px; margin-bottom: 6px; }
@media (max-width: 480px) {
	.dek--row { display: none; }
}

/* Paginasi */
.pagination { margin-top: 28px; }
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.pagination .page-numbers {
	display: inline-block;
	min-width: 36px;
	padding: 7px 10px;
	text-align: center;
	border: 1px solid var(--line);
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}
.pagination .page-numbers.current {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}
.pagination a.page-numbers:hover { border-color: var(--ink); }
.pagination .dots { border: 0; }

/* ---------- Artikel ---------- */
.art { max-width: 760px; margin-inline: auto; }
.art__head { max-width: 680px; margin-inline: auto; }
.art__title {
	margin: 4px 0 12px;
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(30px, 4.6vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.015em;
}
.art__dek {
	margin: 0 0 16px;
	font-size: 18.5px;
	line-height: 1.45;
	color: var(--ink-2);
}
.art__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	align-items: center;
	padding-block: 12px;
	margin-bottom: 20px;
	border-top: 1px solid var(--line);
	font-size: 13px;
	color: var(--muted);
}
.art__meta .by-name { color: var(--ink); }
.art__meta .by-name:hover { text-decoration: underline; }
.art__figure { margin: 0 0 28px; }
.art__img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: var(--soft);
}
.art__figure figcaption { margin-top: 8px; font-size: 12.5px; color: var(--muted); }

.art__tags {
	max-width: 680px;
	margin: 12px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	color: var(--muted);
}
.pill {
	border: 1px solid var(--ink);
	border-radius: 999px;
	padding: 4px 12px;
	font-weight: 500;
	color: var(--ink);
}
.pill:hover { background: var(--ink); color: var(--bg); }

.related { max-width: var(--max); }
.related__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 420px) {
	.related__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
	.related__grid { grid-template-columns: repeat(4, 1fr); }
}
.card--related { display: grid; gap: 10px; align-content: start; }
.card--related .card__body { display: grid; gap: 6px; }
.card--related .labels { margin-bottom: 0; }

/* ---------- Isi artikel (menggantikan CSS blok bawaan) ---------- */
.art__body {
	max-width: 680px;
	margin-inline: auto;
	font-family: var(--serif);
	font-weight: 400;
	font-size: 19px;
	line-height: 1.7;
	overflow-wrap: break-word;
}
.entry-content > * { margin-block: 0 1.1em; }
.entry-content h2,
.entry-content h3 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.25;
	margin-top: 1.6em;
}
.entry-content h2 { font-size: 26px; }
.entry-content h3 { font-size: 22px; }
.entry-content a {
	color: var(--ink);
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--accent-text); }
.entry-content ul,
.entry-content ol { padding-left: 1.3em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: 0.3em; }
.entry-content blockquote {
	margin-inline: 0;
	padding-left: 18px;
	border-left: 3px solid var(--accent);
	font-style: italic;
	color: var(--ink-2);
}
.entry-content figure { margin-inline: 0; }
.entry-content img { display: block; }
.entry-content figcaption,
.entry-content .wp-caption-text,
.entry-content .wp-element-caption {
	margin-top: 8px;
	font-family: var(--sans);
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--muted);
}
.entry-content .aligncenter { margin-inline: auto; }
.entry-content .alignleft { float: left; margin: 0.3em 1.2em 0.8em 0; max-width: 50%; }
.entry-content .alignright { float: right; margin: 0.3em 0 0.8em 1.2em; max-width: 50%; }
.entry-content .wp-block-embed__wrapper { position: relative; }
.entry-content iframe { display: block; width: 100%; }
.entry-content .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
.entry-content .wp-embed-aspect-16-9 iframe { aspect-ratio: 16 / 9; height: auto; }
.entry-content hr { border: 0; border-top: 1px solid var(--line); margin-block: 2em; }
.entry-content::after { content: ""; display: table; clear: both; }

/* Tabel */
.wp-block-table { overflow-x: auto; margin-inline: 0; }
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--sans);
	font-size: 14px;
	line-height: 1.4;
	font-variant-numeric: tabular-nums;
}
.entry-content th,
.entry-content td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}
.entry-content th {
	background: var(--soft);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

/* Halaman Bola */
.bola { max-width: none; }
.bola .wp-block-table { border: 1px solid var(--line); }
.bola table { min-width: 560px; }
.bola th,
.bola td { white-space: nowrap; }

.page-links { font-family: var(--sans); font-size: 14px; margin-top: 16px; }

/* ---------- Iklan ---------- */
.ad {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	align-content: center;
	margin: 0 auto 24px;
	max-width: 100%;
	overflow: hidden;
	text-align: center;
}
.ad__label {
	display: block;
	margin-bottom: 4px;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}
.ad__widget { max-width: 100%; }
.ad--header { min-height: 118px; }
.ad--section { min-height: 268px; margin-bottom: 0; }
.ad--artikel { min-height: 268px; margin-block: 8px 28px; }
@media (min-width: 760px) {
	.ad--header { min-height: 108px; }
}

/* ---------- Footer ---------- */
.ft {
	background: var(--bar);
	color: #cfcfcf;
	padding-block: 36px;
	font-size: 13.5px;
}
.ft__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 28px;
}
.ft__brand p { margin: 10px 0 0; max-width: 30ch; }
.ft__h {
	margin: 0 0 10px;
	font-family: var(--sans);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bar-ink);
}
.ft ul { display: grid; gap: 6px; }
.ft a:hover { color: var(--bar-ink); text-decoration: underline; }
.ft .logo:hover { text-decoration: none; }
.ft__legal {
	margin: 28px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--bar-line);
	font-size: 12px;
	color: #8a8a8a;
}

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