/*!
Theme Name: haliyora
Theme URI: http://haliyora.id/
Author: masgun/bowo
Author URI: http://haliyora.id/
Description: Template berita dengan Material Design dan React JS
Version: 1.2.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: haliyora
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
# Material Design Base Styles
--------------------------------------------------------------*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #212121;
	background-color: #f5f5f5;
}

a {
	color: #d32f2f;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #b71c1c;
}

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

/*--------------------------------------------------------------
# Material Design Ripple Effect
--------------------------------------------------------------*/
button, .btn, .material-button {
	position: relative;
	overflow: hidden;
}

.ripple {
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.6);
	width: 100px;
	height: 100px;
	animation: ripple-animation 0.6s;
	pointer-events: none;
}

@keyframes ripple-animation {
	from {
		transform: scale(0);
		opacity: 1;
	}
	to {
		transform: scale(4);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Material Design Elevation
--------------------------------------------------------------*/
.material-card,
.widget,
.berita-terbaru-item {
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.material-card:hover,
.widget:hover,
.berita-terbaru-item:hover {
	box-shadow: none;
	transform: none;
}

/*--------------------------------------------------------------
# Widget Styling
--------------------------------------------------------------*/
.widget {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
}

/*--------------------------------------------------------------
# Material Design Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}

.material-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	color: #212121;
}

.material-subtitle {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #757575;
}

.material-body {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #212121;
}

.material-caption {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #757575;
}

/*--------------------------------------------------------------
# Container 1100px
--------------------------------------------------------------*/
.container-1100 {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 12px;
}

/*--------------------------------------------------------------
# Perfect Dark Mode - Material Design
--------------------------------------------------------------*/
/* Dark Mode Transition */
body.dark-mode-transition * {
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f5f5f5;
	border: none;
	cursor: pointer;
	margin-left: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: none;
}

.dark-mode-toggle:hover {
	background-color: #e0e0e0;
	box-shadow: none;
	transform: none;
}

.dark-mode-toggle .material-icons {
	font-size: 20px;
	color: #616161;
	transition: opacity 0.3s ease;
}

.dark-mode-toggle .dark-icon {
	display: none;
}

.dark-mode-toggle.active {
	background-color: #424242;
}

.dark-mode-toggle.active:hover {
	background-color: #616161;
}

.dark-mode-toggle.active .light-icon {
	display: none;
}

.dark-mode-toggle.active .dark-icon {
	display: block;
	color: #FFC107;
}

/* Dark Mode Body */
body.dark-mode {
	background-color: #121212;
	color: #e0e0e0;
}

/* Dark Mode Header */
body.dark-mode .site-header {
	background-color: #1e1e1e;
	border-bottom: 1px solid #2c2c2c;
}

body.dark-mode .header-logo .site-title a {
	color: #ff5252;
}

body.dark-mode .header-search-input {
	background-color: #2c2c2c;
	color: #e0e0e0;
	border-color: #424242;
}

body.dark-mode .header-search-input::placeholder {
	color: #757575;
}

body.dark-mode .header-search-input:focus {
	border-color: #ff5252;
}

body.dark-mode .header-search-button {
	background-color: #ff5252;
}

body.dark-mode .header-search-button:hover {
	background-color: #ff1744;
}

body.dark-mode .social-icon-header {
	color: #9e9e9e;
}

body.dark-mode .social-icon-header:hover {
	color: #e0e0e0;
	background-color: #2c2c2c;
}

/* Dark Mode Navigation */
body.dark-mode .main-navigation {
	background-color: #242424 !important;
	border-bottom: 1px solid #2c2c2c;
}

body.dark-mode .nav-menu > li > a {
	color: #e0e0e0 !important;
}

body.dark-mode .nav-menu > li > a:hover {
	background-color: rgba(255,255,255,0.15) !important;
	color: #ffffff !important;
}

body.dark-mode .nav-menu > li.current-menu-item > a,
body.dark-mode .nav-menu > li.current_page_item > a {
	color: #ff5252 !important;
	background-color: rgba(255,255,255,0.1) !important;
}

body.dark-mode .nav-menu a {
	color: #e0e0e0;
}

body.dark-mode .nav-menu a:hover,
body.dark-mode .nav-menu .current-menu-item > a {
	color: #ff5252;
	background-color: #2c2c2c;
}

/* Dark Mode Breaking News */
body.dark-mode .breaking-news-ticker {
	background-color: #1e1e1e;
	border-top: 1px solid #2c2c2c;
	border-bottom: 1px solid #2c2c2c;
}

body.dark-mode .breaking-news-label {
	background-color: #ff5252;
}

body.dark-mode .breaking-news-item {
	color: #e0e0e0;
}

body.dark-mode .breaking-news-item:hover {
	color: #ff5252;
}

body.dark-mode .breaking-news-separator {
	color: #616161;
}

/* Dark Mode Content Cards */
body.dark-mode .headline-section,
body.dark-mode .rekomendasi-section,
body.dark-mode .berita-terbaru-section,
body.dark-mode .berita-populer-section,
body.dark-mode .viral-section,
body.dark-mode .regional-section {
	background-color: transparent;
}

body.dark-mode .headline-slide,
body.dark-mode .rekomendasi-item,
body.dark-mode .berita-terbaru-item,
body.dark-mode .berita-populer-item,
body.dark-mode .viral-item {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .headline-slide:hover,
body.dark-mode .rekomendasi-item:hover,
body.dark-mode .berita-terbaru-item:hover,
body.dark-mode .berita-populer-item:hover,
body.dark-mode .viral-item:hover {
	background-color: #242424;
	box-shadow: none;
}

/* Dark Mode Titles */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .headline-title a,
body.dark-mode .rekomendasi-item-title a,
body.dark-mode .berita-terbaru-title a,
body.dark-mode .berita-populer-title a,
body.dark-mode .viral-title a {
	color: #e0e0e0;
}

body.dark-mode .headline-title a:hover,
body.dark-mode .rekomendasi-item-title a:hover,
body.dark-mode .berita-terbaru-title a:hover,
body.dark-mode .berita-populer-title a:hover,
body.dark-mode .viral-title a:hover {
	color: #ff5252;
}

/* Dark Mode Meta */
body.dark-mode .headline-date,
body.dark-mode .rekomendasi-date,
body.dark-mode .berita-terbaru-date,
body.dark-mode .berita-populer-date,
body.dark-mode .viral-date {
	color: #9e9e9e;
}

/* Dark Mode Categories */
body.dark-mode .headline-category a,
body.dark-mode .berita-populer-category a {
	background-color: #ff5252 !important;
	color: #ffffff !important;
}

body.dark-mode .berita-terbaru-category,
body.dark-mode .rekomendasi-category,
body.dark-mode .viral-category a {
	color: #ffffff !important;
	background-color: #2c2c2c !important;
}

body.dark-mode .berita-terbaru-category a,
body.dark-mode .rekomendasi-category a {
	color: #ffffff !important;
}

body.dark-mode .headline-category a:hover,
body.dark-mode .berita-populer-category a:hover {
	background-color: #ff1744 !important;
}

body.dark-mode .berita-terbaru-category:hover,
body.dark-mode .rekomendasi-category:hover,
body.dark-mode .viral-category a:hover {
	color: #ff5252 !important;
}

body.dark-mode .berita-terbaru-category a:hover,
body.dark-mode .rekomendasi-category a:hover {
	color: #ff5252 !important;
}

/* Dark Mode Sidebar */
body.dark-mode .widget-area .widget {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .widget-title {
	color: #e0e0e0;
	border-bottom-color: #2c2c2c;
}

body.dark-mode .widget ul li {
	border-bottom-color: #2c2c2c;
}

body.dark-mode .widget ul li a {
	color: #bdbdbd;
}

body.dark-mode .widget ul li a:hover {
	color: #ff5252;
}

/* Dark Mode Footer */
body.dark-mode .site-footer {
	background-color: #1e1e1e;
	border-top: 1px solid #2c2c2c;
	color: #9e9e9e;
}

body.dark-mode .footer-widget-area .widget {
	background-color: transparent;
	border: none;
}

body.dark-mode .footer-widget-area .widget-title {
	color: #e0e0e0;
}

body.dark-mode .footer-widget-area .widget a {
	color: #bdbdbd;
}

body.dark-mode .footer-widget-area .widget a:hover {
	color: #ff5252;
}

body.dark-mode .site-info {
	background-color: #141414;
	border-top: 1px solid #2c2c2c;
	color: #757575;
}

body.dark-mode .site-info a {
	color: #ff5252;
}

/* Dark Mode Buttons */
body.dark-mode button,
body.dark-mode .btn,
body.dark-mode .load-more-button {
	background-color: #2c2c2c;
	color: #e0e0e0;
	border-color: #424242;
}

body.dark-mode button:hover,
body.dark-mode .btn:hover,
body.dark-mode .load-more-button:hover {
	background-color: #424242;
	color: #ffffff;
}

/* Dark Mode Analisis Section */
body.dark-mode .regional-item {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .regional-item:hover {
	background-color: #242424;
	box-shadow: none;
}

body.dark-mode .regional-name {
	color: #e0e0e0;
}

/* Dark Mode Single Post */
body.dark-mode .single-post-article {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .single-post-content {
	color: #bdbdbd;
}

body.dark-mode .single-post-content p {
	color: #bdbdbd;
}

body.dark-mode .single-post-content a {
	color: #ff5252;
}

body.dark-mode .single-post-content a:hover {
	color: #ff1744;
}

/* Dark Mode Comments */
body.dark-mode .comment-list .comment {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .comment-author {
	color: #e0e0e0;
}

body.dark-mode .comment-content {
	color: #bdbdbd;
}

/* Dark Mode Forms */
body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="url"],
body.dark-mode input[type="search"],
body.dark-mode textarea {
	background-color: #2c2c2c;
	color: #e0e0e0;
	border-color: #424242;
}

body.dark-mode input[type="text"]:focus,
body.dark-mode input[type="email"]:focus,
body.dark-mode input[type="url"]:focus,
body.dark-mode input[type="search"]:focus,
body.dark-mode textarea:focus {
	border-color: #ff5252;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
	color: #757575;
}

/* Dark Mode Mobile Menu */
body.dark-mode .mobile-menu-content {
	background-color: #1e1e1e;
}

body.dark-mode .mobile-category-menu-item {
	color: #bdbdbd;
	border-bottom-color: #2c2c2c;
}

body.dark-mode .mobile-category-menu-item:hover,
body.dark-mode .mobile-category-menu-item.active {
	background-color: #2c2c2c;
	color: #ff5252;
}

body.dark-mode .mobile-category-tab {
	color: #bdbdbd;
	background-color: #1e1e1e;
	border-bottom-color: #2c2c2c;
}

body.dark-mode .mobile-category-tab.active {
	color: #ff5252;
	border-bottom-color: #ff5252;
}

/* Dark Mode Overlay */
body.dark-mode .headline-overlay {
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
}

/* Dark Mode Navigation Menu & Sub-Menu */
body.dark-mode .nav-menu .sub-menu {
	background-color: #2c2c2c;
	box-shadow: none;
}

body.dark-mode .nav-menu .sub-menu a {
	color: #e0e0e0;
	border-bottom-color: #424242;
}

body.dark-mode .nav-menu .sub-menu a:hover {
	background-color: #424242;
	color: #ff5252;
}

body.dark-mode .nav-menu > li.current-menu-item > a::after,
body.dark-mode .nav-menu > li.current_page_item > a::after {
	background-color: #ffffff;
}

body.dark-mode .nav-menu > li.current-menu-item > a,
body.dark-mode .nav-menu > li.current_page_item > a {
	background-color: rgba(255,255,255,0.1);
}

/* Dark Mode Breaking News Ticker Gradients */
body.dark-mode .breaking-news-ticker::before {
	background: linear-gradient(to right, #1e1e1e, transparent);
}

body.dark-mode .breaking-news-ticker::after {
	background: linear-gradient(to left, #1e1e1e, transparent);
}

/* Dark Mode Related Posts & Tags */
body.dark-mode .related-item-title-modern {
	color: #e0e0e0;
}

body.dark-mode .related-link:hover .related-item-title-modern {
	color: #ff5252;
}

/* Dark Mode Related Title */
body.dark-mode .related-title {
	color: #e0e0e0 !important;
}

body.dark-mode .related-title .material-icons {
	color: #ff5252 !important;
}

body.dark-mode .single-post-footer {
	border-top-color: #2c2c2c;
}

body.dark-mode .tags-label,
body.dark-mode .share-label {
	color: #e0e0e0;
}

body.dark-mode .tag-link {
	background-color: #2c2c2c;
	color: #e0e0e0;
}

body.dark-mode .tag-link:hover {
	background-color: #ff5252;
	color: #ffffff;
}

body.dark-mode .share-btn {
	background-color: #2c2c2c;
	color: #e0e0e0;
}

body.dark-mode .share-btn:hover {
	box-shadow: none;
}

/* Dark Mode Lightbox */
body.dark-mode .lightbox-modal {
	background-color: rgba(0,0,0,0.95);
}

body.dark-mode .lightbox-caption {
	color: #ffffff;
	background-color: rgba(0,0,0,0.8);
}

body.dark-mode .lightbox-close {
	color: #ffffff;
	background-color: rgba(255,255,255,0.2);
}

body.dark-mode .lightbox-close:hover {
	background-color: rgba(255,255,255,0.3);
}

/*--------------------------------------------------------------
# Main Header
--------------------------------------------------------------*/
.site-header {
	background-color: #fff;
	padding: 20px 0 10px;
	margin-bottom: 0;
	border-bottom: none;
}

.header-main-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 0;
}

.header-logo {
	flex: 0 0 auto;
}

.header-logo .custom-logo-link {
	display: block;
}

.header-logo .custom-logo-link img {
	max-height: 50px;
	width: auto;
	display: block;
}

.header-logo .site-title {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.header-logo .site-title a {
	color: #d32f2f;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}

.header-logo .site-title a:hover {
	opacity: 0.9;
}

.header-search-wrapper {
	flex: 1;
	max-width: 600px;
	margin: 0 auto;
}

.header-search-form {
	display: flex;
	width: 100%;
}

.header-search-input {
	flex: 1;
	padding: 10px 18px;
	border: 2px solid #e0e0e0;
	border-radius: 25px 0 0 25px;
	font-size: 13px;
	outline: none;
	transition: border-color 0.3s;
	font-family: inherit;
}

.header-search-input:focus {
	border-color: #d32f2f;
}

.header-search-input::placeholder {
	color: #999;
	font-size: 13px;
}

.header-search-button {
	padding: 10px 20px;
	background-color: #d32f2f;
	color: #fff;
	border: none;
	border-radius: 0 25px 25px 0;
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	transition: background-color 0.3s;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
}

.header-search-button:hover {
	background-color: #b71c1c;
}

.header-search-button .fa-search {
	font-size: 16px;
}

.header-social {
	flex: 0 0 auto;
}

.social-icons-header {
	display: flex;
	align-items: center;
	gap: 8px;
}

.social-icon-header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #616161;
	text-decoration: none;
	transition: all 0.3s;
	border-radius: 50%;
	padding: 0;
}

.social-icon-header:hover {
	color: #424242;
	background-color: #f5f5f5;
	transform: translateY(-1px);
}

.social-icon-header i {
	font-size: 16px;
	line-height: 1;
}

/* Specific colors for each social media */
.social-icon-header:hover:has(.fa-facebook-f) {
	color: #1877F2;
	background-color: #E7F3FF;
}

.social-icon-header:hover:has(.fa-twitter) {
	color: #1DA1F2;
	background-color: #E8F5FE;
}

.social-icon-header:hover:has(.fa-instagram) {
	color: #E4405F;
	background-color: #FFEEF1;
}

.social-icon-header:hover:has(.fa-youtube) {
	color: #FF0000;
	background-color: #FFE5E5;
}

.iklan-header-area {
	margin: 0;
	padding: 15px 0;
	text-align: center;
}

/*--------------------------------------------------------------
# Mobile Elements - Hidden on Desktop
--------------------------------------------------------------*/
.mobile-menu-toggle {
	display: none !important;
}

.mobile-category-tabs {
	display: none !important;
}

.mobile-bottom-nav {
	display: none !important;
}

.mobile-menu-slide {
	display: none !important;
	visibility: hidden;
}

.mobile-search-form-wrapper {
	display: none !important;
}

.mobile-category-menu {
	display: none !important;
}

.floating-share-mobile {
	display: none !important;
}

/*--------------------------------------------------------------
# Navigation Menu - Full Width Sticky
--------------------------------------------------------------*/
.main-navigation {
	background-color: #5a0000;
	padding: 0;
	margin-top: 5px;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
}

.main-navigation .container-1100 {
	display: flex;
	align-items: center;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px 15px;
	color: #fff;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	align-items: center;
	flex: 1;
}

.nav-menu::-webkit-scrollbar {
	display: none;
}

.nav-menu li {
	margin: 0;
	padding: 0;
	white-space: nowrap;
	position: relative;
}

.nav-menu > li > a {
	display: block;
	padding: 12px 18px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	transition: all 0.3s;
	position: relative;
	line-height: 1.2;
}

.nav-menu > li > a:hover {
	background-color: rgba(255,255,255,0.15);
}

.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #fff;
}

.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
	background-color: rgba(255,255,255,0.1);
}

/* Dropdown menu support */
.nav-menu li.menu-item-has-children > a::after {
	content: 'Ã¢â€“Â¼';
	margin-left: 5px;
	font-size: 10px;
	vertical-align: middle;
}

.nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: none;
	min-width: 200px;
	z-index: 1000;
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-menu li:hover > .sub-menu {
	display: block;
}

.nav-menu .sub-menu li {
	white-space: normal;
}

.nav-menu .sub-menu a {
	padding: 12px 20px;
	color: #212121;
	font-weight: 400;
	text-transform: none;
	border-bottom: 1px solid #e0e0e0;
}

.nav-menu .sub-menu a:hover {
	background-color: #f5f5f5;
	color: #d32f2f;
}

/*--------------------------------------------------------------
# Breaking News Ticker - Modern Clean Design
--------------------------------------------------------------*/
.breaking-news-ticker {
	background-color: #fff;
	color: #212121;
	padding: 12px 0;
	overflow: hidden;
	position: relative;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}


.breaking-news-ticker::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100px;
	background: linear-gradient(to right, #fff, transparent);
	z-index: 5;
	pointer-events: none;
}

.breaking-news-ticker::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100px;
	background: linear-gradient(to left, #fff, transparent);
	z-index: 5;
	pointer-events: none;
}

.breaking-news-ticker .container-1100 {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
}

.breaking-news-label {
	flex: 0 0 auto;
	background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
	padding: 6px 16px;
	white-space: nowrap;
	z-index: 10;
	border-radius: 6px;
	box-shadow: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.breaking-news-label::before {
	content: "● ";
	color: red;
	font-size: 10px;
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.breaking-news-text {
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.breaking-news-content {
	flex: 1;
	overflow: hidden;
	position: relative;
	min-width: 0;
}

.breaking-news-scroll {
	display: inline-flex;
	align-items: center;
	animation: scroll-news 35s linear infinite;
	white-space: nowrap;
}

.breaking-news-scroll:hover {
	animation-play-state: paused;
}

.breaking-news-item {
	color: #212121;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	padding: 4px 15px;
	transition: all 0.3s;
	display: inline-block;
	white-space: nowrap;
	position: relative;
}

.breaking-news-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background-color: #d32f2f;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s;
}

.breaking-news-item:hover {
	color: #d32f2f;
	padding-left: 20px;
	font-weight: 600;
}

.breaking-news-item:hover::before {
	opacity: 1;
}

.breaking-news-separator {
	color: #bdbdbd;
	margin: 0 10px;
	font-size: 8px;
	display: inline-block;
	vertical-align: middle;
}

@keyframes scroll-news {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/*--------------------------------------------------------------
# Content Wrapper
--------------------------------------------------------------*/
.content-wrapper {
	display: flex;
	gap: 30px;
	margin-top: 30px;
}

.site-main {
	flex: 1;
	min-width: 0;
}

.single-post-main {
	background-color: transparent;
}

/*--------------------------------------------------------------
# Single Post Styles
--------------------------------------------------------------*/
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #757575;
	flex-wrap: wrap;
}

.breadcrumb a {
	color: #757575;
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumb a:hover {
	color: #d32f2f;
}

.breadcrumb-separator {
	color: #bdbdbd;
}

.breadcrumb-current {
	color: #212121;
	font-weight: 500;
}

.single-post-article {
	background-color: transparent;
	padding: 0;
	margin-bottom: 40px;
}

.single-post-header {
	margin-bottom: 25px;
}

.single-post-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
	color: #212121;
}

.single-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	font-size: 14px;
	color: #757575;
}

.single-post-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.single-post-meta-item .material-icons {
	font-size: 18px;
	color: #9e9e9e;
}

.single-post-author,
.single-post-date,
.single-post-views {
	font-weight: 500;
}

.single-post-featured-image {
	margin-bottom: 30px;
	width: 100%;
	position: relative;
	left: 0;
	right: 0;
	margin-left: 0;
	margin-right: 0;
}

.featured-image-lightbox {
	display: block;
	position: relative;
	cursor: zoom-in;
	width: 100%;
	margin-bottom: 0;
}

.single-post-thumbnail {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s;
	border-radius: 0;
	object-fit: cover;
}

.featured-image-lightbox:hover .single-post-thumbnail {
	transform: scale(1.02);
}

.featured-image-caption {
	position: relative;
	padding: 10px 0;
	color: #757575;
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.4;
}

.featured-image-caption .material-icons {
	font-size: 14px;
	color: #9e9e9e;
}

.featured-image-caption-line {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
	margin-top: 0;
	margin-bottom: 20px;
}

.single-post-content {
	font-size: 16px;
	line-height: 1.8;
	color: #424242;
	margin-bottom: 40px;
}

.single-post-content p {
	margin-bottom: 20px;
}

.single-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 20px 0;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #212121;
	font-weight: 600;
}

/* Berita Terkait - Simple List */
.single-post-related {
	margin: 40px 0;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.related-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #212121;
}

.related-title .material-icons {
	font-size: 22px;
	color: #d32f2f;
}

.related-list-modern {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.related-item-modern {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e0e0e0;
}

.related-item-modern:last-child {
	border-bottom: none;
}

.related-link {
	display: block;
	padding: 0;
	text-decoration: none;
	transition: all 0.3s;
	background: transparent;
	border: none;
}

.related-link:hover .related-item-title-modern {
	color: #d32f2f;
}

.related-item-title-modern {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	padding: 2px 0;
	color: #212121;
	transition: color 0.3s;
}

/* Tags dan Share */
.single-post-footer {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e0e0e0;
}

.single-post-tags {
	margin-bottom: 25px;
}

.tags-label {
	font-weight: 600;
	color: #212121;
	margin-right: 10px;
	font-size: 14px;
}

.tags-list {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-link {
	padding: 6px 12px;
	background-color: #f5f5f5;
	color: #212121;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s;
	display: inline-block;
}

.tag-link:hover {
	background-color: #d32f2f;
	color: #fff;
	transform: translateY(-1px);
}

.single-post-share {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.share-label {
	font-weight: 600;
	color: #212121;
	font-size: 14px;
}

.share-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
}

.share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f5f5f5;
	color: #212121;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.share-btn:hover {
	transform: none;
	box-shadow: none;
}

.share-fb:hover {
	background-color: #1877f2;
	color: #fff;
}

.share-twitter:hover {
	background-color: #000;
	color: #fff;
}

.share-wa:hover {
	background-color: #25d366;
	color: #fff;
}

.share-telegram:hover {
	background-color: #0088cc;
	color: #fff;
}

.share-copy:hover {
	background-color: #d32f2f;
	color: #fff;
}

.share-btn i {
	font-size: 20px;
	line-height: 1;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.share-btn .fab {
	font-family: "Font Awesome 6 Brands" !important;
	font-weight: 400 !important;
	font-size: 20px !important;
	display: inline-block !important;
}

.share-btn .fas {
	font-family: "Font Awesome 6 Free" !important;
	font-weight: 900 !important;
	font-size: 20px !important;
	display: inline-block !important;
}

/* Lightbox */
.lightbox-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.lightbox-image {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	border-radius: 4px;
}

.lightbox-caption {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 14px;
	text-align: center;
	padding: 10px 20px;
	background-color: rgba(0,0,0,0.7);
	border-radius: 4px;
	max-width: 80%;
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 30px;
	color: #fff;
	font-size: 40px;
	font-weight: 300;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.5);
	transition: all 0.3s;
}

.lightbox-close:hover {
	background-color: rgba(255,255,255,0.2);
	transform: rotate(90deg);
}

/* Single Post Berita Kategori */
.single-post-berita-kategori {
	margin-top: 50px;
}

/* Single Post Berita Terbaru Section */
.single-post-berita-terbaru {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 2px solid #e0e0e0;
}

/* Single Post Related Posts - List Model */
.single-post-related-list {
	margin: 40px 0;
	padding: 0;
}

.single-post-related-list .related-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #212121;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 12px;
}

.single-post-related-list .related-title .material-icons {
	font-size: 26px;
	color: #00a9b8;
}

.single-post-related-list .berita-terbaru-item {
	border-bottom: 1px solid #f5f5f5;
	border-radius: 0;
	padding: 15px 0;
}

.single-post-related-list .berita-terbaru-item:last-child {
	border-bottom: none;
}

.single-post-related-list .berita-terbaru-thumbnail {
	flex: 0 0 180px;
	height: 120px;
}

.single-post-related-list .berita-terbaru-image {
	width: 180px;
	height: 120px;
}

.single-post-related-list .berita-terbaru-title {
	font-size: 18px;
	margin-bottom: 8px;
}

.related-post-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px 0;
	color: #212121;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 42px;
}

.related-post-link:hover .related-post-title {
	color: #d32f2f;
}

.related-post-date {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: #757575;
}

.related-post-date .material-icons {
	font-size: 14px;
}

/*--------------------------------------------------------------
# Modern Comments
--------------------------------------------------------------*/
.modern-comments {
	margin-top: 32px;
	padding: 16px;
	border-top: none;
	border-radius: var(--radius, 0.375rem);
}

.modern-comments.shadcn-card {
	transform: none;
}

.modern-comments.shadcn-card:hover {
	transform: none;
	box-shadow: none;
}

.comments-header {
	margin-bottom: 16px;
}

.comments-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin: 0;
}

.comments-title .material-icons {
	font-size: 18px;
	color: #6b7280;
}

.modern-comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.modern-comment-item {
	margin-bottom: 12px;
	padding: 0;
}

.comment-body {
	display: flex;
	gap: 12px;
	padding: 12px;
	background-color: #f9fafb;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	transition: all 0.2s ease;
}

.comment-body:hover {
	background-color: #f3f4f6;
	border-color: #d1d5db;
}

.comment-avatar {
	flex: 0 0 36px;
}

.comment-avatar-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: none;
}

.comment-content-wrapper {
	flex: 1;
	min-width: 0;
}

.comment-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
	flex-wrap: wrap;
}

.comment-author {
	font-weight: 600;
	color: #1f2937;
	font-style: normal;
	font-size: 13px;
}

.comment-awaiting-moderation {
	color: #f59e0b;
	font-size: 11px;
	font-style: italic;
}

.comment-time {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: #9ca3af;
}

.comment-time .material-icons {
	font-size: 12px;
}

.comment-text {
	font-size: 13px;
	line-height: 1.5;
	color: #4b5563;
	margin-bottom: 8px;
}

.comment-text p {
	margin-bottom: 6px;
}

.comment-actions {
	margin-top: 6px;
}

.comment-actions a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	background-color: #fff;
	color: #6b7280;
	text-decoration: none;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 500;
	border: 1px solid #e5e7eb;
	transition: all 0.2s;
}

.comment-actions a:hover {
	background-color: #dc2626;
	color: #fff;
	border-color: #dc2626;
}

.comment-actions .material-icons {
	font-size: 12px;
}

/* Nested Comments */
.modern-comment-item .children {
	list-style: none;
	margin: 8px 0 0 48px;
	padding: 0;
}

.modern-comment-item .children .comment-body {
	background-color: #fff;
	border-left: 2px solid #dc2626;
}

/* Comment Form */
.comment-respond {
	margin-top: 24px;
	padding: 16px;
	background-color: #f9fafb;
	border-radius: 8px;
	box-shadow: none;
	border: 1px solid #e5e7eb;
}

.comment-reply-title {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 12px;
}

.comment-reply-title .material-icons {
	font-size: 16px;
	color: #6b7280;
}

.comment-notes {
	font-size: 11px;
	color: #9ca3af;
	margin-bottom: 12px;
	line-height: 1.4;
}

.comment-notes .required {
	color: #dc2626;
	font-weight: 600;
}

.comment-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.comment-form label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #6b7280;
	margin-bottom: 4px;
}

.comment-form label .required {
	color: #dc2626;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
	width: 100%;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 13px;
	font-family: inherit;
	transition: all 0.2s;
	background-color: #fff;
	box-sizing: border-box;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment textarea:focus {
	outline: none;
	border-color: #dc2626;
	box-shadow: none;
}

.comment-form-comment textarea {
	resize: vertical;
	min-height: 80px;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 11px;
	color: #6b7280;
	margin-top: 4px;
}

.comment-form-cookies-consent input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
	width: 14px;
	height: 14px;
}

.comment-form-cookies-consent label {
	margin-bottom: 0;
	font-weight: 400;
	cursor: pointer;
	line-height: 1.4;
}

.form-submit {
	margin-top: 8px;
	display: flex;
	justify-content: flex-end;
}

.submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 20px;
	background-color: #dc2626;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}

.submit-btn:hover {
	background-color: #b91c1c;
	transform: none;
	box-shadow: none;
}

.submit-btn .material-icons {
	font-size: 16px;
}

.cancel-comment-reply-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: 12px;
	color: #9ca3af;
	text-decoration: none;
	font-size: 12px;
	transition: color 0.2s;
}

