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;           
}

.panel__content {
	background: #fff;
	border: 1px solid #e7e7e7;
	margin-top: 10px;
}

.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,
.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;
}

.widget {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: 24px;
}

.widget:last-child {
	margin-bottom: 0; 
}

.widget__title {
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
	color: #fff;
}

.widget__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: 6px;
	background: linear-gradient(90deg, #fed427, #fe852e);
}

.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;
}

.promo__track { 
    position: relative; 
    overflow: hidden;
}

.promo__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .4s ease;
}

.promo__slide.is-active { 
    opacity: 1; 
    position: relative; 
}

.promo__slide img {
	display: block;
	width: 100%;
	height: auto;
}

.promo__ctrl {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	font-size: 15px;
	display: flex;
	align-items: center;
	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 80px;
	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;
}

.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-page h2 {
    text-align: left;
    margin: 0 0 9px;
}

.article-page p {
    margin: 0 0 7px;
}

.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;
}

.toc ul ul {
	margin-top: 6px;
	margin-left: 14px;
}

.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;   
}

@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;
    }
    
	#footerNav{
		flex-wrap: nowrap;
		gap: 12px;
		overflow-x: auto;          
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch; 
	}

	#footerNav > li{
		flex: 0 0 33.3%;
		scroll-snap-align: start;
	}

	#footerNav > li > a{
		display: block;
		text-align: center;
	}

	#footerNav::-webkit-scrollbar { 
	    height: 2px; 
	}
	
	#footerNav::-webkit-scrollbar-thumb {
		background: #fff;
	}
	
	.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;
	}
	
	.posts-grid,
	body.is-search-page .posts-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.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;
    }
}