body {
	background: url('/images/Background.webp') no-repeat center top;
	background-size: cover;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", Roboto, sans-serif;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
	border-left: 1px solid;
	border-right: 1px solid;
	border-image: linear-gradient(#fed427, #fe852e) 1;
	background: #303031;
}

.topbar {
	background: #020202;
	color: #ddd;
	font-size: 14px;
	padding: 0 16px;
}

.topbar__date {
	padding: 8px 0;
}

.sitehead {
	background: #303031;
	color: #fff;
	padding: 10px 16px;
}

.sitehead__title {
	margin: 0;
	font-size: 40px;
	font-weight: bold;
}

.sitehead__subtitle {
	margin: 6px 0;
	opacity: 0.9;
	font-weight: bold;
}

.globalnav {
	background: #0f0f0f;
	color: #fff;
	position: relative;
	z-index: 100;
}

.globalnav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-toggle {
	display: none;
}

#topicNav {
	flex: 1 1 auto;
}

#topicNav .nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 45px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#topicNav .nav__item {
	position: relative;
	display: inline-flex;
	align-items: stretch;
}

#topicNav .nav__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 45px;
	padding: 0 16px;
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	background: transparent;
}

#topicNav .nav__link:hover, #topicNav .nav__link:focus-visible {
	background: #FFA500;
	color: #000;
}

#topicNav .nav__caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	font-size: 20px;
	line-height: 1;
	user-select: none;
	cursor: pointer;
}

#topicNav .nav__caret.is-open {
	transform: rotate(180deg);
}

#topicNav .nav__sub {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 250px;
	list-style: none;
	display: none;
	background: #0f0f0f;
	color: #fff;
	z-index: 100;
}

#topicNav .nav__sub.is-open {
	display: block;
}

#topicNav .nav__sub .nav__item {
	display: block;
	margin: 0;
}

#topicNav .nav__sub > .nav__item > .nav__link {
	align-items: center;
	padding-left: 25px;
	color: #fff;
	font-weight: bold;
	background: transparent;
	max-width: 100%;
}

#topicNav .nav__sub > .nav__item:last-child > .nav__link {
	border-bottom: none;
}

#topicNav .nav__sub .nav__link:hover, #topicNav .nav__sub .nav__link:focus-visible {
	background: #FFA500;
	color: #000;
}

#topicNav .nav__sub .nav__sub {
	position: static;
	min-width: 100%;
	background: #0f0f0f;
	padding: 0;
	margin: 0;
	display: none;
}

#topicNav .nav__sub .nav__sub.is-open {
	display: block;
}

#topicNav .nav__sub .nav__sub > .nav__item {
	display: block;
	margin: 0;
}

#topicNav .nav__sub .nav__sub > .nav__item > .nav__link {
	display: flex;
	align-items: center;
	padding-left: 35px;
	color: #fff;
	font-weight: bold;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#topicNav .nav__sub .nav__sub > .nav__item:last-child > .nav__link {
	border-bottom: none;
}

#topicNav .nav__sub .nav__sub > .nav__item > .nav__link:hover, #topicNav .nav__sub .nav__sub > .nav__item > .nav__link:focus-visible {
	background: #FFA500;
	color: #000;
}

#topicNav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
}

.search-toggle:hover, .globalnav.is-search-open .search-toggle {
	background: #FFA500;
	color: #000;
}

.search-toggle .icon {
	width: 25px;
	height: 25px;
}

.search-toggle .icon--close {
	display: none;
}

.globalnav.is-search-open .search-toggle .icon--search {
	display: none;
}

.globalnav.is-search-open .search-toggle .icon--close {
	display: block;
}

.searchform {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	width: 350px;
	display: none;
	z-index: 200;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease;
}