.cancel-comment-reply-link:hover {
	color: #dc2626;
}

.cancel-comment-reply-link .material-icons {
	font-size: 14px;
}

/* No Comments Yet */
.no-comments-yet {
	text-align: center;
	padding: 32px 16px;
	background-color: #f9fafb;
	border-radius: 8px;
	margin-bottom: 16px;
	border: 1px solid #e5e7eb;
}

.no-comments-icon {
	margin-bottom: 12px;
}

.no-comments-icon .material-icons {
	font-size: 40px;
	color: #d1d5db;
}

.no-comments-title {
	font-size: 14px;
	font-weight: 600;
	color: #4b5563;
	margin: 0 0 6px 0;
}

.no-comments-text {
	font-size: 12px;
	color: #9ca3af;
	margin: 0;
}

.no-comments {
	padding: 12px;
	background-color: #f9fafb;
	border-radius: 6px;
	text-align: center;
	color: #9ca3af;
	font-size: 12px;
	border: 1px solid #e5e7eb;
}

/* Comment Navigation */
.comment-navigation {
	margin: 16px 0;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.comment-navigation a {
	padding: 6px 14px;
	background-color: #f3f4f6;
	color: #4b5563;
	text-decoration: none;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.2s;
	border: 1px solid #e5e7eb;
}

.comment-navigation a:hover {
	background-color: #dc2626;
	color: #fff;
	border-color: #dc2626;
}

/*--------------------------------------------------------------
# Category Featured Headline (Single, No Slider)
--------------------------------------------------------------*/
.category-featured-headline {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: none;
	height: 450px;
	margin-bottom: 40px;
}

.category-featured-headline-image {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.category-featured-headline-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.category-featured-headline-image:hover .category-featured-headline-thumbnail {
	transform: scale(1.05);
}

.category-featured-headline-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
	z-index: 1;
}

.category-featured-headline-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	z-index: 2;
	color: #fff;
}

.category-featured-headline-category {
	display: inline-block;
	padding: 6px 14px;
	background-color: #d32f2f;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 4px;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

.category-featured-headline-category a {
	color: #fff;
	text-decoration: none;
}

.category-featured-headline-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 12px;
}

.category-featured-headline-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
	display: block;
}

.category-featured-headline-title a:hover {
	color: #ffeb3b;
}

.category-featured-headline-date {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: rgba(255,255,255,0.9);
	font-weight: 400;
}

.category-featured-headline-date .material-icons {
	font-size: 16px;
}

/*--------------------------------------------------------------
# Headline Section - Slider dengan Overlay
--------------------------------------------------------------*/
.headline-section {
	margin-bottom: 40px;
}

.headline-slider {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: none;
	height: 450px;
}

.headline-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.headline-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	z-index: 1;
}

.headline-slide.active {
	opacity: 1;
	z-index: 2;
}

.headline-image {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: block;
}

.headline-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.headline-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
	z-index: 1;
}

.headline-content-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	z-index: 2;
	color: #fff;
}

.headline-category {
	display: inline-block;
	padding: 6px 14px;
	background-color: #d32f2f;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 4px;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

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

.headline-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 12px;
}

.headline-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
	display: block;
}

.headline-title a:hover {
	color: #ffeb3b;
}

.headline-date {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: rgba(255,255,255,0.9);
	font-weight: 400;
}

.headline-date .material-icons {
	font-size: 16px;
}

/* Slider Navigation */
.headline-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 10;
	pointer-events: none;
}

.headline-nav button {
	background-color: transparent;
	border: none;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	pointer-events: all;
}

.headline-nav button:hover {
	transform: scale(1.15);
}

.headline-nav button .material-icons {
	font-size: 32px;
}

/* Slider Dots */
.headline-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.headline-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #fff;
	background-color: transparent;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}

.headline-dot.active,
.headline-dot:hover {
	background-color: #fff;
	transform: scale(1.2);
}

/*--------------------------------------------------------------
# Rekomendasi Carousel Section
--------------------------------------------------------------*/
.rekomendasi-section {
	margin-bottom: 40px;
}

.rekomendasi-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.rekomendasi-title {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 24px;
	font-weight: 700;
	color: #212121;
	margin: 0;
}

.rekomendasi-title-line {
	width: 5px;
	height: 30px;
	background-color: #d32f2f;
	border-radius: 3px;
	flex-shrink: 0;
}

.rekomendasi-more {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #d32f2f;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
}

.rekomendasi-more:hover {
	color: #b71c1c;
	gap: 8px;
}

.rekomendasi-more .material-icons {
	font-size: 20px;
}

.rekomendasi-carousel {
	position: relative;
	overflow: hidden;
}

.rekomendasi-slides {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 15px;
}

/* Custom Scrollbar for Desktop */
.rekomendasi-slides::-webkit-scrollbar {
	height: 4px;
}

.rekomendasi-slides::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.05);
	border-radius: 10px;
}

.rekomendasi-slides::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.1);
	border-radius: 10px;
}

.rekomendasi-slides::-webkit-scrollbar-thumb:hover {
	background: #d32f2f;
}

@media (max-width: 768px) {
	.rekomendasi-slides::-webkit-scrollbar {
		display: none;
	}
	.rekomendasi-slides {
		scrollbar-width: none;
		padding-bottom: 5px;
	}
}

.rekomendasi-slides.active {
	cursor: grabbing;
}



.rekomendasi-item {
	flex: 0 0 calc(33.333% - 14px);
	min-width: 300px;
	scroll-snap-align: start;
	background-color: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: none;
	transition: none;
}

@media (max-width: 768px) {
    .rekomendasi-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .rekomendasi-item {
        flex: 0 0 85%;
        min-width: auto;
    }
}



.rekomendasi-item:hover {
	box-shadow: none;
}

.rekomendasi-thumbnail {
	position: relative;
	overflow: hidden;
	height: 180px;
}

.rekomendasi-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.rekomendasi-item:hover .rekomendasi-image {
	transform: scale(1.05);
}

.rekomendasi-content {
	padding: 15px;
}

.rekomendasi-category {
	display: inline-block;
	padding: 3px 10px;
	background-color: #f5f5f5;
	color: #d32f2f;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 3px;
	margin-bottom: 10px;
}

.rekomendasi-category a {
	color: #d32f2f;
	text-decoration: none;
}

.rekomendasi-item-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 8px 0;
}

.rekomendasi-item-title a {
	color: #212121;
	text-decoration: none;
	transition: color 0.3s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.rekomendasi-item-title a:hover {
	color: #d32f2f;
}

.rekomendasi-meta {
	font-size: 12px;
	color: #757575;
}

/*--------------------------------------------------------------
# Sidebar - Kolomnis Section
--------------------------------------------------------------*/
.kolomnis-sidebar-widget {
	background: #fff;
	padding: 16px;
	border-radius: 6px;
	border: 1px solid #e5e5e5;
	margin-bottom: 24px;
}

body.dark-mode .kolomnis-sidebar-widget {
	background: transparent;
	border-color: #333;
}

.kolomnis-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 16px;
}

body.dark-mode .kolomnis-header {
	border-bottom-color: #333;
}

.kolomnis-red-bar {
	width: 4px;
	height: 24px;
	background: #dc2626;
	border-radius: 2px;
}

.kolomnis-label {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: #1a1a1a;
}

body.dark-mode .kolomnis-label {
	color: #fff;
}

.kolomnis-list {
	display: flex;
	flex-direction: column;
}

.kolomnis-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}

body.dark-mode .kolomnis-item {
	border-bottom-color: #333;
}

.kolomnis-item:last-child {
	border-bottom: none;
}

.kolomnis-photo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.kolomnis-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kolomnis-info {
	flex: 1;
	min-width: 0;
}

.kolomnis-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 4px 0;
}

.kolomnis-title a {
	text-decoration: none;
	color: #1a1a1a;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
}

body.dark-mode .kolomnis-title a {
	color: #fff;
}

.kolomnis-title a:hover {
	color: #d32f2f;
}

.kolomnis-date {
	font-size: 11px;
	color: #999;
}

.kolomnis-footer {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
	text-align: center;
}

body.dark-mode .kolomnis-footer {
	border-top-color: #333;
}

.kolomnis-more {
	color: #00a9b8;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: color 0.3s;
}

.kolomnis-more:hover {
	color: #008c96;
}

.regional-section {
	margin-bottom: 40px;
}

.regional-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.regional-title {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 24px;
	font-weight: 700;
	color: #212121;
	margin: 0;
}

.regional-title-line {
	width: 5px;
	height: 30px;
	background-color: #d32f2f;
	border-radius: 3px;
	flex-shrink: 0;
}

.regional-carousel {
	position: relative;
	overflow: hidden;
	padding: 0;
}

.regional-slides {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 10px 0 15px 0;
}

/* Show scrollbar with custom style */
.regional-slides::-webkit-scrollbar {
	height: 8px;
}

.regional-slides::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.regional-slides::-webkit-scrollbar-thumb {
	background: #d32f2f;
	border-radius: 10px;
}

.regional-slides::-webkit-scrollbar-thumb:hover {
	background: #b71c1c;
}

.regional-item {
	flex: 0 0 auto;
	width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 15px 10px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: none;
	transition: none;
	text-decoration: none;
	text-align: center;
}

.regional-item:hover {
	transform: none;
	box-shadow: none;
}

.regional-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: none;
	transition: none;
}

.regional-item:hover .regional-icon {
	transform: scale(1.1);
}

.regional-icon i {
	font-size: 24px;
	color: #fff;
}

.regional-name {
	font-size: 12px;
	font-weight: 600;
	color: #212121;
	line-height: 1.3;
}

/*--------------------------------------------------------------
# Berita Terbaru Section - List Style
--------------------------------------------------------------*/
.berita-terbaru-section {
	margin-bottom: 40px;
}

.berita-terbaru-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.berita-terbaru-title {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 24px;
	font-weight: 700;
	color: #212121;
	margin: 0;
}

.berita-terbaru-title-line {
	width: 5px;
	height: 30px;
	background-color: #d32f2f;
	border-radius: 3px;
	flex-shrink: 0;
}

.berita-terbaru-more {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #d32f2f;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
}

.berita-terbaru-more:hover {
	color: #b71c1c;
	gap: 8px;
}

.berita-terbaru-more .material-icons {
	font-size: 20px;
}

.section-title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid #d32f2f;
	color: #212121;
}

.berita-terbaru-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.berita-terbaru-item {
	display: flex;
	gap: 20px;
	background-color: #fff;
	padding: 15px;
	border-radius: 6px;
	box-shadow: none;
	transition: none;
}

.berita-terbaru-item:hover {
	box-shadow: none;
}

.berita-terbaru-thumbnail {
	flex: 0 0 215px;
	overflow: hidden;
	border-radius: 4px;
	height: 161px;
	position: relative;
}

.photo-icon-overlay {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 700;
	backdrop-filter: blur(2px);
	z-index: 2;
	pointer-events: none;
}

.photo-icon-overlay .material-icons {
	font-size: 14px;
}

.video-overlay-mini {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-overlay-mini .material-icons {
    font-size: 20px;
}

.video-stories-home-section.is-post-category {
    padding-top: 10px;
    margin-bottom: 30px;
}

.video-stories-home-section.is-post-category .rekomendasi-carousel {
    margin: 0;
}


.berita-terbaru-image {
	width: 215px;
	height: 161px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.berita-terbaru-item:hover .berita-terbaru-image {
	transform: scale(1.1);
}

.berita-terbaru-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 5px 0;
}

.berita-terbaru-category {
	display: inline-block;
	padding: 4px 12px;
	background-color: #f5f5f5;
	color: #d32f2f;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 3px;
	margin-bottom: 12px;
	align-self: flex-start;
}

.berita-terbaru-category a {
	color: #d32f2f;
	text-decoration: none;
}

.berita-terbaru-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 12px 0;
	flex: 1;
}

.berita-terbaru-title a {
	color: #212121;
	text-decoration: none;
	transition: color 0.3s;
	display: block;
}

.berita-terbaru-title a:hover {
	color: #d32f2f;
}

.berita-terbaru-date {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #757575;
	font-weight: 400;
}

.berita-terbaru-date .material-icons {
	font-size: 16px;
}

/* Load More Button */
.berita-terbaru-load-more-wrapper {
	text-align: center;
	margin-top: 30px;
}

.berita-terbaru-load-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 30px;
	background-color: #d32f2f;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
}

.berita-terbaru-load-more:hover:not(:disabled) {
	background-color: #b71c1c;
	transform: none;
	box-shadow: none;
}

.berita-terbaru-load-more:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.berita-terbaru-load-more .material-icons {
	font-size: 20px;
}

/*--------------------------------------------------------------
# Sidebar Sticky
--------------------------------------------------------------*/
.sidebar-sticky {
	flex: 0 0 320px;
	position: sticky;
	top: 20px;
	align-self: flex-start;
}

.widget {
	background-color: transparent;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 4px;
	box-shadow: none;
}

.widget-title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #d32f2f;
	color: #212121;
}

.trend-widget .widget-title {
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 20px;
}

.trend-widget .widget-title::after {
	content: '';
	flex: 1;
	height: 2px;
	background-color: #d32f2f;
	border-radius: 2px;
}

/* Specific widget instance backgrounds */
#haliyora_category_featured-2 {
	background-color: #ffffff;
	padding: 0;
	border-radius: 4px;
	margin-bottom: 24px;
	border: 1px solid #e5e5e5;
	overflow: hidden;
}

#haliyora_category_featured-2 .widget-title {
	margin: 20px 20px 15px 20px;
}

#haliyora_category_featured-2 .category-featured-content {
	gap: 0;
}

#haliyora_category_featured-2 .category-featured-main {
	border-radius: 0;
}

#haliyora_category_featured-2 .category-featured-list {
	padding: 10px 20px 20px 20px;
}

body.dark-mode #haliyora_category_featured-2 {
	background-color: #1a1a1a;
	border-color: #333333;
}

body.dark-mode #haliyora_category_featured-2 .category-featured-item-title a {
	color: #ffffff;
}

body.dark-mode #haliyora_category_featured-2 .category-featured-item {
	border-bottom-color: #333333;
}

body.dark-mode #haliyora_category_featured-2 .category-featured-item-date {
	color: #999999;
}

body.dark-mode #haliyora_category_featured-2 .widget-title {
	color: #ffffff;
}

/*--------------------------------------------------------------
# Category Featured Widget
--------------------------------------------------------------*/
.category-featured-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.category-featured-main {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.category-featured-image-link {
	display: block;
	position: relative;
	overflow: hidden;
}

.category-featured-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.category-featured-image-link:hover .category-featured-image {
	transform: scale(1.1);
}

.category-featured-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	pointer-events: none;
}

.category-featured-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 2;
}

.category-featured-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.category-featured-title a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s;
	display: block;
}

.category-featured-title a:hover {
	opacity: 0.9;
}

.category-featured-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.category-featured-item {
	padding: 10px 0;
	border-bottom: 1px solid #e0e0e0;
}

.category-featured-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.category-featured-item-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.category-featured-item-title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 5px 0;
}

.category-featured-item-title a {
	color: #212121;
	text-decoration: none;
	transition: color 0.3s;
	display: block;
}

.category-featured-item-title a:hover {
	color: #d32f2f;
}

.category-featured-item-date {
	font-size: 12px;
	color: #757575;
}

.iklan-sidebar-widget {
	margin-bottom: 20px;
	text-align: center;
}

/*--------------------------------------------------------------
# Tag Cloud Widget - List dengan #
--------------------------------------------------------------*/
.widget_tag_cloud .tagcloud,
.widget_tag_cloud ul {
	list-style: none;
	margin: 0;
	padding: 0;
		display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
}

.widget_tag_cloud .tagcloud a,
.widget_tag_cloud ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.widget_tag_cloud .tagcloud a {
	padding: 5px 10px;
	background-color: #f5f5f5;
	color: #212121;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px !important;
	font-weight: 500;
	transition: all 0.3s;
	display: inline-block;
	line-height: 1.3;
}

.widget_tag_cloud .tagcloud a:hover {
	background-color: #d32f2f;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: none;
}

.widget_tag_cloud ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
}

.widget_tag_cloud ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget_tag_cloud ul li a {
	padding: 5px 10px;
	background-color: #f5f5f5;
	color: #212121;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px !important;
	font-weight: 500;
	transition: all 0.3s;
	display: inline-block;
	line-height: 1.3;
}

.widget_tag_cloud ul li a:hover {
	background-color: #d32f2f;
	color: #fff;
	transform: none;
	box-shadow: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background-color: #212121;
	color: #fff;
	padding: 40px 0 20px;
	margin-top: 60px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
}

.footer-left {
	flex: 1;
}

.footer-site-title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
}

.footer-site-title a {
	color: #fff;
	text-decoration: none;
}

.footer-info {
	font-size: 14px;
	line-height: 1.6;
	color: #bdbdbd;
}

.footer-right {
	flex: 0 0 auto;
}

.social-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #424242;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s;
}

.social-link:hover {
	background-color: #d32f2f;
}

.social-link .material-icons {
	font-size: 20px;
}

.social-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #424242;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s;
}

.social-link:hover {
	background-color: #d32f2f;
}

.social-link .material-icons {
	font-size: 20px;
}

.footer-bottom {
	padding-top: 20px;
	text-align: center;
}

.copyright {
	font-size: 14px;
	color: #bdbdbd;
}

/* Social Media with Font Awesome */
.social-link i {
	font-size: 18px;
}

/* Footer Menu */
.footer-navigation {
	display: flex;
	justify-content: center;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	justify-content: center;
	align-items: center;
}

.footer-menu li {
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: #bdbdbd;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	transition: color 0.3s;
}

.footer-menu a:hover {
	color: #fff;
}

.footer-menu-wrapper {
	margin: 30px 0;
	padding: 25px 0;
	border-bottom: 1px solid #424242;
}

@media (max-width: 768px) {
	.footer-menu-wrapper {
		margin: 20px 0;
		padding: 15px 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		width: 100%;
	}
	
	.footer-menu-wrapper::-webkit-scrollbar {
		display: none;
	}
	
	.footer-navigation,
	.footer-navigation #menu-footer-menu,
	.footer-navigation .footer-menu {
		display: block !important;
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
	}
	
	.footer-menu,
	#menu-footer-menu {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		gap: 25px !important;
		padding: 0 20px !important;
		margin: 0 !important;
		list-style: none !important;
	}
	
	.footer-menu li,
	#menu-footer-menu li {
		white-space: nowrap !important;
		flex: 0 0 auto !important;
		display: inline-block !important;
	}
}

/*--------------------------------------------------------------
# Chat Model Comments
--------------------------------------------------------------*/
.chat-model-comments {
	padding: 0 !important;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	max-height: 800px;
	background: #fff;
	margin-top: 50px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.chat-model-comments .comments-header {
	padding: 15px 20px;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.chat-model-comments .chat-container {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	background: #f1f5f9;
	display: flex;
	flex-direction: column;
}

.chat-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.chat-item {
	display: flex;
	flex-direction: column;
	max-width: 85%;
}

.chat-bubble-wrapper {
	display: flex;
	gap: 10px;
	align-items: flex-end;
}

.chat-avatar {
	flex-shrink: 0;
}

.chat-avatar-img {
	border-radius: 50%;
	width: 32px;
	height: 32px;
}

.chat-bubble-content {
	background: #fff;
	padding: 10px 14px;
	border-radius: 18px 18px 18px 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	position: relative;
}

.chat-meta {
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.chat-author-name {
	font-size: 12px;
	font-weight: 700;
	color: #475569;
}

.chat-author-badge {
	background: #00a9b8;
	color: #fff;
	font-size: 9px;
	padding: 1px 6px;
	border-radius: 10px;
	font-weight: 600;
}

.chat-text {
	font-size: 14px;
	line-height: 1.5;
	color: #1e293b;
}

.chat-footer {
	margin-top: 4px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}

.chat-time {
	font-size: 10px;
	color: #94a3b8;
}

.chat-item .comment-reply-link {
	font-size: 10px;
	color: #00a9b8;
	text-decoration: none;
	font-weight: 600;
}

/* Chat Me Styles */
.chat-me {
	align-self: flex-end;
}

.chat-me .chat-bubble-wrapper {
	flex-direction: row-reverse;
}

.chat-me .chat-bubble-content {
	background: #00a9b8 !important;
	color: #fff !important;
	border-radius: 18px 18px 4px 18px;
}

.chat-me .chat-text,
.chat-me .chat-author-name,
.chat-me .chat-time {
	color: #fff !important;
}

.chat-me .chat-meta {
	justify-content: flex-end;
}

.chat-me .comment-reply-link {
	color: rgba(255,255,255,0.8);
}

/* Chat Input Styles */
.chat-form {
	padding: 15px 20px;
	background: #fff;
	border-top: 1px solid #e2e8f0;
	display: flex !important;
	align-items: flex-end !important;
	gap: 12px;
}

.chat-input-wrapper {
	flex: 1;
}

.chat-input-field {
	width: 100%;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 10px 18px;
	font-size: 14px;
	resize: none;
	max-height: 100px;
	background: #f8fafc;
	transition: all 0.2s;
}

.chat-input-field:focus {
	outline: none;
	border-color: #00a9b8;
	background: #fff;
}

.chat-submit-field {
	flex-shrink: 0;
}

.chat-send-btn {
	background: #00a9b8;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s;
}

.chat-send-btn:hover {
	transform: scale(1.1);
	background: #008c99;
}

/* Auth Prompt Styles */
.chat-login-prompt {
	padding: 15px 20px;
	background: #fff;
	border-top: 1px solid #e2e8f0;
	cursor: pointer;
	position: relative;
}

.chat-input-placeholder {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 10px 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #94a3b8;
	font-size: 14px;
}

.chat-overlay-prompt {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.chat-login-prompt:hover .chat-overlay-prompt {
	opacity: 1;
}

.chat-overlay-prompt p {
	margin: 0;
	color: #1e293b;
	font-size: 14px;
}

/* Auth Popup Styles */
.auth-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.auth-popup.active {
	opacity: 1;
	visibility: visible;
}

.auth-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(4px);
}

.auth-popup-content {
	position: relative;
	background: #fff;
	width: 90%;
	max-width: 400px;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
	z-index: 10;
	transform: translateY(20px);
	transition: all 0.3s;
}

.auth-popup.active .auth-popup-content {
	transform: translateY(0);
}

.auth-popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
}

.auth-tabs {
	display: flex;
	gap: 20px;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 25px;
}

.auth-tab {
	background: none;
	border: none;
	padding: 10px 0;
	font-weight: 600;
	color: #94a3b8;
	cursor: pointer;
	position: relative;
}

.auth-tab.active {
	color: #00a9b8;
}

.auth-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: #00a9b8;
}

.auth-form-container {
	display: none;
}

.auth-form-container.active {
	display: block;
}

.auth-form-container h3 {
	margin: 0 0 10px 0;
	font-size: 20px;
	color: #1e293b;
}

.auth-form-container p {
	color: #64748b;
	font-size: 14px;
	margin-bottom: 20px;
}

.auth-field {
	margin-bottom: 15px;
}

.auth-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #475569;
}

.auth-footer {
	margin-top: 20px;
	text-align: center;
	font-size: 13px !important;
}

.auth-footer a {
	color: #00a9b8;
	text-decoration: none;
	font-weight: 600;
}

.reg-pass-note {
	font-size: 12px !important;
	font-style: italic;
	margin-top: -10px;
	margin-bottom: 15px !important;
}

.auth-popup-content .shadcn-btn-primary.full-width {
	background: linear-gradient(135deg, #00a9b8 0%, #008c99 100%);
	padding: 14px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	box-shadow: 0 4px 12px rgba(0, 169, 184, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-popup-content .shadcn-btn-primary.full-width:hover {
	background: linear-gradient(135deg, #00c2d1 0%, #00a9b8 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 169, 184, 0.3);
}

/* Override WP Login Form Styles */
#loginform {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

#loginform label {
	font-size: 13px;
	font-weight: 600;
	color: #475569;
}

#loginform input[type="text"],
#loginform input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-top: 6px;
}

#loginform .forgetmenot {
	font-size: 12px;
	color: #64748b;
}

#loginform .submit input,
#auth-login-submit {
	width: 100%;
	background: linear-gradient(135deg, #00a9b8 0%, #008c99 100%);
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(0, 169, 184, 0.2);
	margin-top: 10px;
	display: block;
	text-align: center;
}

#loginform .submit input:hover,
#auth-login-submit:hover {
	background: linear-gradient(135deg, #00c2d1 0%, #00a9b8 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 169, 184, 0.3);
}

#loginform .submit input:active,
#auth-login-submit:active {
	transform: translateY(0);
}

/* Chat Thread Spacing */
.comment-list .children {
	list-style: none;
	padding-left: 40px;
	margin-top: 10px;
	border-left: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
	.chat-item {
		max-width: 92%;
	}
	
	.chat-model-comments {
		max-height: 500px;
	}
}

/*--------------------------------------------------------------
# Post Navigation - Detikcom Style
--------------------------------------------------------------*/
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 40px 0;
	padding: 30px 0;
	border-top: 2px solid #e0e0e0;
	border-bottom: 2px solid #e0e0e0;
}

.post-nav-item {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Previous Post - Align Left */
.post-nav-prev {
	align-items: flex-start;
}

/* Next Post - Align Right */
.post-nav-next {
	align-items: flex-end;
}

.post-nav-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #757575;
	letter-spacing: 0.5px;
}

.post-nav-label i {
	font-size: 12px;
	color: #757575;
}

.post-nav-link {
	display: block;
	text-decoration: none;
	width: 100%;
	transition: all 0.3s;
}

.post-nav-link:hover {
	transform: translateY(-2px);
}

.post-nav-content {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	background-color: #fff;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s;
	box-shadow: none;
}

.post-nav-link:hover .post-nav-content {
	border-color: #d32f2f;
	box-shadow: none;
}

/* Thumbnail */
.post-nav-thumbnail {
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 6px;
	background-color: #f5f5f5;
}

.post-nav-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.post-nav-link:hover .post-nav-thumbnail img {
	transform: scale(1.1);
}

/* Text Content */
.post-nav-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.post-nav-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: #212121;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.3s;
}

.post-nav-link:hover .post-nav-title {
	color: #d32f2f;
}

.post-nav-category {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #d32f2f;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	background-color: rgba(211, 47, 47, 0.1);
	border-radius: 4px;
	align-self: flex-start;
}