.searchform.is-open {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.searchform .searchform__inner {
	display: flex;
	align-items: center;
	padding: 9px;
	margin: 0;
	max-width: none;
	border-image: none;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	background: #fff;
}

.searchform input[type="search"] {
	flex: 1 1 auto;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #ccc;
	color: #111;
	outline: none;
}

.searchform .btn--primary {
	height: 40px;
	background-color: #FFA500;
	border: 1px solid #ccc;
	color: #000;
	font-weight: bold;
	cursor: pointer;
	padding: 10px 14px;
}

.searchform .btn--primary:hover {
	filter: brightness(-1.07);
}

.btn:hover {
	filter: brightness(1.08);
}

body.is-search-page .category-cover {
	display: none;
}

body.is-search-page .posts-grid {
	grid-template-columns: 1fr;
}

body.is-search-page .post.post--search {
	display: grid;
	grid-template-columns: 275px 1fr;
	gap: 14px;
	align-items: stretch;
	background: #fff;
}

.rekomendasi {
	background: #020202;
	margin-top: 18px;
}

.rekomendasi__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
}

.rekomendasi__badge-wrap {
	display: flex;
	align-items: center;
	gap: 0;
	background-image: linear-gradient(#fed427, #fe852e);
	padding-left: 10px;
}

.dbounce {
	position: relative;
	width: 18px;
	height: 18px;
	color: #FFA500;
}

.dbounce > span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(to right, #77bd1f 0%, #70b921 13%, #70b61f 15%, #67b31d 31%, #44a115 80%, #45a118 81%, #42a018 85%, #3c9c14 91%, #3d9d15 94%, #399911 98%, #3b9b13 100%);
	opacity: 0.9;
	animation: dbounce-scale 1.8s ease-in-out infinite;
}

.dbounce > span:nth-child(2) {
	animation-delay: -.9s;
}

@keyframes dbounce-scale {
	0%, 100% {
		transform: scale(0);
	}

	50% {
		transform: scale(1);
	}
}

.rekomendasi__badge {
	padding: 10px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 0 0 4px #000;
}

.marquee {
	position: relative;
	overflow: hidden;
	min-height: 40px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	background: transparent;
	box-sizing: border-box;
	--marquee-gutter: 0px;
}

.marquee__track {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	will-change: transform;
}

.marquee__track:empty::before {
	content: "Artikel rekomendasi akan muncul di sini…";
	color: #fff;
	opacity: 0.7;
	font-size: 13px;
}

.marquee__track.is-play {
	animation: marquee var(--marquee-duration) linear infinite;
}

.marquee__track:hover {
	animation-play-state: paused;
}

.marquee__row {
	display: flex;
	flex-shrink: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.marquee__item {
	display: flex;
	align-items: center;
	margin-right: 24px;
}

.marquee__row.clone {
	margin-left: -24px;
}

.marquee__thumb {
	width: 40px;
	height: 40px;
}

.marquee__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.marquee__title {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
}

@keyframes marquee {
	from {
		transform: translateX(var(--marquee-leadin));
	}

	to {
		transform: translateX(calc(-1 * var(--marquee-distance)));
	}
}

.grid {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1fr;
	gap: 18px;
	padding: 18px 16px;
}

.panel {
	background: #fff;
	border: 1px solid #e7e7e7;
	overflow: hidden;
}

.panel--highlight {
	background: transparent;
	border: 0;
}

.panel__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.headline {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.headline__bar {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #fed427, #fe852e);
	border-radius: 0;
}

.headline__text {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
}

.slider {
	position: relative;
	background: #fff;
	overflow: hidden;
}

.slider__track {
	display: flex;
	transition: transform 0.4s ease;
}

.slider__track.is-noanim {
	transition: none;
}

.slider__item {
	flex: 0 0 100%;
	position: relative;
}

.slides, .slider__inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.slide.is-active {
	opacity: 1;
}

.slide__media {
	width: 100%;
}

.breadcrumb {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.breadcrumb ol {
	display: flex;
	padding: 0;
	margin: 0;
}

.breadcrumb li {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #bbb;
}

.breadcrumb li + li::before {
	content: " » ";
	margin: 0 8px;
	color: #fff;
}

.breadcrumb li[aria-current="page"] {
	color: #e6e6e6;
	font-weight: 700;
}

.crumb-link {
	background: linear-gradient(90deg, #fed427, #fe852e);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: bold;
	text-decoration: none;
}

.crumb-badge.is-cat {
	background: #bb1919;
}

.crumb-badge.is-sub {
	background: #444;
}

.crumb-badge.is-subsub {
	background: #fd7e14;
}

.slide__caption {
	box-sizing: border-box;
	padding: 10px;
}

.slide__title {
	margin: 0 0 6px;
	font-size: 28px;
}

.slide__title a, .pop__title a, .card__title {
	color: #000;
	text-decoration: none;
	transition: all 0.3s ease;
}

.slide__title a:hover, .pop__title a:hover, .card__title:hover {
	background: linear-gradient(#fed427, #fe852e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.slide__meta {
	font-size: 12px;
	opacity: 0.9;
	margin-bottom: 8px;
}

.slide__cta {
	display: block;
	background: linear-gradient(90deg, #fed427, #fe852e);
	color: #fff;
	padding: 10px 14px;
	text-decoration: none;
	font-weight: bold;
	text-shadow: 0 0 4px #000;
}

.slide__cta:hover {
	filter: brightness(1.08);
}

.slider__controls {
	display: inline-flex;
	gap: 8px;
	align-items: flex-end;
}

.ctrl {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border: 1px solid #ddd;
	background: #fff;
	color: #000;
	font-size: 18px;
	padding-bottom: 5px;
	cursor: pointer;
	border-radius: 0;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.ctrl:hover {
	background: #fed427;
	color: #fff;
	border-color: #fed427;
}

.panel--popular {
	background: none;
	border: 0;
}

.popular {
	list-style: none;
	padding: 10px;
	margin: 0;
	height: 540px;
	gap: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.pop {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 10px;
	background: #fafafa;
	border-bottom: 1px solid #e7e7e7;
}

.pop__thumb {
	width: 100%;
	display: block;
}

.pop__meta {
	justify-content: space-between;
	align-items: start;
	font-size: 14px;
}

.pop__title {
	margin: 8px 0 0;
	font-weight: bold;
	font-size: 14px;
}

.vcontrols {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.vctrl {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border: 1px solid #ddd;
	background: #fff;
	color: #000;
	font-size: 18px;
	cursor: pointer;
	border-radius: 0;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.panel--popular .vctrl:hover {
	background: #fed427;
	color: #fff;
	border-color: #fed427;
}

.panel--sidebar {
	background: transparent;
	border: 0;
	box-shadow: none;
	position: -webkit-sticky;
	position: sticky;
	top: 12px;
}

.widget:last-child, jadwal-box:last-child {
	margin-bottom: 0;
}

.widget-search {
	display: flex;
	align-items: center;
}

.widget--search input[type="search"] {
	flex: 1 1 auto;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #333;
	background: #fff;
	color: #111;
	outline: none;
}

.widget--search .btn--secondary {
	height: 39px;
	border: none;
	background: #FFA500;
	color: #000;
	font-weight: bold;
	cursor: pointer;
	padding: 10px 14px;
}

.widget-search .btn:hover {
	filter: brightness(0.95);
}

.promo {
	position: relative;
	overflow: hidden;
}

.promo__track {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

.promo__track.is-noanim {
	transition: none;
}

.promo__slide {
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo__slide.is-active {
	opacity: 1;
}

.promo__slide img {
	width: 100%;
}

.promo__ctrl {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	font-size: 15px;
	display: flex;
	justify-content: center;
	background: rgba(0,0,0,.6);
	color: #fff;
	border: 0;
	cursor: pointer;
	border-radius: 0;
	z-index: 3;
}

.promo__prev {
	left: 0;
}

.promo__next {
	right: 0;
}

.promo__ctrl:hover {
	background: #fed427;
	color: #fff;
	border-color: #fed427;
}

.promo__dots {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 4;
}

.promo__dot {
	width: 20px;
	height: 4px;
	background: #fff;
	border-radius: 0;
	border: none;
	transition: background 0.3s ease;
}

.promo__dot.is-active {
	background: #fed427;
}

.list {
	margin: 0;
	padding: 12px;
	background: #fff;
	border: 1px solid #e7e7e7;
}

.sidebar-links {
	list-style: none;
	margin: 0;
	font-weight: bold;
}

.sidebar-links li {
	margin-bottom: 10px;
}

.sidebar-links li .icon {
	margin-right: 4px;
	color: #007bff;
}

.sidebar-links a {
	display: inline-block;
	color: #ff6600;
	text-decoration: none;
}

.sidebar-links a:hover, .list--cats a:hover {
	background: linear-gradient(#fed427, #fe852e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.list--cats {
	list-style: none;
	margin: 0;
	padding: 12px;
	background: #fff;
	border: 1px solid #e7e7e7;
}

.list--cats li {
	padding-bottom: 6px;
	background: transparent;
	border: 0;
}

.list--cats li:not(:first-child) {
	padding-top: 8px;
}

.list--cats a {
	display: block;
	text-decoration: none;
	color: #111;
	font-weight: bold;
}

.list--latest {
	list-style: none;
}

.list--latest a {
	display: block;
	text-decoration: none;
	color: #111;
	padding: 6px 0;
}

.list--latest a:hover {
	color: #000;
	text-decoration: underline;
}

.panel--newest {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0 16px 16px;
	overflow: visible;
	position: relative;
}

.cards-wrap {
	padding: 10px;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.cards {
	display: flex;
	gap: 12px;
	overflow: hidden;
	min-height: 0;
}

.card {
	flex: 0 0 auto;
	width: calc((100% - 12px * 4) / 5);
	background: #fff;
	border: 1px solid #e7e7e7;
}

.card__media img {
	display: block;
	width: 100%;
}

.card > a {
	text-decoration: none;
}

.card__title {
	padding: 10px 12px 12px;
	font-size: 14px;
	margin: 0;
}

.footernav {
	background: #020202;
}

.footernav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
	list-style: none;
	padding: 16px;
	margin: 0;
	font-size: 18px;
	border-top: 1px solid;
	border-image: linear-gradient(#fed427, #fe852e) 1;
}

.footernav__list a {
	color: #fff;
	text-decoration: none;
}

.footernav__list a:hover {
	color: #ff6600;
}

.copyright-info {
	text-align: center;
	font-size: 14px;
	color: #fff;
	padding: 0 0 60px;
	text-transform: uppercase;
	background: #303031;
}

.copyright-info::before {
	content: "";
	display: block;
	height: 1px;
	background: linear-gradient(to right, #fed427, #fe852e);
	margin-bottom: 8px;
}

.copyright-info a {
	color: transparent;
	background: #ffbb00;
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold;
	text-decoration: none;
}

.floating-footer {
	position: fixed;
	bottom: 0;
	width: 1500px;
	max-width: 100%;
	background-image: linear-gradient(#fed427, #fe852e);
	z-index: 1000;
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.footer-container {
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 5px;
	text-shadow: 0 0 4px #000;
}

.footer-container a {
	flex: 1;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	padding: 10px;
}

.footer-container a i {
	display: block;
	font-size: 18px;
}

.floating-footer a {
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.floating-footer a:hover, .floating-footer a.active {
	background-color: #000;
}

.back-to-top {
	position: fixed;
	bottom: 100px;
	right: 20px;
	background: #007BFF;
	color: white;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	text-decoration: none;
	transition: opacity 0.3s, transform 0.3s;
	opacity: 0;
	visibility: hidden;
	z-index: 3000;
}

.back-to-top:hover {
	background: #0056b3;
	transform: scale(1.05);
}

body:not(:target) .back-to-top {
	opacity: 1;
	visibility: visible;
}

.category-body {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 340.95px);
	gap: 18px;
	padding: 18px 16px;
}

.category-main {
	display: grid;
	grid-auto-rows: max-content;
	gap: 24px;
}

.category-hero {
	display: grid;
}

.crumb-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 0 0 4px #000;
}

.category-title {
	margin: 0;
	font-size: 35px;
	line-height: 1.5;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}

.category-cover {
	margin: 0;
	display: block;
	width: 100%;
}

.category-cover img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.category-desc {
	margin: 10px 0;
	color: #fff;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}

.posts-area {
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 10px;
}

.post {
	border: 1px solid #e7e7e7;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
}

.pager__list {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pager__item {
	display: contents;
}

.pager__btn {
	min-width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid #2a2a2a;
	background: #1c1c1c;
	color: #eaeaea;
	cursor: pointer;
	font-size: 15px;
	transition: all .18s ease;
}

.pager__btn:hover {
	border-color: #ff6307;
	color: #ff6307;
}

.pager__btn[aria-current="page"] {
	background: #ff6307;
	border-color: #ff6307;
	color: #111;
}

.article-page {
	background: #fff;
	padding: 10px;
	margin-top: 10px;
	text-align: justify;
}

.article-page #articleExcerpt {
	font-style: italic;
}

#post a {
	text-decoration: none;
}

.article-crumbs ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

#articleTitle {
	margin: 0;
	text-align: left;
}

.article-content h2 {
	text-align: left;
	margin: 0 0 9px;
}

.article-content p {
	margin: 0 0 7px;
}

.article-content ol {
	padding: 0 0 0 25px;
}

.article-content ol li p {
	padding-bottom: 15px;
}

.article-content li > p:has(+ ul) {
	margin-bottom: 9px;
	padding-bottom: 0;
}

.article-content ul {
	margin: 0;
	padding: 0 0 10px 25px;
}

.article-content ul li {
	padding-bottom: 8px;
	text-align: left;
}

.article-meta {
	margin: 8px 0 15px;
	font-size: 15px;
}

.article-dek {
	margin: 8px 0 14px;
	font-size: 16px;
	color: #0f172a;
}

#articleImage {
	display: block;
	width: calc(100% + 20px);
	max-width: none;
	margin: 0 -10px;
	height: auto;
}

#imageCaption {
	margin: 10px 0;
	color: #444;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}

.toc {
	display: inline-block;
	max-width: 100%;
	border: 1px solid #e5e7eb;
	background: #fafafa;
	padding: 10px 12px;
	margin: 14px 0;
}

.toc.is-collapsed ul {
	display: none;
}

.toc__head {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: bold;
	cursor: pointer;
	text-transform: uppercase;
}

.toc__toggle {
	margin-left: auto;
	border: 0;
	background: none;
	cursor: pointer;
	padding: 2px 6px;
}

.toc ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.toc > ul > li {
	margin: 6px 0;
	padding-bottom: 0;
}

.toc ul ul {
	margin: 6px 0 0 14px;
	padding-bottom: 0;
}

.toc a {
	text-decoration: none;
	font-size: 14px;
	color: #0f172a;
}

.toc a:hover {
	text-decoration: underline;
}

.ref {
	text-decoration: none;
}

.ref:hover {
	cursor: help;
}

#ref-tooltip {
	position: absolute;
	max-width: 500px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid rgba(0,0,0,.15);
	box-shadow: 0 6px 18px rgba(0,0,0,.12);
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.35;
	z-index: 9999;
	display: none;
}

#reference-list {
	margin: 0 0 0 20px;
	padding: 0;
}

#reference-list li {
	margin: 8px 0;
	text-align: left;
}

#reference-list a {
	word-break: break-word;
	text-decoration: none;
}

#reference-list a:hover {
	text-decoration: underline;
}

.faq-container {
	margin: 0 auto;
}

.faq-item {
	background: #303031;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.faq-item input {
	display: none;
}

.faq-item label {
	display: block;
	padding: 15px 20px;
	background-image: linear-gradient(#fed427, #fe852e);
	color: #000;
	cursor: pointer;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	color: #fff;
	padding: 0 20px;
}

.faq-answer p {
	padding: 15px 0;
	margin: 0;
}

.faq-item input:checked ~ .faq-answer {
	max-height: 300px;
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.article-nav {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.article-nav__col {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.article-nav__label {
	margin-bottom: 10px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: bold;
}

.article-nav__col.is-prev .article-nav__label::before {
	content: "←";
	font-size: 11px;
}

.article-nav__col.is-next .article-nav__label::after {
	content: "→";
	font-size: 11px;
}

.article-nav__col.is-next .article-nav__label {
	text-align: right;
	justify-content: flex-end;
}

.article-nav__link, .readmore__link {
	display: flex;
	align-items: center;
	gap: 10px;
}

.article-nav__col.is-next .article-nav__link {
	margin-left: auto;
	justify-content: flex-end;
}

.article-nav__title:hover, .readmore__title:hover {
	color: #ff6307;
}

.article-nav__thumb, .readmore__thumb {
	width: 60px;
	border-radius: 6px;
}

.article-nav__title, .readmore__title {
	font-size: 14px;
	color: #000;
	font-weight: 400;
}

.readmore__item:last-child {
	padding: 0;
}

.readmore__list {
	display: flex;
	flex-direction: column;
}

.readmore__item {
	border-radius: 6px;
	padding: 0 0 15px;
}

#sidebarLeftMount {
	position: sticky;
	top: 12px;
	height: calc(100vh - 72px);
	overflow: hidden;
}

#sidebarLeftMount .panel--sidebar {
	height: 100%;
	overflow: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
}

#sbPicker.sbpicker {
	position: absolute;
	inset: 0;
	z-index: 9999;
	display: none;
	padding: 12px;
	overflow: hidden;
	background: #000;
}

#sbPicker.sbpicker.is-open {
	display: flex;
	flex-direction: column;
	pointer-events: auto;
}

.sbpicker__search {
	display: flex;
	align-items: center;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.10);
	padding: 10px;
	gap: 8px;
}

.sbpicker__back {
	display: inline-flex;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #fed427;
	font-weight: bold;
}

.sbpicker__backIcon {
	font-size: 30px;
	line-height: 1;
	transform: translateY(-1px);
}

.sbpicker__search input {
	width: 100%;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 15px;
}

.sbpicker__search input:focus, .sbpicker__search input:focus-visible {
	outline: none;
	box-shadow: none;
}

.sbpicker__clear.is-show {
	display: inline-flex;
}

.sbpicker__clear {
	display: none;
	border: 0;
	background: none;
	cursor: pointer;
	color: #fff;
	font-size: 15px;
}

.sbpicker__clear:hover {
	color: #fed427;
}

.sbpicker__title {
	z-index: 9;
	color: #fff;
	font-weight: bold;
	margin: 0;
	padding: 10px 0;
}

.sbpicker__body {
	overflow-x: hidden;
	padding-right: 5px;
}

.sbpicker__body::-webkit-scrollbar {
	width: 8px;
}

.sbpicker__body::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,.12);
	border-radius: 10px;
}

.sbpicker__body::-webkit-scrollbar-track {
	background: transparent;
}

.sbpicker__list {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sbpicker__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	cursor: pointer;
	user-select: none;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.06);
}

.sbpicker__item:hover {
	background: rgba(255,255,255,.07);
	border-color: rgba(255,255,255,.12);
}

.sbpicker__logo {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.sbpicker__text {
	min-width: 0;
}

.sbpicker__name {
	color: #fff;
	font-weight: bold;
	font-size: 12px;
}

.sbpicker__meta {
	color: rgba(255,255,255,.65);
	font-size: 10px;
	margin-top: 2px;
}

#btnLive {
	background: linear-gradient(#fed427, #fe852e);
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	border: none;
	text-shadow: 0 0 4px #000;
	animation: blink 1s infinite;
	cursor: pointer;
}

@keyframes blink {
	0%, 100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.vbtn--cal {
	padding: 0;
}

.vbtn--cal .calSvg {
	width: 35px;
	display: block;
}

.vbtn--cal #calDayText {
	font-size: 8px;
	font-family: Arial, sans-serif;
	fill: #fff;
}

#matchDate {
	position: fixed;
	left: -10000px;
	top: -10000px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.cal-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	pointer-events: none;
	background: transparent;
}

.cal-overlay.is-open {
	display: block;
}

.cal-panel {
	position: fixed;
	width: 300px;
	background: #1f1f1f;
	box-shadow: 0 12px 40px rgba(0,0,0,.6);
	padding: 12px;
	pointer-events: auto;
}

.cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cal-title {
	font-weight: 600;
	color: #fff;
}

.cal-btn {
	width: 34px;
	height: 34px;
	border: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
}

.cal-week {
	display: grid;
	grid-template-columns: repeat(7,1fr);
	gap: 6px;
	margin: 8px 0 10px;
	color: #fff;
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
}

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

.cal-day {
	height: 35px;
	border: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.is-today {
	background: #333;
	border: none;
	border-radius: 100%;
}

.is-selected {
	background: #fff;
	color: #000;
	border-radius: 100%;
}

.is-other {
	opacity: .35;
}

.cal-x {
	display: none;
}

@media (max-width: 768px) {
	.globalnav__inner {
		flex-wrap: wrap;
	}

	#navToggle {
		order: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 45px;
		height: 45px;
		border: 0;
		background: transparent;
		color: #fff;
		cursor: pointer;
	}

	#navToggle .icon {
		width: 30px;
		height: 30px;
	}

	#navToggle .icon--close {
		display: none;
	}

	.globalnav.is-nav-open #navToggle .icon--hamburger {
		display: none;
	}

	.globalnav.is-nav-open #navToggle .icon--close {
		display: block;
	}

	#searchToggle {
		order: 2;
		margin-left: auto;
	}

	#topicNav {
		order: 3;
		flex: 0 0 auto;
		width: auto;
	}

	.globalnav.is-nav-open #topicNav {
		flex: 1 1 100%;
	}

	#topicNav .nav__list {
		display: none;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0;
		margin: 0;
		padding: 8px 0 10px;
	}

	.globalnav.is-nav-open #topicNav .nav__list {
		display: flex;
		padding: 0 8px 0 12px;
	}

	#topicNav .nav__item {
		display: block;
	}

	#topicNav .nav__link {
		display: block;
		position: relative;
		text-align: left;
		height: auto;
		padding: 10px 32px 10px 12px;
		font-size: 16px;
		line-height: 1.35;
		background: transparent;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	#topicNav .nav__caret {
		position: absolute;
		right: 8px;
		top: 15%;
		font-size: 25px;
		transition: transform .2s ease;
	}

	#topicNav .nav__caret[aria-expanded="false"] {
		top: 15%;
	}

	#topicNav .nav__caret[aria-expanded="true"] {
		top: 13%;
	}

	#topicNav > .nav__list > .nav__item:has(.nav__sub .nav__caret[aria-expanded="true"]) > .nav__link + .nav__caret {
		top: 8%;
	}

	#topicNav .nav__sub {
		position: static;
		top: auto;
		left: auto;
		min-width: 0;
		display: none;
		padding: 0;
		background: transparent;
		border: 0;
	}

	#topicNav > .nav__list > .nav__item > .nav__link::after {
		content: none;
	}

	#topicNav > .nav__list > .nav__item:first-child > .nav__link::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 1px;
		background: rgba(255,255,255,.18);
	}

	#topicNav > .nav__list > .nav__item > .nav__sub.is-open::before, #topicNav .nav__sub > .nav__item > .nav__sub.is-open::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		height: 1px;
		background: rgba(255,255,255,.18);
	}

	#topicNav .nav__sub > .nav__item > .nav__link::after {
		content: none;
	}

	#topicNav .nav__sub > .nav__item > .nav__link, #topicNav .nav__sub .nav__sub > .nav__item > .nav__link {
		border-bottom: 0;
	}

	#searchForm {
		position: absolute;
		top: 45px;
		left: 0;
		right: 0;
		width: 100vw;
		max-width: 100vw;
		display: none;
		background: transparent;
		z-index: 300;
		box-sizing: border-box;
	}

	.globalnav.is-search-open #searchForm {
		display: block;
	}

	#searchForm > .container.searchform__inner {
		padding: 9px;
	}

	.search-toggle:hover {
		background: none;
		color: #fff;
	}

	.rekomendasi__inner {
		display: flex;
		flex-direction: column;
	}

	.rekomendasi__badge-wrap {
		justify-content: flex-start;
		height: 44px;
		width: 100%;
		box-sizing: border-box;
	}

	.marquee {
		width: 100%;
		height: 44px;
		text-align: left;
	}

	.marquee__item {
		display: inline-flex;
		align-items: center;
		gap: 10px;
	}

	.marquee__thumb {
		width: 30px;
		height: 30px;
		object-fit: cover;
		border-radius: 3px;
	}

	.marquee__title {
		color: #fff;
		font-size: 14px;
		white-space: nowrap;
	}

	.grid {
		display: flex;
		flex-direction: column;
	}

	.panel--sidebar {
		padding: 18px 15px;
		position: static;
		top: auto;
	}

	#footerNav {
		flex-wrap: nowrap;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 25px;
	}

	#footerNav > li {
		flex: 0 0 33.3%;
		scroll-snap-align: start;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#footerNav > li > a {
		text-align: center;
		padding: 0 4px;
	}

	#footerNav::-webkit-scrollbar {
		height: 2px;
	}

	#footerNav::-webkit-scrollbar-thumb {
		background: #fff;
	}

	.back-to-top {
		bottom: 150px;
	}

	.pop__meta {
		justify-content: initial;
		gap: 8px;
	}

	.pop__meta .crumb-badge.is-sub {
		display: none;
	}

	.card {
		min-width: calc(50% - 10px);
		scroll-snap-align: start;
		overflow: hidden;
	}

	#breadcrumbList {
		display: block;
	}

	#breadcrumbList > li {
		display: inline;
	}

	.category-body {
		display: block;
	}

	.category-main {
		display: block;
	}

	.grid--category .panel--sidebar {
		padding: 18px 0 0;
	}

	.article-meta {
		font-size: 13.5px;
	}

	#articleTitle {
		margin: 8px 0;
		font-size: 20px;
	}

	.article-page h2 {
		font-size: 17px;
	}

	.article-page p, #reference-list li {
		font-size: 15px;
	}

	.article-nav {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.article-nav__label {
		font-size: 14px;
	}

	.article-nav__col.is-next .article-nav__link {
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	#sidebarLeftMount {
		display: none;
	}

	#mobileFilterBar {
		flex: 0 0 100%;
	}

	.panel__content, .panel--highlight {
		overflow: visible;
	}

	.mobile-filter-bar {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		align-items: center;
		padding: 10px 0;
	}

	.mfb-btn {
		flex: 1;
		display: inline-flex;
		padding: 8px 12px;
		background: #2b2b2b;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		cursor: pointer;
		white-space: nowrap;
		align-items: center;
		justify-content: space-between;
		border: 1px solid rgba(255,255,255,.08);
	}

	.mfb-caret {
		font-size: 20px;
		line-height: 1;
		transition: transform .2s ease, color .2s ease;
	}

	.mfb-btn.is-active {
		background: #FFA500;
		color: #000;
		border: none;
	}

	.mfb-btn.is-active .mfb-caret {
		color: #000;
	}

	.mobile-filter-panel {
		display: none;
	}

	.mobile-filter-panel.is-open {
		display: block;
		background: #000;
	}

	.cal-overlay {
		background: rgba(0,0,0,.55);
		display: none;
		align-items: center;
		justify-content: center;
		padding: 18px;
	}

	.cal-overlay.is-open {
		display: flex;
	}

	.cal-panel {
		position: relative;
	}

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

	.cal-x {
		position: absolute;
		top: -50px;
		right: 0;
		width: 36px;
		height: 36px;
		border-radius: 100%;
		background: #1e1e1e;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		line-height: 1;
		border: 1px solid rgba(255,255,255,.15);
		box-shadow: 0 6px 14px rgba(0,0,0,.5);
		z-index: 10;
	}

	.mobile-filter-panel .sbpicker__list {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobile-filter-panel .sbpicker__list[hidden] {
		display: none !important;
	}

	.mobile-filter-panel:not(.is-searching) .sbpicker__list {
		max-height: none;
		overflow: visible;
	}

	.mobile-filter-panel.is-searching .sbpicker__list:not([hidden]) {
		display: block;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		max-height: calc(100vh - var(--stickyTop, 0px) - 220px);
		padding-bottom: 90px;
	}

	.mobile-filter-panel.is-searching {
		overflow: hidden;
	}

	.mobile-filter-panel .sbpicker__search {
		position: sticky;
		top: 0;
		z-index: 5;
		background: #000;
	}
}