/* Adjust alignment for next post */
.post-nav-next .post-nav-content {
	flex-direction: row-reverse;
}

.post-nav-next .post-nav-text {
	align-items: flex-end;
	text-align: right;
}

.post-nav-next .post-nav-category {
	align-self: flex-end;
}

/*--------------------------------------------------------------
# Page Links - Article Pagination (1/2/3...)
--------------------------------------------------------------*/
.page-links {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 30px 0;
	padding: 20px 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	font-size: 14px;
	color: #757575;
	font-weight: 600;
}

.page-links-label {
	font-size: 14px;
	font-weight: 600;
	color: #757575;
	margin-right: 5px;
}

.page-links a,
.page-links > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	color: #212121;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s;
	box-shadow: none;
}

.page-links a:hover {
	background-color: #d32f2f;
	border-color: #d32f2f;
	color: #fff;
	box-shadow: none;
	transform: none;
}

/* Current page */
.page-links > span:not(:first-child) {
	background-color: #d32f2f;
	border-color: #d32f2f;
	color: #fff;
	box-shadow: none;
}

/*--------------------------------------------------------------
# Trending Page
--------------------------------------------------------------*/
.trending-page-wrapper {
	padding: 40px 0;
	background-color: #f5f5f5;
	min-height: calc(100vh - 200px);
}

.trending-page-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 30px 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: none;
}

.trending-page-title {
	font-size: 32px;
	font-weight: 700;
	color: #212121;
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.trending-page-title .material-icons {
	font-size: 36px;
	color: #d32f2f;
}

.trending-page-subtitle {
	font-size: 16px;
	color: #757575;
	margin: 0;
}

/* Trending List */
.trending-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.trending-item {
	display: flex;
	gap: 20px;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: none;
	transition: none;
	position: relative;
}

.trending-item:hover {
	box-shadow: none;
	transform: none;
}

/* Rank Number */
.trending-rank {
	flex: 0 0 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rank-number {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
	border-radius: 12px;
	box-shadow: none;
}

/* Top 3 special colors */
.trending-item:nth-child(1) .rank-number {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	box-shadow: none;
	color: #212121;
}

.trending-item:nth-child(2) .rank-number {
	background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
	box-shadow: none;
	color: #212121;
}

.trending-item:nth-child(3) .rank-number {
	background: linear-gradient(135deg, #CD7F32 0%, #B8732D 100%);
	box-shadow: none;
	color: #fff;
}

/* Thumbnail */
.trending-thumbnail {
	flex: 0 0 200px;
	width: 200px;
	height: 150px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f5f5f5;
}

.trending-thumbnail a {
	display: block;
	width: 100%;
	height: 100%;
}

.trending-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.trending-item:hover .trending-image {
	transform: scale(1.1);
}

/* Content */
.trending-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.trending-category {
	display: inline-block;
	align-self: flex-start;
}

.trending-category a {
	font-size: 11px;
	font-weight: 600;
	color: #d32f2f;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	background-color: rgba(211, 47, 47, 0.1);
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s;
}

.trending-category a:hover {
	background-color: #d32f2f;
	color: #fff;
}

.trending-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.trending-title a {
	color: #212121;
	text-decoration: none;
	transition: color 0.3s;
}

.trending-title a:hover {
	color: #d32f2f;
}

.trending-excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: #757575;
}

/* Meta Info */
.trending-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: auto;
}

.trending-views,
.trending-sentiment,
.trending-date {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #757575;
}

.trending-views i {
	color: #2196F3;
	font-size: 14px;
}

.trending-date i {
	color: #9e9e9e;
	font-size: 14px;
}

/* Sentiment Colors */
.trending-sentiment {
	padding: 4px 10px;
	border-radius: 4px;
	font-weight: 600;
}

.sentiment-positive {
	background-color: rgba(76, 175, 80, 0.1);
	color: #4CAF50;
}

.sentiment-positive i {
	color: #4CAF50;
}

.sentiment-neutral {
	background-color: rgba(158, 158, 158, 0.1);
	color: #9e9e9e;
}

.sentiment-neutral i {
	color: #9e9e9e;
}

.sentiment-negative {
	background-color: rgba(244, 67, 54, 0.1);
	color: #F44336;
}

.sentiment-negative i {
	color: #F44336;
}

.no-trending {
	text-align: center;
	padding: 60px 20px;
	background-color: #fff;
	border-radius: 8px;
	color: #757575;
	font-size: 16px;
}

/*--------------------------------------------------------------
# Region Popup
--------------------------------------------------------------*/
.region-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.region-popup.active {
	display: block;
	opacity: 1;
}

.region-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.region-popup-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	max-height: 80vh;
	background-color: #fff;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.region-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px 15px;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.region-popup-header h3 {
	font-size: 20px;
	font-weight: 700;
	color: #212121;
	margin: 0;
}

.region-popup-close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
}

.region-popup-close:hover {
	background-color: #e0e0e0;
}

.region-popup-close .material-icons {
	font-size: 20px;
	color: #757575;
}

/* Search */
.region-search {
	position: relative;
	padding: 15px 20px;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.region-search-input {
	width: 100%;
	padding: 12px 45px 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 25px;
	font-size: 14px;
	background-color: #f5f5f5;
	outline: none;
	transition: all 0.3s;
}

.region-search-input:focus {
	background-color: #fff;
	border-color: #d32f2f;
}

.region-search-icon {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	color: #757575;
	font-size: 20px;
}

/* Region Grid */
.region-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	padding: 20px;
	overflow-y: auto;
	max-height: calc(80vh - 140px);
}

.region-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.region-item:hover {
	background-color: #fff;
	border-color: #d32f2f;
	transform: translateY(-2px);
	box-shadow: none;
}

.region-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: none;
}

.region-icon i {
	font-size: 24px;
	color: #fff;
}

.region-name {
	font-size: 13px;
	font-weight: 600;
	color: #212121;
	text-align: center;
	line-height: 1.3;
}

/*--------------------------------------------------------------
# Search Page Desktop
--------------------------------------------------------------*/
/* Page Header */
.page-header {
	margin-bottom: 25px;
}

.page-title {
	font-size: 28px;
	font-weight: 400;
	color: #212121;
	margin: 0 0 10px 0;
}

.page-title span {
	color: #d32f2f;
	font-weight: 500;
}

.search-results-info {
	font-size: 14px;
	color: #70757a;
	line-height: 1.5;
	margin: 0;
}

/* Search Page Form - Google Style Desktop */
.search-page-form-wrapper {
	margin: 0 0 30px 0;
	padding: 0;
}

.search-page-form {
	display: flex;
	gap: 12px;
	align-items: center;
	max-width: 600px;
	width: 100%;
}

.search-page-input {
	flex: 1;
	padding: 14px 20px;
	border: 1px solid #dfe1e5;
	border-radius: 24px;
	font-size: 16px;
	outline: none;
	transition: all 0.3s;
	background-color: #fff;
	box-shadow: none;
}

.search-page-input:focus {
	border-color: transparent;
	box-shadow: none;
}

.search-page-input:hover {
	box-shadow: none;
}

.search-page-button {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #d32f2f;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	flex-shrink: 0;
	box-shadow: none;
}

.search-page-button:hover {
	background-color: #b71c1c;
	box-shadow: none;
	transform: none;
}

.search-page-button .material-icons {
	font-size: 26px;
}

/* Search Results Container */
.search-results {
	margin: 0;
	padding: 0;
}

/* Search Result Item - Google Style Desktop */
.search-result-item {
	margin-bottom: 32px;
	padding-bottom: 0;
	border-bottom: none;
}

.search-result-item:last-child {
	margin-bottom: 40px;
}

/* Search Result Layout */
.search-result-wrapper {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

/* Thumbnail - 112x112 */
.search-result-thumbnail {
	flex: 0 0 112px;
	width: 112px;
	height: 112px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f5f5f5;
}

.search-result-thumbnail a {
	display: block;
	width: 100%;
	height: 100%;
}

.search-result-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.search-result-thumbnail:hover .search-result-image {
	transform: scale(1.05);
}

/* Content */
.search-result-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* Title - Google Style */
.search-result-title {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	margin: 0;
	padding: 0;
}

.search-result-title a {
	color: #1a0dab;
	text-decoration: none;
	display: inline-block;
	transition: color 0.2s;
}

.search-result-title a:hover {
	text-decoration: underline;
}

.search-result-title a:visited {
	color: #681da8;
}

/* URL - Google Style */
.search-result-url {
	font-size: 14px;
	color: #006621;
	line-height: 1.3;
	margin: 0;
	word-break: break-all;
	font-weight: 400;
}

/* Excerpt - Google Style */
.search-result-excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: #4d5156;
	margin: 4px 0 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Meta */
.search-result-meta {
	font-size: 13px;
	color: #70757a;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
}

.search-result-meta .material-icons {
	font-size: 16px;
	color: #70757a;
}

/* Search Page Pagination */
.search-results .berita-terbaru-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 50px;
	margin-bottom: 30px;
	flex-wrap: wrap;
	padding: 20px 0;
}

.search-results .berita-terbaru-pagination a,
.search-results .berita-terbaru-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	background-color: #fff;
	color: #5f6368;
	text-decoration: none;
	border-radius: 50%;
	box-shadow: none;
	transition: all 0.2s;
	min-width: 44px;
	height: 44px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
}

.search-results .berita-terbaru-pagination a:hover {
	background-color: #f8f9fa;
	box-shadow: none;
	transform: none;
	border-color: #dadce0;
}

.search-results .berita-terbaru-pagination .current {
	background-color: #d32f2f;
	color: #fff;
	box-shadow: none;
	border-color: #d32f2f;
}

.search-results .berita-terbaru-pagination .prev,
.search-results .berita-terbaru-pagination .next {
	min-width: 44px;
}

.search-results .berita-terbaru-pagination .dots {
	background: transparent;
	box-shadow: none;
	pointer-events: none;
	color: #5f6368;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination,
.berita-terbaru-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span,
.berita-terbaru-pagination a,
.berita-terbaru-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	background-color: #fff;
	color: #212121;
	text-decoration: none;
	border-radius: 4px;
	box-shadow: none;
	transition: all 0.3s;
	min-width: 40px;
	font-size: 14px;
	font-weight: 500;
}

.pagination a:hover,
.berita-terbaru-pagination a:hover {
	background-color: #d32f2f;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: none;
}

.pagination .current,
.berita-terbaru-pagination .current {
	background-color: #d32f2f;
	color: #fff;
}

.pagination .material-icons,
.berita-terbaru-pagination .material-icons {
	font-size: 20px;
	line-height: 1;
}

/* Dark Mode Pagination */
body.dark-mode .page-links {
	border-top-color: #2c2c2c;
	border-bottom-color: #2c2c2c;
	color: #9e9e9e;
}

body.dark-mode .page-links a,
body.dark-mode .page-links > span {
	background-color: #2c2c2c;
	border-color: #424242;
	color: #e0e0e0;
}

body.dark-mode .page-links a:hover {
	background-color: #ff5252;
	border-color: #ff5252;
	color: #ffffff;
	box-shadow: none;
}

body.dark-mode .page-links > span:not(:first-child) {
	background-color: #ff5252;
	border-color: #ff5252;
	color: #ffffff;
	box-shadow: none;
}

/* Dark Mode Pagination - Search Results */
body.dark-mode .search-results .berita-terbaru-pagination a,
body.dark-mode .search-results .berita-terbaru-pagination span {
	background-color: #2c2c2c;
	border-color: #424242;
	color: #e0e0e0;
}

body.dark-mode .search-results .berita-terbaru-pagination a:hover {
	background-color: #ff5252;
	border-color: #ff5252;
	color: #ffffff;
}

body.dark-mode .search-results .berita-terbaru-pagination .current {
	background-color: #ff5252;
	border-color: #ff5252;
	color: #ffffff;
}

/* Dark Mode General Pagination */
body.dark-mode .pagination a,
body.dark-mode .pagination span,
body.dark-mode .berita-terbaru-pagination a,
body.dark-mode .berita-terbaru-pagination span {
	background-color: #2c2c2c;
	color: #e0e0e0;
}

body.dark-mode .pagination a:hover,
body.dark-mode .berita-terbaru-pagination a:hover {
	background-color: #ff5252;
	color: #ffffff;
	box-shadow: none;
}

body.dark-mode .pagination .current,
body.dark-mode .berita-terbaru-pagination .current {
	background-color: #ff5252;
	color: #ffffff;
}

/* Dark Mode Trending Page */
body.dark-mode .trending-page-wrapper {
	background-color: #121212;
}

body.dark-mode .trending-page-header {
	background-color: #1e1e1e;
	box-shadow: none;
}

body.dark-mode .trending-page-title {
	color: #e0e0e0;
}

body.dark-mode .trending-page-title .material-icons {
	color: #ff5252;
}

body.dark-mode .trending-page-subtitle {
	color: #9e9e9e;
}

body.dark-mode .trending-item {
	background-color: #1e1e1e;
	box-shadow: none;
}

body.dark-mode .trending-item:hover {
	box-shadow: none;
}

/* Dark Mode Search Page */
body.dark-mode .search-page-form-wrapper {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .search-page-input {
	background-color: #2c2c2c;
	border-color: #424242;
	color: #e0e0e0;
}

body.dark-mode .search-page-input:focus {
	border-color: #ff5252;
}

body.dark-mode .search-page-button {
	background-color: #ff5252;
	color: #ffffff;
}

body.dark-mode .search-page-button:hover {
	background-color: #ff1744;
}

/* Dark Mode Archive Page */
body.dark-mode .archive-header,
body.dark-mode .page-header {
	background-color: #1e1e1e;
	border-bottom: 1px solid #2c2c2c;
}

body.dark-mode .archive-title,
body.dark-mode .page-title {
	color: #e0e0e0;
}

body.dark-mode .archive-description,
body.dark-mode .page-description {
	color: #9e9e9e;
}

/* Dark Mode Entry Content */
body.dark-mode .entry-header {
	background-color: #1e1e1e;
	border-bottom: 1px solid #2c2c2c;
}

body.dark-mode .entry-title {
	color: #e0e0e0;
}

body.dark-mode .entry-meta,
body.dark-mode .post-meta {
	color: #9e9e9e;
}

body.dark-mode .entry-content {
	color: #bdbdbd;
}

body.dark-mode .entry-content p {
	color: #bdbdbd;
}

body.dark-mode .entry-content a {
	color: #ff5252;
}

body.dark-mode .entry-content a:hover {
	color: #ff1744;
}

/* Dark Mode Video Stories */
body.dark-mode .video-stories-archive-container {
	background-color: #121212;
}

body.dark-mode .video-stories-archive-title {
	color: #e0e0e0;
}

body.dark-mode .video-stories-archive-title-line {
	background-color: #ff5252;
}

body.dark-mode .video-story-card {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .video-story-card:hover {
	background-color: #242424;
	box-shadow: none;
}

body.dark-mode .video-story-title {
	color: #e0e0e0;
}

body.dark-mode .video-story-views {
	color: #9e9e9e;
}

/* Dark Mode Video Stories Pagination */
body.dark-mode .video-stories-pagination .page-numbers {
	background-color: #2c2c2c;
	border-color: #424242;
	color: #e0e0e0;
}

body.dark-mode .video-stories-pagination .page-numbers:hover {
	background-color: #424242;
	border-color: #ff5252;
	color: #ff5252;
}

body.dark-mode .video-stories-pagination .page-numbers.current {
	background-color: #ff5252;
	border-color: #ff5252;
	color: #ffffff;
}

/* Dark Mode No Results */
body.dark-mode .no-video-stories,
body.dark-mode .no-results {
	color: #9e9e9e;
}

/* Dark Mode Post Navigation */
body.dark-mode .post-navigation {
	background-color: #1e1e1e;
	border-top: 1px solid #2c2c2c;
	border-bottom: 1px solid #2c2c2c;
}

body.dark-mode .post-navigation a {
	color: #bdbdbd;
}

body.dark-mode .post-navigation a:hover {
	color: #ff5252;
}

body.dark-mode .nav-previous,
body.dark-mode .nav-next {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .nav-previous:hover,
body.dark-mode .nav-next:hover {
	background-color: #242424;
}

/* Dark Mode Breadcrumbs */
body.dark-mode .breadcrumbs,
body.dark-mode .breadcrumb {
	color: #9e9e9e;
}

body.dark-mode .breadcrumbs a,
body.dark-mode .breadcrumb a {
	color: #bdbdbd;
}

body.dark-mode .breadcrumbs a:hover,
body.dark-mode .breadcrumb a:hover {
	color: #ff5252;
}

/* Dark Mode Tags */
body.dark-mode .tag-cloud-link,
body.dark-mode .post-tags a,
body.dark-mode .tags a {
	background-color: #2c2c2c;
	color: #bdbdbd;
	border-color: #424242;
}

body.dark-mode .tag-cloud-link:hover,
body.dark-mode .post-tags a:hover,
body.dark-mode .tags a:hover {
	background-color: #ff5252;
	color: #ffffff;
	border-color: #ff5252;
}

/* Dark Mode Author Box */
body.dark-mode .author-box,
body.dark-mode .author-info {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .author-name,
body.dark-mode .author-title {
	color: #e0e0e0;
}

body.dark-mode .author-bio,
body.dark-mode .author-description {
	color: #bdbdbd;
}

/* Dark Mode Related Posts */
body.dark-mode .related-posts {
	background-color: transparent;
}

body.dark-mode .related-posts-title {
	color: #e0e0e0;
	border-bottom-color: #2c2c2c;
}

body.dark-mode .related-post-item {
	background-color: #1e1e1e;
	border: 1px solid #2c2c2c;
}

body.dark-mode .related-post-item:hover {
	background-color: #242424;
	box-shadow: none;
}

body.dark-mode .related-post-title a {
	color: #e0e0e0;
}

body.dark-mode .related-post-title a:hover {
	color: #ff5252;
}

/* Dark Mode 404 Page */
body.dark-mode .error-404 {
	background-color: #121212;
}

body.dark-mode .error-404-title {
	color: #e0e0e0;
}

body.dark-mode .error-404-text {
	color: #bdbdbd;
}

/* Dark Mode Mobile Bottom Navigation */
body.dark-mode .mobile-bottom-nav {
	background-color: #1e1e1e;
	border-top-color: #2c2c2c;
}

body.dark-mode .mobile-nav-item {
	color: #9e9e9e;
}

body.dark-mode .mobile-nav-item.active {
	color: #ff5252;
}

body.dark-mode .mobile-nav-item:hover {
	color: #ff5252;
}

body.dark-mode .mobile-nav-add {
	background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
}

/* Dark Mode Mobile Header in Responsive */
@media (max-width: 768px) {
	body.dark-mode .site-header {
		background-color: #1e1e1e !important;
		box-shadow: none !important;
	}
	
	body.dark-mode .header-logo .site-title a {
		color: #ff5252 !important;
	}
	
	body.dark-mode .mobile-menu-toggle {
		color: #e0e0e0 !important;
	}
	
	body.dark-mode .mobile-menu-toggle:hover {
		color: #ff5252 !important;
	}
	
	body.dark-mode .mobile-menu-content {
		background-color: #1e1e1e !important;
	}
	
	body.dark-mode .mobile-search-form-wrapper {
		background-color: #1e1e1e !important;
		border-bottom-color: #2c2c2c !important;
	}
	
	body.dark-mode .mobile-search-input {
		background-color: #2c2c2c !important;
		border-color: #424242 !important;
		color: #e0e0e0 !important;
	}
	
	body.dark-mode .mobile-search-submit {
		background-color: #ff5252 !important;
	}
}

/* Dark Mode - Remove background from single article */
body.dark-mode.single .site-main,
body.dark-mode.single-post .site-main,
body.dark-mode.singular .site-main {
	background-color: transparent !important;
}

body.dark-mode.single .single-post-article,
body.dark-mode.single-post .single-post-article {
	background-color: transparent !important;
	border: none !important;
}

/* Dark Mode Comments Section */
body.dark-mode .modern-comments {
	border-top-color: #2c2c2c !important;
}

body.dark-mode .comments-title {
	color: #e0e0e0 !important;
}

body.dark-mode .comments-title .material-icons {
	color: #9e9e9e !important;
}

body.dark-mode .comment-body {
	background-color: #1e1e1e !important;
	border-color: #2c2c2c !important;
}

body.dark-mode .comment-body:hover {
	background-color: #242424 !important;
	border-color: #3c3c3c !important;
}

body.dark-mode .comment-author {
	color: #e0e0e0 !important;
}

body.dark-mode .comment-time {
	color: #9e9e9e !important;
}

body.dark-mode .comment-text {
	color: #bdbdbd !important;
}

body.dark-mode .comment-actions a {
	background-color: #2c2c2c !important;
	color: #9e9e9e !important;
	border-color: #3c3c3c !important;
}

body.dark-mode .comment-actions a:hover {
	background-color: #dc2626 !important;
	color: #fff !important;
	border-color: #dc2626 !important;
}

body.dark-mode .modern-comment-item .children .comment-body {
	background-color: #161616 !important;
}

body.dark-mode .comment-respond {
	background-color: #1e1e1e !important;
	border-color: #2c2c2c !important;
}

body.dark-mode .comment-reply-title {
	color: #e0e0e0 !important;
}

body.dark-mode .comment-notes {
	color: #9e9e9e !important;
}

body.dark-mode .comment-form label {
	color: #bdbdbd !important;
}

body.dark-mode .comment-form-author input,
body.dark-mode .comment-form-email input,
body.dark-mode .comment-form-url input,
body.dark-mode .comment-form-comment textarea {
	background-color: #2c2c2c !important;
	border-color: #424242 !important;
	color: #e0e0e0 !important;
}

body.dark-mode .comment-form-author input:focus,
body.dark-mode .comment-form-email input:focus,
body.dark-mode .comment-form-url input:focus,
body.dark-mode .comment-form-comment textarea:focus {
	border-color: #ff5252 !important;
	box-shadow: none !important;
}

body.dark-mode .comment-form-cookies-consent {
	color: #bdbdbd !important;
}

body.dark-mode .submit-btn {
	background-color: #ff5252 !important;
}

body.dark-mode .submit-btn:hover {
	background-color: #ff1744 !important;
}

body.dark-mode .no-comments-yet {
	background-color: #1e1e1e !important;
	border-color: #2c2c2c !important;
}

body.dark-mode .no-comments-icon .material-icons {
	color: #3c3c3c !important;
}

body.dark-mode .no-comments-title {
	color: #e0e0e0 !important;
}

body.dark-mode .no-comments-text {
	color: #9e9e9e !important;
}

body.dark-mode .no-comments {
	background-color: #1e1e1e !important;
	border-color: #2c2c2c !important;
	color: #9e9e9e !important;
}

body.dark-mode .comment-navigation a {
	background-color: #2c2c2c !important;
	color: #9e9e9e !important;
	border-color: #3c3c3c !important;
}

body.dark-mode .comment-navigation a:hover {
	background-color: #dc2626 !important;
	color: #fff !important;
	border-color: #dc2626 !important;
}

/* Dark Mode Region Popup */
body.dark-mode .region-popup-overlay {
	background-color: rgba(0, 0, 0, 0.8) !important;
}

body.dark-mode .region-popup-content {
	background-color: #1e1e1e !important;
}

body.dark-mode .region-popup-header {
	border-bottom-color: #2c2c2c !important;
}

body.dark-mode .region-popup-header h3 {
	color: #e0e0e0 !important;
}

body.dark-mode .region-popup-close {
	background-color: #2c2c2c !important;
}

body.dark-mode .region-popup-close:hover {
	background-color: #424242 !important;
}

body.dark-mode .region-popup-close .material-icons {
	color: #e0e0e0 !important;
}

body.dark-mode .region-search {
	border-bottom-color: #2c2c2c !important;
}

body.dark-mode .region-search-input {
	background-color: #2c2c2c !important;
	border-color: #424242 !important;
	color: #e0e0e0 !important;
}

body.dark-mode .region-search-input:focus {
	background-color: #242424 !important;
	border-color: #ff5252 !important;
}

body.dark-mode .region-search-icon {
	color: #9e9e9e !important;
}

body.dark-mode .region-item {
	background-color: #242424 !important;
	border-color: transparent !important;
}

body.dark-mode .region-item:hover {
	background-color: #2c2c2c !important;
	border-color: #ff5252 !important;
}

body.dark-mode .region-name {
	color: #e0e0e0 !important;
}

/* Dark Mode Mobile Category Tabs */
body.dark-mode .mobile-category-tabs {
	background-color: #1e1e1e !important;
	border-bottom-color: #2c2c2c !important;
}

body.dark-mode .mobile-category-tab {
	color: #9e9e9e !important;
	border-bottom-color: transparent !important;
}

body.dark-mode .mobile-category-tab.active {
	color: #ff5252 !important;
	border-bottom-color: #ff5252 !important;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
	/* Mobile Container */
	.container-1100 {
		padding: 0 12px;
		max-width: 100%;
	}
	
	/* Hide Post Navigation in Mobile */
	.post-navigation {
		display: none;
	}
	
	/* Hide Regional Section in Mobile */
	.regional-section {
		display: none;
	}
	
	/* Page Links Mobile */
	.page-links {
		margin: 20px 15px;
		padding: 15px 0;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		font-size: 13px;
	}
	
	.page-links a,
	.page-links > span {
		min-width: 36px;
		height: 36px;
		padding: 0 10px;
		font-size: 13px;
	}
	
	/* Trending Page Mobile */
	.trending-page-wrapper {
		padding: 20px 0;
	}
	
	.trending-page-header {
		margin-bottom: 20px;
		padding: 20px 15px;
		border-radius: 0;
	}
	
	.trending-page-title {
		font-size: 24px;
	}
	
	.trending-page-title .material-icons {
		font-size: 28px;
	}
	
	.trending-page-subtitle {
		font-size: 14px;
	}
	
	.trending-list {
		gap: 15px;
		padding: 0 12px;
	}
	
	.trending-item {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
		border-radius: 8px;
	}
	
	.trending-rank {
		flex: none;
		position: absolute;
		top: 15px;
		left: 15px;
		z-index: 10;
	}
	
	.rank-number {
		width: 40px;
		height: 40px;
		font-size: 20px;
		border-radius: 8px;
	}
	
	.trending-thumbnail {
		flex: none;
		width: 100%;
		height: 200px;
		border-radius: 8px;
	}
	
	.trending-content {
		gap: 10px;
	}
	
	.trending-title {
		font-size: 18px;
	}
	
	.trending-excerpt {
		font-size: 13px;
	}
	
	.trending-meta {
		gap: 12px;
	}
	
	.trending-views,
	.trending-sentiment,
	.trending-date {
		font-size: 12px;
	}
	
	/* KUNCI: Pastikan single post container tidak terganggu - tetap punya padding normal */
	/* DINONAKTIFKAN - padding 0 bikin header bergeser */
	body.single .container-1100,
	body.single-post .container-1100,
	body.singular .container-1100 {
		/* padding: 0 !important; */
	}
	
	/* Hanya untuk search page - pastikan tidak ada padding */
	/* Jangan ganggu single post */
	body.search:not(.single):not(.single-post):not(.singular) .container-1100,
	body.search-results:not(.single):not(.single-post):not(.singular) .container-1100 {
		padding: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	/* Mobile Header - Full Width - KUNCI: Tidak terganggu search page */
	.site-header {
		padding: 12px 0 !important;
		background-color: #fff !important;
		box-shadow: none !important;
		position: sticky !important;
		top: 0 !important;
		z-index: 1000 !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		left: 0 !important;
		right: 0 !important;
	}
	
	.site-header .container-1100 {
		padding: 0 12px !important;
		margin: 0 auto !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		width: 100% !important;
	}
	
	/* KUNCI: Pastikan header di search page tidak terganggu */
	body.search .site-header,
	body.search-results .site-header {
		padding: 12px 0 !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	body.search .site-header .container-1100,
	body.search-results .site-header .container-1100 {
		padding: 0 12px !important;
		margin: 0 auto !important;
	}
	
	.header-main-row {
		display: grid;
		grid-template-columns: 1fr auto auto;
		grid-template-areas: "logo darkmode burger";
		align-items: center;
		gap: 8px;
		padding: 0;
		margin: 0;
		width: 100%;
	}
	
	.header-logo {
		grid-area: logo;
		min-width: 0;
		overflow: hidden;
	}
	
	.header-logo .site-title {
		font-size: 22px;
		margin: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 1.2;
	}
	
	.header-logo .site-title a {
		color: #d32f2f;
	}
	
	.header-logo .custom-logo-link {
		display: block;
	}
	
	.header-logo .custom-logo-link img {
		max-height: 40px;
		height: 40px;
		width: auto;
		display: block;
	}
	
	.header-search-wrapper {
	display: none;
}

	.header-social {
		display: none;
	}
	
	/* Dark Mode Toggle - Mobile - Fixed Grid Position */
	.dark-mode-toggle {
		grid-area: darkmode;
		width: 40px;
		height: 40px;
		min-width: 40px;
		max-width: 40px;
		margin: 0;
		padding: 0;
	}
	
	.dark-mode-toggle .material-icons {
		font-size: 18px;
	}
	
	/* Mobile Menu Toggle - Fixed Grid Position */
	.mobile-menu-toggle {
		grid-area: burger;
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		min-width: 44px;
		max-width: 44px;
		background: transparent;
		border: none;
		color: #212121;
		cursor: pointer;
		padding: 0;
		margin: 0;
		transition: color 0.3s;
		position: relative;
		z-index: 10001;
		-webkit-tap-highlight-color: transparent;
	}
	
	.mobile-menu-toggle:hover {
		color: #d32f2f;
	}
	
	.mobile-menu-toggle .material-icons {
		font-size: 28px;
	}
	
	.mobile-menu-toggle.active .material-icons {
		transform: rotate(90deg);
	}
	
	/* Mobile Menu Slide */
	.mobile-menu-slide {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		z-index: 9999 !important;
		display: none !important;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		pointer-events: none;
	}
	
	.mobile-menu-slide.active {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
	
	.mobile-menu-overlay {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.5);
		opacity: 0;
		transition: opacity 0.3s ease;
		pointer-events: none;
	}
	
	.mobile-menu-slide.active .mobile-menu-overlay {
		opacity: 1;
		pointer-events: auto;
	}
	
	.mobile-menu-content {
		position: absolute;
		top: 0;
		left: 0;
		width: 85%;
		max-width: 320px;
		height: 100%;
		background-color: #fff;
		box-shadow: none;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		display: flex !important;
		flex-direction: column;
		z-index: 10000;
	}
	
	.mobile-menu-slide.active .mobile-menu-content {
		transform: translateX(0);
	}
	
	.mobile-search-form-wrapper {
		padding: 15px;
		border-bottom: 1px solid #e0e0e0;
		background-color: #fff;
		position: sticky;
		top: 0;
		z-index: 10;
		display: block !important;
		flex-shrink: 0;
	}
	
	.mobile-search-form {
		display: flex !important;
		gap: 8px;
		align-items: center;
		width: 100%;
	}
	
	.mobile-search-input {
		flex: 1;
		padding: 10px 15px;
		border: 1px solid #e0e0e0;
		border-radius: 24px;
		font-size: 14px;
		outline: none;
		transition: border-color 0.3s;
	}
	
	.mobile-search-input:focus {
		border-color: #d32f2f;
	}
	
	.mobile-search-submit {
		width: 44px;
		height: 44px;
		border-radius: 50%;
		background-color: #d32f2f;
	border: none;
		color: #fff;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background-color 0.3s;
		flex-shrink: 0;
	}
	
	.mobile-search-submit:hover {
		background-color: #b71c1c;
	}
	
	.mobile-search-submit .material-icons {
		font-size: 22px;
	}
	
	.mobile-category-menu {
		display: flex !important;
		flex-direction: column;
		padding: 10px 0;
		width: 100%;
	}
	
	.mobile-menu-list {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex !important;
		flex-direction: column;
		width: 100%;
	}
	
	.mobile-menu-list li {
		margin: 0;
		padding: 0;
		list-style: none;
		border-bottom: 1px solid #f0f0f0;
	}
	
	.mobile-menu-list li:last-child {
		border-bottom: none;
	}
	
	.mobile-menu-list li a.mobile-category-menu-item {
		border-bottom: none !important;
	}
	
	.mobile-category-menu-item {
		display: flex !important;
		align-items: center;
		gap: 12px;
		padding: 14px 20px;
		color: #212121;
		text-decoration: none;
		font-size: 15px;
		font-weight: 500;
		transition: all 0.3s;
		border-left: 3px solid transparent;
		width: 100%;
		box-sizing: border-box;
		position: relative;
		border-bottom: 1px solid #f0f0f0;
	}
	
	.mobile-category-menu-item:last-child,
	.mobile-category-menu .mobile-category-menu-item:last-child {
		border-bottom: none;
	}
	
	.mobile-menu-list li:last-child .mobile-category-menu-item {
		border-bottom: none !important;
	}
	
	.mobile-category-menu-item:hover {
		background-color: #f5f5f5;
		color: #d32f2f;
	}
	
	.mobile-category-menu-item.active {
		background-color: #fff3e0;
		color: #d32f2f;
		border-left-color: #d32f2f;
	}
	
	.mobile-category-menu-item .material-icons.menu-icon {
		font-size: 22px;
		transition: transform 0.3s ease, opacity 0.3s ease;
	}
	
	/* Keep icon colors on hover and active - don't override with red */
	.mobile-category-menu-item:hover .material-icons.menu-icon,
	.mobile-category-menu-item.active .material-icons.menu-icon {
		transform: scale(1.1);
		opacity: 0.9;
	}
	
	/* Icon color is set inline via style attribute and will be preserved */
	
	/* Hide Desktop Navigation */
	.main-navigation {
		display: none;
	}
	
	/* Mobile Category Tabs */
	.mobile-category-tabs {
		display: block !important;
		background-color: #fff;
		border-bottom: 1px solid #e0e0e0;
		position: sticky;
		top: 60px;
		z-index: 999;
		padding: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	
	.mobile-category-tabs::-webkit-scrollbar {
		display: none;
	}
	
	.mobile-category-scroll {
		display: flex;
		gap: 0;
		padding: 0 12px;
		min-width: max-content;
	}
	
	.mobile-category-tab {
	display: inline-block;
		padding: 12px 16px;
		color: #757575;
		text-decoration: none;
		font-size: 14px;
		font-weight: 500;
		white-space: nowrap;
		border-bottom: 2px solid transparent;
		transition: all 0.3s;
		position: relative;
	}
	
	.mobile-category-tab.active {
		color: #d32f2f;
		border-bottom-color: #d32f2f;
		font-weight: 600;
	}
	
	.mobile-category-tab:hover {
		color: #d32f2f;
	}
	
	/* Breaking News Mobile - Show Ticker */
	.breaking-news-ticker {
		display: block;
		padding: 0;
		margin-bottom: 12px;
		background: linear-gradient(90deg, rgba(211, 47, 47, 0.05) 0%, rgba(211, 47, 47, 0.02) 100%);
		border-left: 3px solid #d32f2f;
	}
	
	.breaking-news-ticker .container-1100 {
		padding: 8px 16px;
		display: flex;
		align-items: center;
		gap: 12px;
	}
	
	.breaking-news-label {
		padding: 0;
		margin: 0;
		flex: 0 0 auto;
		position: relative;
		background: transparent;
	}
	
	.breaking-news-text {
		font-size: 9px;
		padding: 4px 8px;
		letter-spacing: 1.2px;
		font-weight: 700;
		background: #d32f2f;
		color: #fff;
		border-radius: 3px;
		white-space: nowrap;
	}
	
	.breaking-news-content {
		padding: 0;
		overflow: hidden;
		position: relative;
		flex: 1;
		min-width: 0;
	}
	
	/* Enable scrolling animation on mobile */
	.breaking-news-scroll {
		display: inline-flex;
		align-items: center;
		animation: scroll-news 30s linear infinite;
		white-space: nowrap;
		gap: 0;
	}
	
	.breaking-news-item {
		flex: 0 0 auto;
		white-space: nowrap;
		font-size: 12px;
		font-weight: 600;
		padding: 2px 0;
		color: #212121;
		text-decoration: none;
		transition: color 0.3s;
	}
	
	.breaking-news-item:hover {
		color: #d32f2f;
	}
	
	.breaking-news-separator {
		margin: 0 15px;
		color: #d32f2f;
		font-size: 10px;
		font-weight: 700;
	}
	
	/* Footer Mobile - KUNCI: Tidak terganggu search page */
	.site-footer {
		display: block !important;
		padding: 30px 0 calc(30px + env(safe-area-inset-bottom) + 70px) !important;
		margin-top: 40px !important;
		background-color: #212121 !important;
		color: #fff !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	.site-footer .container-1100 {
		padding: 0 12px !important;
		margin: 0 auto !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	/* KUNCI: Pastikan footer di search page tidak terganggu */
	body.search .site-footer,
	body.search-results .site-footer {
		padding: 30px 0 calc(30px + env(safe-area-inset-bottom) + 70px) !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	body.search .site-footer .container-1100,
	body.search-results .site-footer .container-1100 {
		padding: 0 12px !important;
		margin: 0 auto !important;
	}
	
	.footer-content {
		flex-direction: column;
		gap: 25px;
		text-align: center;
		margin-bottom: 20px;
		align-items: center;
	}
	
	/* Footer Mobile - Override Desktop Layout */
	.footer-left,
	.footer-right {
		flex: none;
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.footer-left {
		order: 1;
	}
	
	.footer-right {
		order: 2;
	}
	
	.footer-site-title {
		font-size: 20px;
		margin-bottom: 12px;
	}
	
	/* Logo Mobile */
	.custom-logo-link {
		display: inline-block;
	}
	
	.custom-logo {
		max-height: 60px;
		width: auto;
	}
	
	.footer-info {
		text-align: center;
		font-size: 13px;
		line-height: 1.6;
	}
	
	.social-media {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.social-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.social-links {
		justify-content: center;
		gap: 15px;
	}
	
	.social-link {
		width: 44px;
		height: 44px;
		background-color: #424242;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s;
	}
	
	.social-link:hover {
		background-color: #d32f2f;
		transform: scale(1.1);
	}
	
	.social-link i {
		font-size: 20px;
		color: #fff;
	}
	
	/* Footer Menu Mobile */
	.footer-menu-wrapper {
		margin: 25px 0 20px;
		padding: 15px 0;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
	}
	
	.footer-menu-wrapper::-webkit-scrollbar {
		display: none;
	}
	
	.footer-menu {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		gap: 25px !important;
		padding: 0 20px !important;
		margin: 0 !important;
		list-style: none !important;
	}
	
	.footer-menu::-webkit-scrollbar {
		display: none;
	}
	
	.footer-menu li {
		white-space: nowrap !important;
		flex: 0 0 auto !important;
		width: auto !important;
	}
	
	.footer-menu a {
		font-size: 14px;
		display: block;
		padding: 8px 0;
		color: #bdbdbd;
	}
	
	.footer-menu a:hover {
		color: #fff;
	}
	
	.footer-bottom {
		text-align: center;
		padding-top: 20px;
		border-top: 1px solid rgba(255,255,255,0.1);
	}
	
	.copyright {
		font-size: 12px;
		color: #bdbdbd;
		margin: 0;
	}
	
	/* Headline Mobile */
	.headline-section {
		display: block;
		margin-bottom: 20px;
		padding: 0 12px;
	}
	
	.headline-slider {
		height: 240px;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: none;
	}
	
	.headline-image {
	width: 100%;
		height: 100%;
	}
	
	.headline-thumbnail {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.headline-content-overlay {
		padding: 15px;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
	}
	
	.headline-category {
		font-size: 9px;
		padding: 3px 8px;
		margin-bottom: 6px;
		display: inline-block;
	}
	
	.headline-title {
		font-size: 16px;
		font-weight: 700;
		line-height: 1.3;
		margin-bottom: 6px;
	}
	
	.headline-title a {
		color: #fff;
		text-shadow: 0 1px 3px rgba(0,0,0,0.5);
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	
	.headline-date {
		font-size: 11px;
		color: rgba(255,255,255,0.9);
		display: flex;
		align-items: center;
		gap: 4px;
	}
	
	.headline-date .material-icons {
		font-size: 14px;
	}
	
	.headline-nav {
		display: flex;
		justify-content: space-between;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
		padding: 0 10px;
		z-index: 10;
		pointer-events: none;
	}
	
	.headline-nav-prev,
	.headline-nav-next {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background-color: transparent;
		border: none;
		color: #fff;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		pointer-events: all;
		transition: all 0.3s;
		box-shadow: none;
	}
	
	.headline-nav-prev .material-icons,
	.headline-nav-next .material-icons {
		font-size: 24px;
		text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	}
	
	.headline-nav-prev:hover,
	.headline-nav-next:hover {
		transform: scale(1.15);
	}
	
	.headline-dots {
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 6px;
		z-index: 10;
	}
	
	.headline-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		border: none;
		background-color: rgba(255,255,255,0.5);
		cursor: pointer;
		padding: 0;
		transition: all 0.3s;
	}
	
	.headline-dot.active {
		background-color: #fff;
		width: 20px;
		border-radius: 3px;
	}
	
	/* Rekomendasi Mobile */
	.rekomendasi-section {
		margin-bottom: 18px;
		padding: 0 12px;
	}
	
	.rekomendasi-header {
		margin-bottom: 12px;
	}
	
	.rekomendasi-title {
		font-size: 16px;
	}
	
	.rekomendasi-title-line {
		width: 4px;
		height: 20px;
	}
	
	.rekomendasi-more {
		font-size: 12px;
	}
	
	.rekomendasi-more .material-icons {
		font-size: 18px;
	}
	
	.rekomendasi-carousel {
		overflow: visible;
	}
	
	.rekomendasi-slides {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 8px;
	}
	
	.rekomendasi-slides::-webkit-scrollbar {
	display: none;
}

	.rekomendasi-item {
		flex: 0 0 calc(75% - 5px);
		scroll-snap-align: start;
		min-width: 0;
	}
	
	.rekomendasi-thumbnail {
		height: 140px;
	}
	
	.rekomendasi-content {
		padding: 12px;
	}
	
	.rekomendasi-category {
		font-size: 9px;
		padding: 2px 8px;
		margin-bottom: 8px;
	}
	
	.rekomendasi-item-title {
		font-size: 14px;
		margin-bottom: 6px;
	}
	
	.rekomendasi-meta {
		font-size: 11px;
	}
	
	.rekomendasi-nav {
		display: none;
	}
	
	/* Berita Terbaru Mobile */
	.content-wrapper {
		flex-direction: column;
		padding: 0;
		margin-top: 0;
	}
	
	.site-main {
		width: 100%;
		padding: 0;
	}
	
	/* Pastikan single post tidak terganggu - override CSS search page */
	body.single .content-wrapper,
	body.single-post .content-wrapper,
	body.singular .content-wrapper {
		padding: 0 !important;
		margin-top: 0 !important;
	}
	
	body.single .site-main,
	body.single-post .site-main,
	body.singular .site-main {
		padding: 0 !important;
		width: 100% !important;
	}
	
	body.single .container-1100,
	body.single-post .container-1100,
	body.singular .container-1100 {
		padding: 0 !important;
	}
	
	/* KUNCI: Pastikan single-post-main punya padding yang benar - tidak terganggu */
	body.single .single-post-main,
	body.single-post .single-post-main,
	body.singular .single-post-main {
		padding: 0 12px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	.berita-terbaru-section {
		padding: 0 12px;
		margin-bottom: 20px;
	}
	
	.berita-terbaru-header {
		margin-bottom: 15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.berita-terbaru-title {
		font-size: 18px;
		display: flex;
		align-items: center;
		gap: 10px;
		font-weight: 700;
		color: #212121;
		margin: 0;
	}
	
	.berita-terbaru-title-line {
		width: 4px;
		height: 22px;
		background-color: #d32f2f;
		border-radius: 2px;
		flex-shrink: 0;
	display: block;
}

	.berita-terbaru-list {
		gap: 15px;
	}
	
	.berita-terbaru-item {
		flex-direction: row;
		gap: 12px;
		padding: 12px;
		box-shadow: none;
	}
	
	.berita-terbaru-thumbnail {
		flex: 0 0 100px;
		height: 100px;
	}
	
	.berita-terbaru-image {
		width: 100px;
		height: 100px;
	}
	
	.berita-terbaru-content {
		flex: 1;
		min-width: 0;
	padding: 0;
	}
	
	.berita-terbaru-category {
		font-size: 10px;
		padding: 3px 8px;
		margin-bottom: 6px;
	}
	
	.berita-terbaru-title {
		font-size: 14px;
		margin-bottom: 6px;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	
	.berita-terbaru-date {
		font-size: 11px;
	}
	
	.berita-terbaru-date .material-icons {
		font-size: 14px;
	}
	
	/* Sidebar Mobile - Tampilkan di bawah berita terbaru */
	.sidebar-sticky {
		display: block;
		position: relative;
		top: auto;
		width: 100%;
		padding: 0 12px;
		margin-top: 40px;
		box-sizing: border-box;
	}
	
	/* Widget Styling Mobile */
	.widget {
		margin-bottom: 30px;
		padding: 20px;
		background-color: #fff;
		border-radius: 8px;
		box-shadow: none;
	}
	
	.widget-title {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 15px;
		color: #212121;
		padding-bottom: 12px;
		border-bottom: 2px solid #d32f2f;
	}
	
	/* Widget List Mobile */
	.widget ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	.widget ul li {
		padding: 10px 0;
		border-bottom: 1px solid #e0e0e0;
	}
	
	.widget ul li:last-child {
		border-bottom: none;
	}
	
	.widget ul li a {
		color: #424242;
		text-decoration: none;
		font-size: 14px;
		line-height: 1.5;
		transition: color 0.3s;
	}
	
	.widget ul li a:hover {
		color: #d32f2f;
	}
	
	/* Widget Search Mobile */
	.widget_search .search-form {
		display: flex;
		gap: 8px;
	}
	
	.widget_search .search-field {
		flex: 1;
		padding: 10px 14px;
		border: 1px solid #e0e0e0;
		border-radius: 6px;
		font-size: 14px;
	}
	
	.widget_search .search-submit {
		padding: 10px 20px;
		background-color: #d32f2f;
		color: #fff;
		border: none;
		border-radius: 6px;
		font-size: 14px;
		cursor: pointer;
	}
	
	/* Recent Posts Widget Mobile */
	.widget_recent_entries ul li {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}
	
	.widget_recent_entries .post-date {
		font-size: 12px;
		color: #757575;
	}
	
	/* Categories Widget Mobile */
	.widget_categories ul li {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	/* Tag Cloud Mobile */
	.widget_tag_cloud .tagcloud {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}
	
	.widget_tag_cloud .tagcloud a {
		padding: 6px 12px;
		background-color: #f5f5f5;
		color: #424242;
		border-radius: 4px;
		font-size: 13px !important;
		text-decoration: none;
		transition: all 0.3s;
	}
	
	.widget_tag_cloud .tagcloud a:hover {
		background-color: #d32f2f;
		color: #fff;
	}
	
	/* Trend Widget Mobile */
	.trend-widget .widget-title {
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.trend-item {
		padding: 12px 0;
		gap: 10px;
	}
	
	.trend-number {
		min-width: 28px;
		height: 28px;
		font-size: 12px;
	}
	
	.trend-link {
		font-size: 13px;
		line-height: 1.4;
	}
	
	.trend-views {
		font-size: 11px;
	}
	
	.trend-views .material-icons {
		font-size: 13px;
	}
	
	/* Category Featured Widget Mobile */
	.category-featured-image {
		height: 180px;
	}
	
	.category-featured-info {
		padding: 15px;
	}
	
	.category-featured-title {
		font-size: 15px;
	}
	
	.category-featured-item {
		padding: 10px 0;
	}
	
	.category-featured-item-title {
		font-size: 13px;
	}
	
	.category-featured-item-date {
		font-size: 11px;
	}
	
	/* Iklan Sidebar Mobile */
	.iklan-sidebar-widget {
		margin-bottom: 30px;
	}
	
	/* Mobile Bottom Navigation */
	.mobile-bottom-nav {
		display: flex !important;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #fff;
		border-top: 1px solid #e0e0e0;
		align-items: center;
		justify-content: space-around;
		padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
		z-index: 1000;
		box-shadow: none;
	}
	
	.mobile-nav-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		text-decoration: none;
		color: #757575;
		font-size: 11px;
		font-weight: 500;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 4px 8px;
		transition: color 0.3s;
		position: relative;
		min-width: 50px;
	}
	
	.mobile-nav-item.active {
		color: #d32f2f;
	}
	
	.mobile-nav-item .material-icons {
		font-size: 24px;
	}
	
	.mobile-nav-add {
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background: linear-gradient(135deg, #00a9b8 0%, #008c99 100%);
		color: #fff;
		box-shadow: 0 4px 12px rgba(0, 169, 184, 0.4);
		margin-top: -30px;
		border: 4px solid #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 10;
		transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}
	
	.mobile-nav-add .material-icons {
		font-size: 32px;
		line-height: 1;
	}
	
	.mobile-nav-add:hover {
		background: linear-gradient(135deg, #00c2d1 0%, #00a9b8 100%);
		transform: scale(1.1) translateY(-5px);
		box-shadow: 0 6px 16px rgba(0, 169, 184, 0.5);
	}
	
	.mobile-nav-label {
		font-size: 10px;
		line-height: 1;
	}
	
	.mobile-nav-add .mobile-nav-label {
		display: none;
	}
	
	/* Add padding bottom untuk content agar tidak tertutup bottom nav */
	.site-main {
		padding-bottom: 70px;
	}
	
	/* Iklan Header Mobile */
	.iklan-header-area {
		display: none;
	}
	
	.berita-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-content {
		flex-direction: column;
		gap: 30px;
	}
	
	/* Category & Tag Featured Headline Mobile */
	.category-featured-headline {
		height: 240px;
		margin-bottom: 20px;
		border-radius: 8px;
		margin-left: 15px;
		margin-right: 15px;
	}
	
	.category-featured-headline-content {
		padding: 15px;
	}
	
	.category-featured-headline-category {
		font-size: 9px;
		padding: 3px 8px;
		margin-bottom: 8px;
	}
	
	.category-featured-headline-title {
		font-size: 16px;
		font-weight: 700;
		line-height: 1.3;
		margin-bottom: 8px;
	}
	
	.category-featured-headline-date {
		font-size: 11px;
	}
	
	.category-featured-headline-date .material-icons {
		font-size: 14px;
	}
	
	/* Berita Terbaru Section Mobile (Category/Tag) */
	.berita-terbaru-section {
		padding: 0 12px;
	}
	
	.berita-terbaru-pagination {
		padding: 20px 15px;
		margin-top: 30px;
		margin-bottom: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.berita-terbaru-pagination .page-numbers {
		font-size: 13px;
		padding: 8px 12px;
		min-width: 36px;
		height: 36px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.berita-terbaru-pagination .page-numbers.prev,
	.berita-terbaru-pagination .page-numbers.next {
		padding: 8px 10px;
	}
	
	.berita-terbaru-pagination .page-numbers .material-icons {
		font-size: 18px;
	}
	
	/* Search Results Pagination */
	.search-results .berita-terbaru-pagination {
		padding: 20px 0;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	
	/* Single Post Mobile - KUNCI: Pastikan padding tetap benar */
	.single-post-main {
		padding: 0 12px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	/* KUNCI: Override untuk single post - pastikan tidak terganggu */
	body.single .single-post-main,
	body.single-post .single-post-main,
	body.singular .single-post-main {
		padding: 0 12px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	.breadcrumb {
		font-size: 12px;
		margin-bottom: 15px;
		padding: 0 12px;
		flex-wrap: wrap;
	}
	
	.single-post-title {
		font-size: 22px;
		line-height: 1.3;
		margin-bottom: 15px;
	}
	
	.single-post-meta {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		font-size: 11px;
		padding: 12px 0;
		border-top: 1px solid #e0e0e0;
		border-bottom: 1px solid #e0e0e0;
		margin: 15px 0;
		flex-wrap: wrap;
	}
	
	.single-post-meta-item {
		gap: 4px;
		flex: 1;
		min-width: 0;
		justify-content: center;
	}
	
	.single-post-meta-item .material-icons {
		font-size: 14px;
	}
	
	.single-post-author,
	.single-post-date,
	.single-post-views {
		font-size: 11px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	.single-post-featured-image {
		margin-bottom: 20px;
		width: 100vw;
		left: 50%;
		right: 50%;
		margin-left: -50vw;
		margin-right: -50vw;
	}
	
	.single-post-thumbnail {
		border-radius: 0;
	}
	
	.featured-image-caption {
		padding: 8px 15px;
		font-size: 11px;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.featured-image-caption-line {
		margin-bottom: 15px;
		padding-left: 0;
		padding-right: 0;
		margin-left: 15px;
		margin-right: 15px;
		width: calc(100% - 30px);
	}
	
	.single-post-content {
		font-size: 15px;
		line-height: 1.7;
		margin-bottom: 30px;
	}
	
	.single-post-content p {
		margin-bottom: 15px;
	}
	
	.single-post-content img {
		margin: 15px 0;
	}
	
	.single-post-content h2,
	.single-post-content h3,
	.single-post-content h4 {
		font-size: 18px;
		margin-top: 25px;
		margin-bottom: 12px;
	}
	
	.single-post-related-list {
		margin: 30px 0;
	}
	
	.single-post-related-list .related-title {
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.single-post-related-list .berita-terbaru-thumbnail {
		flex: 0 0 120px;
		height: 80px;
	}
	
	.single-post-related-list .berita-terbaru-image {
		width: 120px;
		height: 80px;
	}
	
	.single-post-related-list .berita-terbaru-title {
		font-size: 14px;
		line-height: 1.4;
	}
	
	.single-post-footer {
		margin-top: 30px;
		padding-top: 20px;
	}
	
	.single-post-tags {
		margin-bottom: 20px;
	}
	
	.tags-label {
		font-size: 13px;
		margin-bottom: 8px;
	display: block;
	}
	
	.tags-list {
		flex-wrap: wrap;
		gap: 6px;
	}
	
	.tag-link {
		font-size: 12px;
		padding: 4px 10px;
	}
	
	.share-label {
		font-size: 13px;
		margin-bottom: 8px;
		display: block;
	}
	
	.share-buttons {
		gap: 10px;
	}
	
	.share-btn {
		width: 36px;
		height: 36px;
	}
	
	.share-btn i {
		font-size: 18px;
		line-height: 1;
		display: inline-block;
		font-style: normal;
	}
	
	.share-btn .fab {
		font-family: "Font Awesome 6 Brands" !important;
		font-weight: 400 !important;
		font-size: 18px !important;
	}
	
	.share-btn .fas {
		font-family: "Font Awesome 6 Free" !important;
		font-weight: 900 !important;
		font-size: 18px !important;
	}
	
	/* Floating Share Buttons Mobile */
	.floating-share-mobile {
		position: fixed !important;
		bottom: 90px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 999;
		display: none; /* Hidden by default, shown via JS on scroll */
		opacity: 0;
		transition: opacity 0.3s ease;
		pointer-events: none;
	}
	
	.floating-share-mobile.show {
		opacity: 1;
		pointer-events: auto;
	}
	
	/* Override when JavaScript sets display: block */
	.floating-share-mobile[style*="display: block"],
	.floating-share-mobile[style*="display:block"] {
		display: block !important;
	}
	
	.floating-share-buttons {
		display: flex;
		align-items: center;
		gap: 6px;
		background-color: #fff;
		padding: 6px 10px;
		border-radius: 25px;
		box-shadow: none;
	}
	
	.floating-share-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		text-decoration: none;
		border: none;
		cursor: pointer;
		transition: all 0.3s;
		position: relative;
	}
	
	.floating-share-fb {
		background-color: #1877f2;
		color: #fff;
	}
	
	.floating-share-twitter {
		background-color: #000;
		color: #fff;
	}
	
	.floating-share-wa {
		background-color: #25d366;
		color: #fff;
	}
	
	.floating-share-telegram {
		background-color: #0088cc;
		color: #fff;
	}
	
	.floating-share-copy {
		background-color: #757575;
		color: #fff;
	}
	
	.floating-share-btn:hover {
		transform: scale(1.1);
		box-shadow: none;
	}
	
	.floating-share-btn i {
		font-size: 14px;
		line-height: 1;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
	}
	
	.floating-share-btn .fab {
		font-family: "Font Awesome 6 Brands" !important;
		font-weight: 400 !important;
		font-size: 14px !important;
		display: inline-block !important;
	}
	
	.floating-share-btn .fas {
		font-family: "Font Awesome 6 Free" !important;
		font-weight: 900 !important;
		font-size: 14px !important;
		display: inline-block !important;
	}
	
	/* Specific icon fixes */
	.floating-share-btn .fa-facebook-f:before {
		content: "\f39e";
	}
	
	.floating-share-btn .fa-twitter:before {
		content: "\f099";
	}
	
	.floating-share-btn .fa-whatsapp:before {
		content: "\f232";
	}
	
	.floating-share-btn .fa-telegram-plane:before {
		content: "\f3fe";
	}
	
	.floating-share-btn .fa-link:before {
		content: "\f0c1";
	}
	
	/* Hide regular share buttons on mobile */
	.single-post-share {
		display: none;
	}
	
	.single-post-berita-kategori {
		margin-top: 30px;
		padding: 0 12px;
	}
	
	/* Single Post Berita Terbaru Mobile */
	.single-post-berita-terbaru {
		margin-top: 30px;
		padding-top: 25px;
		border-top: 2px solid #e0e0e0;
	}
	
	/* Single Post Related Posts Mobile */
	.single-post-related-list {
		margin: 20px 0 15px 0;
		padding: 0;
	}
	
	.single-post-related-list .related-title {
		font-size: 16px;
		margin-bottom: 15px;
		gap: 8px;
	}
	
	.single-post-related-list .related-title .material-icons {
		font-size: 20px;
	}
	
	.single-post-related-list .berita-terbaru-item {
		padding: 10px 0;
	}
	
	.related-post-content {
		padding: 12px;
	}
	
	.related-post-title {
		font-size: 14px;
		line-height: 1.3;
		margin-bottom: 8px;
		min-height: 36px;
	}
	
	.related-post-date {
		font-size: 11px;
		gap: 4px;
	}
	
	.related-post-date .material-icons {
		font-size: 13px;
	}
	
	/* Comments Mobile */
	.modern-comments {
		margin-top: 30px;
		padding-top: 25px;
	}
	
	.comments-title {
		font-size: 18px;
		gap: 8px;
	}
	
	.comments-title .material-icons {
		font-size: 22px;
	}
	
	.comment-respond {
		padding: 20px 15px;
		margin-top: 25px;
		border-radius: 6px;
	}
	
	.comment-reply-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	
	.comment-notes {
		font-size: 12px;
		margin-bottom: 15px;
	}
	
	.comment-form {
		gap: 15px;
	}
	
	.comment-form label {
		font-size: 13px;
		margin-bottom: 6px;
	}
	
	.comment-form-author input,
	.comment-form-email input,
	.comment-form-comment textarea {
		padding: 10px 14px;
		font-size: 13px;
	}
	
	.comment-form-comment textarea {
		min-height: 100px;
	}
	
	.comment-form-cookies-consent {
		font-size: 12px;
		gap: 8px;
	}
	
	.form-submit {
		margin-top: 5px;
	}
	
	.submit-btn {
		padding: 10px 24px;
		font-size: 14px;
		width: 100%;
	}
	
	.no-comments-yet {
		padding: 40px 15px;
		margin-bottom: 20px;
	}
	
	.no-comments-icon .material-icons {
		font-size: 60px;
	}
	
	.no-comments-title {
		font-size: 16px;
		margin-bottom: 8px;
	}
	
	.no-comments-text {
		font-size: 13px;
	}
	
	/* Search & Page Mobile - konsisten dengan halaman lain */
	.page-header {
		padding: 0 12px !important;
		margin: 15px 0 20px 0 !important;
		width: 100% !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	.page-title {
		font-size: 20px;
		font-weight: 700;
		line-height: 1.3;
		margin: 0;
	}
	
	.page-title span {
		color: #d32f2f;
	}
	
	/* Search Results Info - Google Style */
	.search-results-info {
		font-size: 14px;
		color: #70757a;
		margin-top: 8px;
		line-height: 1.5;
	}
	
	/* Search Results Info */
	.search-results-info {
		font-size: 14px;
		color: #70757a;
		margin-top: 8px;
		line-height: 1.5;
	}
	
	/* Search Results Mobile - DIHAPUS SEMENTARA - akan diperbaiki nanti */
	
	/* Pastikan content-wrapper dan site-main tidak punya padding/margin - HANYA untuk search page */
	/* Jangan ganggu single post - gunakan selector yang lebih spesifik */
	body.search:not(.single):not(.single-post):not(.singular) .content-wrapper,
	body.search-results:not(.single):not(.single-post):not(.singular) .content-wrapper {
		padding: 0 !important;
		margin: 0 !important;
		width: 100%;
	}
	
	body.search:not(.single):not(.single-post):not(.singular) .site-main,
	body.search-results:not(.single):not(.single-post):not(.singular) .site-main {
		padding: 0 !important;
		margin: 0 !important;
		width: 100%;
	}
	
	/* Pastikan single post tidak terganggu - override CSS search page */
	body.single .content-wrapper,
	body.single-post .content-wrapper,
	body.singular .content-wrapper {
		padding: 0 !important;
		margin-top: 0 !important;
	}
	
	body.single .site-main,
	body.single-post .site-main,
	body.singular .site-main {
		padding: 0 !important;
		width: 100% !important;
	}
	
	/* Pastikan single-post-main punya padding yang benar */
	body.single .single-post-main,
	body.single-post .single-post-main,
	body.singular .single-post-main {
		padding: 0 12px !important;
	}
	
	/* Pastikan page-header tidak punya margin/padding tambahan - HANYA untuk search page */
	/* Jangan ganggu single post */
	body.search:not(.single):not(.single-post):not(.singular) .site-main .page-header,
	body.search-results:not(.single):not(.single-post):not(.singular) .site-main .page-header {
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	/* Search Page Form - Google Style */
	.search-page-form-wrapper {
		padding: 0 12px;
		margin: 0 0 25px 0;
	}
	
	.search-page-form {
		display: flex;
		gap: 10px;
		align-items: center;
		max-width: 600px;
		width: 100%;
	}
	
	.search-page-input {
		flex: 1;
		padding: 12px 16px;
		border: 1px solid #dfe1e5;
		border-radius: 24px;
		font-size: 16px;
		outline: none;
		transition: border-color 0.3s, box-shadow 0.3s;
		background-color: #fff;
	}
	
	.search-page-input:focus {
		border-color: #4285f4;
		box-shadow: none;
	}
	
	.search-page-button {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background-color: #4285f4;
		border: none;
		color: #fff;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background-color 0.3s, box-shadow 0.3s;
		flex-shrink: 0;
	}
	
	.search-page-button:hover {
		background-color: #357ae8;
		box-shadow: none;
	}
	
	.search-page-button .material-icons {
		font-size: 24px;
	}
	
	/* Search Page Form Mobile */
	@media (max-width: 768px) {
		.search-page-form-wrapper {
			padding: 0 12px !important;
			margin: 0 0 20px 0 !important;
		}
		
		.search-page-form {
			max-width: 100%;
			gap: 8px;
		}
		
		.search-page-input {
			padding: 10px 14px;
			font-size: 16px;
		}
		
		.search-page-button {
			width: 44px;
			height: 44px;
		}
		
		.search-page-button .material-icons {
			font-size: 22px;
		}
	}
	
	/* Search Result Item - Google Style */
	.search-result-item {
		margin-bottom: 28px;
		padding-bottom: 0;
		border-bottom: none;
	}
	
	.search-result-item:last-child {
		margin-bottom: 0;
	}
	
	/* Search Result Layout - Google Style */
	.search-result-wrapper {
		display: flex;
		gap: 16px;
		align-items: flex-start;
		margin-bottom: 20px;
	}
	
	/* Thumbnail di kiri - ukuran 100x100 */
	.search-result-thumbnail {
		flex: 0 0 100px;
		width: 100px;
		height: 100px;
		overflow: hidden;
		border-radius: 4px;
		background-color: #f5f5f5;
	}
	
	.search-result-thumbnail a {
		display: block;
		width: 100%;
		height: 100%;
	}
	
	.search-result-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: opacity 0.2s ease;
	}
	
	.search-result-thumbnail:hover .search-result-image {
		opacity: 0.9;
	}
	
	/* Content di kanan */
	.search-result-content {
		flex: 1;
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	
	/* Title - Google Style */
	.search-result-title {
		font-size: 18px;
		font-weight: 400;
		line-height: 1.3;
		margin: 0;
		padding: 0;
	}
	
	.search-result-title a {
		color: #1a0dab;
		text-decoration: none;
		display: inline-block;
	}
	
	.search-result-title a:hover {
		text-decoration: underline;
	}
	
	.search-result-title a:visited {
		color: #609;
	}
	
	/* URL - Google Style */
	.search-result-url {
		font-size: 14px;
		color: #006621;
		line-height: 1.3;
		margin-top: 2px;
		word-break: break-all;
	}
	
	/* Excerpt - Google Style */
	.search-result-excerpt {
		font-size: 14px;
		line-height: 1.5;
		color: #545454;
		margin-top: 4px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	
	/* Meta - Google Style */
	.search-result-meta {
		font-size: 13px;
		color: #808080;
		display: flex;
		align-items: center;
		gap: 4px;
		margin-top: 4px;
	}
	
	.search-result-meta .material-icons {
		font-size: 16px;
	}
	
	/* Page Content Mobile */
	.page-content {
		padding: 0 12px;
		font-size: 15px;
		line-height: 1.7;
	}
	
	.page-content h1,
	.page-content h2,
	.page-content h3 {
		font-size: 20px;
		margin-top: 25px;
		margin-bottom: 15px;
	}
	
	.page-content p {
		margin-bottom: 15px;
	}
	
	.page-content img {
		max-width: 100%;
	height: auto;
		margin: 15px 0;
		border-radius: 4px;
	}
}

@media (max-width: 480px) {
	.headline-section {
		padding: 0 10px;
	}
	
	.headline-slider {
		height: 220px;
		border-radius: 6px;
	}
	
	.headline-content-overlay {
		padding: 12px;
	}
	
	.headline-category {
		font-size: 8px;
		padding: 2px 6px;
		margin-bottom: 5px;
	}
	
	.headline-title {
		font-size: 15px;
		font-weight: 700;
		line-height: 1.25;
		margin-bottom: 5px;
	}
	
	.headline-date {
		font-size: 10px;
	}
	
	.headline-date .material-icons {
		font-size: 12px;
	}
	
	.headline-nav-prev,
	.headline-nav-next {
		width: 28px;
		height: 28px;
		background-color: transparent;
	}
	
	.headline-nav-prev .material-icons,
	.headline-nav-next .material-icons {
		font-size: 22px;
		text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	}
	
	.headline-dot {
		width: 5px;
		height: 5px;
	}
	
	.headline-dot.active {
		width: 18px;
	}
	
	/* Rekomendasi Mobile Small */
	.rekomendasi-section {
		padding: 0 10px;
		margin-bottom: 15px;
	}
	
	.rekomendasi-title {
		font-size: 15px;
	}
	
	.rekomendasi-title-line {
		width: 3px;
		height: 18px;
	}
	
	.rekomendasi-header {
		margin-bottom: 10px;
	}
	
	.rekomendasi-item {
		flex: 0 0 calc(72% - 4px);
	}
	
	.rekomendasi-thumbnail {
		height: 120px;
	}
	
	.rekomendasi-content {
		padding: 10px;
	}
	
	.rekomendasi-category {
		font-size: 8px;
		padding: 2px 6px;
		margin-bottom: 6px;
	}
	
	.rekomendasi-item-title {
		font-size: 13px;
		margin-bottom: 5px;
	}
	
	.rekomendasi-meta {
		font-size: 10px;
	}
	
	.berita-terbaru-item {
		flex-direction: row;
		gap: 10px;
		padding: 10px;
	}
	
	.berita-terbaru-thumbnail {
		flex: 0 0 100px;
		height: 100px;
	}
	
	.berita-terbaru-image {
		width: 100px;
		height: 100px;
	}
	
	.berita-terbaru-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.berita-terbaru-title {
		font-size: 15px;
		display: flex;
		align-items: center;
		gap: 8px;
		font-weight: 700;
		color: #212121;
		margin: 0;
	}
	
	.berita-terbaru-title-line {
		width: 3px;
		height: 18px;
		background-color: #d32f2f;
		border-radius: 2px;
		flex-shrink: 0;
	display: block;
	}
	
	.mobile-category-tab {
		padding: 10px 12px;
		font-size: 13px;
	}
	
	.mobile-bottom-nav {
		padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
	}
	
	.mobile-nav-item {
		min-width: 45px;
		padding: 2px 4px;
	}
	
	.mobile-nav-item .material-icons {
		font-size: 22px;
	}
	
	.mobile-nav-add {
		width: 58px;
		height: 58px;
		margin-top: -25px;
		border: 3px solid #fff;
		box-shadow: 0 3px 10px rgba(0, 169, 184, 0.3);
	}
	
	.mobile-nav-add .material-icons {
		font-size: 30px;
	}
	
	.mobile-nav-label {
		font-size: 9px;
	}
	
	/* Fix Search Page Padding - Pastikan konsisten */
	/* Jangan ganggu single post */
	body.search:not(.single):not(.single-post):not(.singular) .container-1100,
	body.search-results:not(.single):not(.single-post):not(.singular) .container-1100 {
		padding: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	body.search:not(.single):not(.single-post):not(.singular) .page-header,
	body.search-results:not(.single):not(.single-post):not(.singular) .page-header {
		padding-left: 15px !important;
		padding-right: 15px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	/* KUNCI: Search results padding sudah didefinisikan di atas (line 3723-3739), tidak perlu duplikasi */
	
	/* ============================================
	   KUNCI: Single Post - Pastikan tidak terganggu
	   ============================================ */
	
	/* KUNCI: Single post main - padding harus 15px kiri-kanan */
	body.single .single-post-main,
	body.single-post .single-post-main,
	body.singular .single-post-main,
	body.single .site-main.single-post-main,
	body.single-post .site-main.single-post-main,
	body.singular .site-main.single-post-main {
		padding: 0 12px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
		width: 100% !important;
	}
	
	/* KUNCI: Content wrapper untuk single post */
	body.single .content-wrapper,
	body.single-post .content-wrapper,
	body.singular .content-wrapper {
		padding: 0 !important;
		margin-top: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	/* KUNCI: Site main untuk single post */
	body.single .site-main,
	body.single-post .site-main,
	body.singular .site-main {
		padding: 0 !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	/* KUNCI: Container untuk single post */
	body.single .container-1100,
	body.single-post .container-1100,
	body.singular .container-1100 {
		padding: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	/* KUNCI: Pastikan tidak ada CSS search page yang mengganggu single post */
	body.single .page-header,
	body.single-post .page-header,
	body.singular .page-header,
	body.single .search-results,
	body.single-post .search-results,
	body.singular .search-results {
		display: none !important;
	}
}

/*--------------------------------------------------------------
# Media Monitoring and Performance Tracking
--------------------------------------------------------------*/
.media-monitoring-section {
	margin: 40px 0;
	padding: 30px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: none;
}

.media-monitoring-header {
	margin-bottom: 25px;
}

.media-monitoring-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: 700;
	color: #212121;
	margin: 0 0 10px 0;
}

.media-monitoring-title .material-icons {
	font-size: 28px;
	color: #d32f2f;
}

.media-monitoring-subtitle {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.media-monitoring-charts {
	margin-top: 20px;
}

.chart-container {
	margin-bottom: 30px;
}

.chart-title {
	font-size: 18px;
	font-weight: 600;
	color: #212121;
	margin: 0 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #e0e0e0;
}

.chart-bars {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.chart-bar {
	width: 100%;
}

.bar-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}

.institution-name {
	font-weight: 600;
	color: #212121;
}

.count-value {
	color: #666;
	font-size: 14px;
}

.bar-container {
	width: 100%;
	height: 20px;
	background-color: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
}

.bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #2196F3, #21CBF3);
	border-radius: 10px;
	transition: width 0.5s ease;
}

.performance-tracking-section {
	margin: 40px 0;
	padding: 30px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: none;
}

.performance-tracking-header {
	margin-bottom: 25px;
}

.performance-tracking-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: 700;
	color: #212121;
	margin: 0 0 10px 0;
}

.performance-tracking-title .material-icons {
	font-size: 28px;
	color: #4CAF50;
}

.performance-tracking-subtitle {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.performance-charts {
	margin-top: 20px;
}

.performance-bars {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.performance-bar {
	width: 100%;
}

.region-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
}

.region-name {
	font-weight: 600;
	color: #212121;
}

.performance-bar-container {
	width: 100%;
	height: 20px;
	background-color: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
}

.performance-positive {
	height: 100%;
	background-color: #4CAF50;
	border-radius: 10px 0 0 10px;
	transition: width 0.5s ease;
}

.performance-negative {
	height: 100%;
	background-color: #F44336;
	border-radius: 0 10px 10px 0;
	transition: width 0.5s ease;
}

.performance-stats {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

.positive-stat {
	color: #4CAF50;
	font-weight: 600;
}

.negative-stat {
	color: #F44336;
	font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.media-monitoring-section,
	.performance-tracking-section {
		padding: 20px 15px;
	}
	
	.media-monitoring-title,
	.performance-tracking-title {
		font-size: 20px;
	}
	
	.chart-title {
		font-size: 16px;
	}
	
	.institution-name,
	.region-name {
		font-size: 14px;
	}
	
	.count-value {
		font-size: 12px;
	}
	
	.bar-container {
		height: 16px;
	}
	
	.performance-bar-container {
		height: 16px;
	}
	
	.positive-stat,
	.negative-stat {
		font-size: 12px;
	}
}

/* Video Stories Section on Homepage - Matching Berita Terbaru Style */
.video-stories-home-section {
    margin: 15px 0 15px 0;
    padding: 0;
}

.video-stories-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px;
}

.video-stories-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #212121;
    margin: 0;
}

.video-stories-title-line {
    width: 5px;
    height: 30px;
    background-color: #d32f2f;
    border-radius: 3px;
    flex-shrink: 0;
}

.video-stories-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.video-stories-more:hover {
    color: #b71c1c;
    gap: 8px;
}

.video-stories-more .material-icons {
    font-size: 20px;
}

/* Carousel style for video stories - matching berita terbaru */
.video-stories-carousel {
    position: relative;
    overflow: hidden;
    padding: 10px 0 10px 40px;
}

.video-stories-carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.video-stories-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Video Stories Carousel - Material Design */
.video-stories-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.video-stories-grid::-webkit-scrollbar {
    display: none;
}

.video-story-card {
    flex: 0 0 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    width: 140px !important;
    height: 249px !important;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.video-story-card:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.video-story-link {
    display: block;
}

.video-story-thumbnail {
    position: relative;
    width: 140px !important;
    height: 249px !important;
    background: #f5f5f5;
}

.video-story-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.video-overlay {
    display: none;
}

.video-play-icon {
    display: none;
}

.video-time-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.video-story-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 30px 10px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

/* Old carousel styles (keep for compatibility) */
.video-story-item-home {
    scroll-snap-align: start;
    flex: 0 0 250px; /* Fixed width to match the carousel behavior */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.video-story-item-home:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.video-story-item-home a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-story-item-home:hover .video-story-image {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    z-index: 5;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    z-index: 5;
}

.video-story-title {
    font-size: 14px;
    font-weight: 600;
    margin: 10px;
    color: #212121;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Vertical video story layout for mobile (TikTok/Reels style) */
.video-story-vertical-item {
    position: relative;
    width: 100%;
    height: 600px; /* Tall vertical format */
    background: black;
    overflow: hidden;
    border-radius: 8px;
}

.video-story-vertical-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-story-vertical-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.video-story-vertical-actions {
    position: absolute;
    right: 15px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.vertical-action-btn {
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border: none;
    transition: transform 0.2s;
}

.vertical-action-btn:hover {
    transform: scale(1.1);
}

.vertical-profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Desktop Popup Styles */
.video-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-popup-content {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.video-popup-left {
    flex: 1;
    position: relative;
}

.video-popup-right {
    width: 400px;
    padding: 20px;
    overflow-y: auto;
    background: white;
}

.popup-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-video-container video,
.popup-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-content-details h3 {
    margin-top: 0;
    font-size: 1.5em;
}

.popup-actions {
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.popup-like-btn,
.popup-share-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popup-like-btn {
    background: #f0f0f0;
    color: #333;
}

.popup-like-btn i.fas {
    color: red;
}

.popup-share-btn {
    background: #1877f2;
    color: white;
}

.comments-section {
    margin-top: 20px;
}

.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 10px;
}

.submit-comment {
    padding: 8px 15px;
    background: #00a6ed;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.comment-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-date {
    font-size: 0.8em;
    color: #888;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-story-card {
        flex: 0 0 120px;
        width: 120px;
    }
    
    .video-story-thumbnail {
        width: 120px;
        height: 213px;
    }
    
    .video-story-card-title {
        font-size: 11px;
        padding: 25px 8px 8px;
    }
    
    .video-time-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .video-stories-carousel {
        padding: 10px 0 10px 20px;
    }
    
    .video-story-item-home {
        flex: 0 0 200px;
    }
    
    .video-thumbnail {
        height: 150px;
    }
    
    .video-story-vertical-item {
        height: calc(100vh - 100px);
    }
    
    .video-popup-content {
        flex-direction: column;
        height: 90%;
        width: 95%;
    }
    
    .video-popup-right {
        width: 100%;
        height: 40%;
    }
}

@media (max-width: 480px) {
    .video-story-card {
        flex: 0 0 100px;
        width: 100px;
    }
    
    .video-story-thumbnail {
        width: 100px;
        height: 178px;
    }
    
    .video-story-card-title {
        font-size: 10px;
        padding: 20px 6px 6px;
    }
    
    .video-time-badge {
        font-size: 9px;
        padding: 2px 5px;
        top: 6px;
        right: 6px;
    }
    
    .video-stories-home-section {
        margin: 12px 0 10px 0;
        padding: 0;
    }
    
    .video-stories-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .video-stories-title {
        display: flex;
        align-items: center;
        font-size: 18px;
        gap: 10px;
        margin: 0;
    }
    
    .video-stories-title-line {
        width: 4px;
        height: 22px;
    }
    
    .video-stories-more {
        display: flex;
        align-items: center;
        font-size: 11px;
        gap: 3px;
        white-space: nowrap;
    }
    
    .video-stories-more .material-icons {
        font-size: 14px;
    }
}
/* Cache buster 040426 */

/* Video Stories Archive Page */
.video-stories-archive-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.video-stories-archive-header {
    margin-bottom: 30px;
}

.video-stories-archive-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    color: #212121;
    margin: 0;
}

.video-stories-archive-title-line {
    width: 5px;
    height: 35px;
    background-color: #d32f2f;
    border-radius: 3px;
    flex-shrink: 0;
}

.video-stories-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Mobile spacing override */
@media (max-width: 768px) {
    .video-stories-archive-container .video-stories-archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .video-stories-archive-container .video-stories-archive-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        row-gap: 12px !important;
        column-gap: 12px !important;
    }
    
    .video-stories-archive-grid .video-story-card {
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    .video-stories-archive-grid .video-story-thumbnail {
        width: 100% !important;
    }
}

.video-stories-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.video-stories-pagination .pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.video-stories-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.video-stories-pagination .page-numbers:hover {
    background: #f5f5f5;
    border-color: #d32f2f;
    color: #d32f2f;
}

.video-stories-pagination .page-numbers.current {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

.video-stories-pagination .page-numbers .material-icons {
    font-size: 20px;
}

.no-video-stories {
    text-align: center;
    padding: 60px 20px;
    color: #757575;
    font-size: 16px;
}

@media (max-width: 768px) {
    .video-stories-archive-container {
        padding: 20px 15px;
    }
    
    .video-stories-archive-title {
        font-size: 24px;
        gap: 12px;
    }
    
    .video-stories-archive-title-line {
        width: 4px;
        height: 28px;
    }
    
    .video-stories-archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .video-stories-archive-title {
        font-size: 20px;
        gap: 10px;
    }
    
    .video-stories-archive-title-line {
        height: 24px;
    }
    
    .video-stories-archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)) !important;
        gap: 15px !important;
    }
    
    .video-stories-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 14px;
    }
}
/* Force reload 041158 */

/* FORCE FOOTER MENU PRECISE v1.2.1 */
.footer-menu-wrapper {
    display: block !important;
    width: 100% !important;
    margin: 30px 0 !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.footer-navigation {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.footer-menu, 
#menu-footer-menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px 0 !important; /* Jarak vertikal saja */
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none !important;
    max-width: 900px !important;
}

.footer-menu li,
#menu-footer-menu li {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
    padding: 0 25px !important; /* Jarak horizontal presisi */
}

/* Garis Tipis Antar Menu - Posisi Absolut agar tidak menggeser teks */
.footer-menu li:not(:last-child)::after,
#menu-footer-menu li:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 14px !important;
    background-color: rgba(255,255,255,0.2) !important;
}

@media (max-width: 768px) {
    .footer-menu li,
    #menu-footer-menu li {
        padding: 0 15px !important; /* Lebih rapat di mobile */
    }
}

.footer-menu a,
#menu-footer-menu a {
    color: #bdbdbd !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: block !important;
    padding: 5px 0 !important;
    transition: color 0.2s ease !important;
}

.footer-menu a:hover,
#menu-footer-menu a:hover {
    color: #ffffff !important;
}
/*--------------------------------------------------------------
# Berita Foto Single Page
--------------------------------------------------------------*/
.berita-foto-slider-wrapper {
	margin-bottom: 30px;
	position: relative;
}

.berita-foto-slider-wrapper .headline-slider {
	height: 600px; /* Lebih tinggi untuk berita foto */
	background-color: #000;
}

.photo-slide-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	pointer-events: none;
	z-index: 1;
}

.photo-slide-info {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	z-index: 2;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.photo-slide-caption {
	max-width: 80%;
	font-size: 14px;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.photo-slide-caption .material-icons {
	font-size: 18px;
	margin-top: 2px;
}

.photo-slide-counter {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
}

.photo-slide-counter .material-icons {
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.berita-foto-slider-wrapper .headline-slider {
		height: 400px;
	}
	
	.photo-slide-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.photo-slide-caption {
		max-width: 100%;
		font-size: 12px;
	}
}

/*--------------------------------------------------------------
# Photo Grid & Cards (Kategori Foto)
--------------------------------------------------------------*/
.photo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.photo-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.photo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.photo-card-thumbnail {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.photo-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.photo-card:hover .photo-card-image {
	transform: scale(1.05);
}

.photo-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease;
	gap: 10px;
}

.photo-card-overlay .material-icons {
	font-size: 32px;
}

.photo-card-overlay span:not(.material-icons) {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.photo-card:hover .photo-card-overlay {
	opacity: 1;
}

.photo-card-content {
	padding: 20px;
	flex-grow: 1;
}

.photo-card-title {
	font-size: 18px;
	line-height: 1.4;
	margin: 0 0 12px 0;
	font-weight: 700;
}

.photo-card-title a {
	color: #1a1a1a;
	text-decoration: none;
}

.photo-card-title a:hover {
	color: #d32f2f;
}

.photo-card-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #757575;
}

.photo-card-meta .material-icons {
	font-size: 16px;
}

body.dark-mode .photo-card {
	background: #1e1e1e;
	box-shadow: none;
	border: 1px solid #2c2c2c;
}

body.dark-mode .photo-card-title a {
	color: #e0e0e0;
}

@media screen and (max-width: 600px) {
	.photo-grid {
		grid-template-columns: 1fr;
	}
	
	.photo-card-thumbnail {
		height: 200px;
	}
}

.chat-user-meta-footer {
	padding: 10px 15px;
	font-size: 12px;
	color: #757575;
	display: flex;
	gap: 5px;
	justify-content: flex-start;
}

.chat-user-meta-footer a {
	color: #d32f2f;
	font-weight: 600;
	text-decoration: none;
}

.chat-user-meta-footer a:hover {
	text-decoration: underline;
}

body.dark-mode .chat-user-meta-footer {
	color: #999;
}

/* Dark Mode Chat & Auth Popup */
body.dark-mode .chat-model-comments {
	background: #1e1e1e;
	border-color: #2c2c2c;
}

body.dark-mode .chat-model-comments .comments-header {
	background: #242424;
	border-bottom-color: #2c2c2c;
}

body.dark-mode .chat-model-comments .chat-container {
	background: #121212;
}

body.dark-mode .chat-bubble-content {
	background: #2c2c2c;
	color: #e0e0e0;
	box-shadow: none;
}

body.dark-mode .chat-author-name {
	color: #cbd5e1;
}

body.dark-mode .chat-text {
	color: #e2e8f0;
}

body.dark-mode .chat-time {
	color: #64748b;
}

body.dark-mode .chat-form {
	background: #1e1e1e;
	border-top-color: #2c2c2c;
}

body.dark-mode .chat-input-field {
	background: #242424;
	border-color: #2c2c2c;
	color: #fff;
}

body.dark-mode .chat-input-field:focus {
	background: #2c2c2c;
	border-color: #00a9b8;
}

body.dark-mode .chat-login-prompt {
	background: #1e1e1e;
	border-top-color: #2c2c2c;
}

body.dark-mode .chat-input-placeholder {
	background: #242424;
	border-color: #2c2c2c;
	color: #64748b;
}

body.dark-mode .chat-overlay-prompt {
	background: rgba(30, 30, 30, 0.9);
}

body.dark-mode .chat-overlay-prompt p {
	color: #e2e8f0;
}

body.dark-mode .auth-popup-content {
	background: #1e1e1e;
	color: #e2e8f0;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}

body.dark-mode .auth-tabs {
	border-bottom-color: #2c2c2c;
}

body.dark-mode .auth-tab {
	color: #64748b;
}

body.dark-mode .auth-tab.active {
	color: #00a9b8;
}

body.dark-mode .auth-form-container h3 {
	color: #fff;
}

body.dark-mode .auth-form-container p {
	color: #94a3b8;
}

body.dark-mode .auth-field label {
	color: #cbd5e1;
}

body.dark-mode #loginform label {
	color: #cbd5e1;
}

body.dark-mode #loginform input[type="text"], 
body.dark-mode #loginform input[type="password"],
body.dark-mode .auth-field input {
	background: #242424;
	border-color: #2c2c2c;
	color: #fff;
}

body.dark-mode .auth-footer {
	color: #94a3b8;
}

body.dark-mode .reg-pass-note {
	color: #64748b;
}

body.dark-mode .auth-popup-close {
	color: #64748b;
}

/* End Force */

/*--------------------------------------------------------------
# Topik Populer Section
--------------------------------------------------------------*/
.topik-home-section {
	margin: 0;
	padding: 0;
}

.topik-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #212121;
}

.topik-title-line {
	width: 4px;
	height: 24px;
	background: #d32f2f;
	border-radius: 2px;
}

.topik-carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.topik-slides {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	padding: 5px 0 15px 0;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

/* Custom Scrollbar for Desktop */
.topik-slides::-webkit-scrollbar {
	height: 4px;
}

.topik-slides::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.05);
	border-radius: 10px;
}

.topik-slides::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.1);
	border-radius: 10px;
}

.topik-slides::-webkit-scrollbar-thumb:hover {
	background: #00a9b8;
}

@media (max-width: 768px) {
	.topik-slides::-webkit-scrollbar {
		display: none;
	}
	.topik-slides {
		scrollbar-width: none;
	}
}

.topik-item {
	flex: 0 0 220px;
	scroll-snap-align: start;
	text-decoration: none;
}

.topik-image-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.topik-item:hover .topik-image-wrapper {
	transform: translateY(-5px);
}

.topik-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.topik-item:hover .topik-img {
	transform: scale(1.1);
}

.topik-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.topik-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.topik-name {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.topik-post-count {
	color: rgba(255,255,255,0.9);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {
	.topik-item {
		flex: 0 0 180px;
	}
	
	.topik-image-wrapper {
		height: 240px;
	}
	
	.topik-name {
		font-size: 16px;
	}
	
	.topik-home-section {
		margin: 0;
		padding: 0;
	}

	.topik-nav {
		width: 32px;
		height: 32px;
	}

	.topik-nav .material-icons {
		font-size: 20px;
	}
}

/*--------------------------------------------------------------
# Kempal Plus Page
--------------------------------------------------------------*/
.kempal-plus-page {
	background-color: #000;
	color: #fff;
	min-height: 100vh;
	padding-bottom: 80px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.kempal-plus-header {
	padding: 80px 0 60px;
	text-align: center;
	background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
	border-bottom: 1px solid #222;
}

.kempal-plus-logo {
	font-size: 56px;
	font-weight: 900;
	letter-spacing: -3px;
	margin-bottom: 15px;
	text-transform: lowercase;
}

.kempal-plus-logo span {
	color: #00a9b8;
	text-transform: uppercase;
	font-style: italic;
}

.kempal-plus-description {
	font-size: 20px;
	color: #999;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 400;
}

.kempal-plus-section {
	margin-top: 60px;
}

.kempal-plus-section-title {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 12px;
	letter-spacing: -0.5px;
}

.kempal-plus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.kempal-plus-card {
	position: relative;
	height: 450px;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid #1a1a1a;
}

.kempal-plus-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: #333;
	box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.kempal-plus-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.kempal-plus-card:hover .kempal-plus-card-image {
	transform: scale(1.1);
}

.kempal-plus-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.95) 100%);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.kempal-plus-card-badge {
	position: absolute;
	top: 25px;
	left: 25px;
	background: #00a9b8;
	color: #000;
	padding: 5px 14px;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 10px rgba(0, 169, 184, 0.3);
}

.kempal-plus-card-title {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.2;
	letter-spacing: -0.3px;
}

.kempal-plus-card-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #00a9b8;
	font-weight: 700;
	background: rgba(0, 169, 184, 0.1);
	width: fit-content;
	padding: 4px 12px;
	border-radius: 6px;
}

.kempal-plus-card-info i {
	font-size: 14px;
}

@media (max-width: 1024px) {
	.kempal-plus-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.kempal-plus-header {
		padding: 60px 20px 40px;
	}
	.kempal-plus-logo {
		font-size: 42px;
	}
	.kempal-plus-description {
		font-size: 16px;
	}
	.kempal-plus-grid {
		grid-template-columns: 1fr;
		padding: 0 15px;
	}
	.kempal-plus-card {
		height: 400px;
	}
	.kempal-plus-section-title {
		padding-left: 15px;
	}
}

/*--------------------------------------------------------------
# Desktop Navigation Horizontal Scroll
--------------------------------------------------------------*/
.kumparan-primary-nav {
	padding: 0 !important;
	height: 38px !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scrollbar-width: none !important; /* Hide scrollbar for Firefox by default */
	-webkit-overflow-scrolling: touch !important;
	display: block !important;
	width: 100% !important;
	cursor: grab;
	user-select: none;
	transition: scrollbar-color 0.3s;
}

.kumparan-primary-nav:hover {
	scrollbar-width: thin !important; /* Show scrollbar for Firefox on hover */
	scrollbar-color: #eee transparent !important;
}

.kumparan-primary-nav:active {
	cursor: grabbing;
}

.kumparan-primary-nav::-webkit-scrollbar {
	height: 4px !important;
	display: block !important;
}

.kumparan-primary-nav::-webkit-scrollbar-track {
	background: transparent !important;
}

.kumparan-primary-nav::-webkit-scrollbar-thumb {
	background-color: transparent !important; /* Hidden by default */
	border-radius: 10px !important;
	transition: background-color 0.3s;
}

.kumparan-primary-nav:hover::-webkit-scrollbar-thumb {
	background-color: #eee !important; /* Thin gray on hover */
}

body.dark-mode .kumparan-primary-nav:hover::-webkit-scrollbar-thumb {
	background-color: #333 !important;
}

.kumparan-nav-scroll {
	display: flex !important;
	flex-wrap: nowrap !important;
	padding: 0 !important;
	height: 38px !important;
	align-items: center !important;
	width: max-content !important;
	min-width: 100% !important;
}

.kumparan-nav-item {
	white-space: nowrap !important;
	flex-shrink: 0 !important;
}

@media (max-width: 768px) {
	.kumparan-primary-nav {
		height: auto !important;
	}
	.kumparan-nav-scroll {
		height: auto !important;
		padding-bottom: 5px !important;
	}
}

/*--------------------------------------------------------------
# Article Tags Button Style
--------------------------------------------------------------*/
.single-post-tags {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tags-label {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background-color: #f1f5f9;
    color: #475569 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.tag-link:hover {
    background-color: #00a9b8;
    color: #ffffff !important;
    border-color: #00a9b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 169, 184, 0.2);
}

/* Dark Mode Adjustment */
body.dark-mode .tags-label {
    color: #ffffff;
}

body.dark-mode .tag-link {
    background-color: #1e293b;
    color: #94a3b8 !important;
    border-color: #334155;
}

body.dark-mode .tag-link:hover {
    background-color: #00a9b8;
    color: #ffffff !important;
    border-color: #00a9b8;
}

