/*!
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.0.0
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;
}

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

/*--------------------------------------------------------------
# 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: 0 4px 8px rgba(0,0,0,0.2);
	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: 0 2px 8px rgba(211, 47, 47, 0.25);
	display: flex;
	align-items: center;
	gap: 8px;
}

.breaking-news-label::before {
	content: '🔴';
	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: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.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 - Horizontal Scroll */
.single-post-related {
	margin: 30px 0 20px 0;
	padding: 0;
	background: transparent;
}

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

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

.related-posts-scroll {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding-bottom: 10px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #d32f2f #f5f5f5;
}

.related-posts-scroll::-webkit-scrollbar {
	height: 6px;
}

.related-posts-scroll::-webkit-scrollbar-track {
	background: #f5f5f5;
	border-radius: 10px;
}

.related-posts-scroll::-webkit-scrollbar-thumb {
	background: #d32f2f;
	border-radius: 10px;
}

.related-posts-scroll::-webkit-scrollbar-thumb:hover {
	background: #b71c1c;
}

.related-post-item {
	flex: 0 0 280px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

.related-post-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transform: translateY(-3px);
}

.related-post-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.related-post-thumbnail {
	width: 100%;
	height: 160px;
	overflow: hidden;
	position: relative;
}

.related-post-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.related-post-content {
	padding: 15px;
}

.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;
	-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: 50px;
	padding-top: 40px;
	border-top: 2px solid #e0e0e0;
}

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

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

.comments-title .material-icons {
	font-size: 28px;
	color: #d32f2f;
}

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

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

.comment-body {
	display: flex;
	gap: 20px;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: box-shadow 0.3s;
}

.comment-body:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.comment-avatar-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid #f5f5f5;
}

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

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

.comment-author {
	font-weight: 600;
	color: #212121;
	font-style: normal;
	font-size: 16px;
}

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

.comment-time {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: #757575;
}

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

.comment-text {
	font-size: 15px;
	line-height: 1.6;
	color: #424242;
	margin-bottom: 15px;
}

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

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

.comment-actions a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px;
	background-color: #f5f5f5;
	color: #212121;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s;
}

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

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

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

.modern-comment-item .children .comment-body {
	background-color: #fafafa;
	border-left: 3px solid #d32f2f;
}

/* Comment Form */
.comment-respond {
	margin-top: 40px;
	padding: 30px;
	background-color: #f8f9fa;
	border-radius: 8px;
	box-shadow: none;
	border: 1px solid #e0e0e0;
}

.comment-reply-title {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #212121;
	margin-bottom: 15px;
}

.comment-reply-title .material-icons {
	font-size: 24px;
	color: #d32f2f;
}

.comment-notes {
	font-size: 13px;
	color: #757575;
	margin-bottom: 20px;
	line-height: 1.5;
}

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

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

.comment-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #424242;
	margin-bottom: 8px;
}

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

.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: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	transition: all 0.3s;
	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: #d32f2f;
	box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

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

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #424242;
	margin-top: 5px;
}

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

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

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

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

.submit-btn:hover {
	background-color: #b71c1c;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

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

.cancel-comment-reply-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-left: 15px;
	color: #757575;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

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

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

/* No Comments Yet */
.no-comments-yet {
	text-align: center;
	padding: 60px 20px;
	background-color: #fafafa;
	border-radius: 8px;
	margin-bottom: 30px;
}

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

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

.no-comments-title {
	font-size: 18px;
	font-weight: 700;
	color: #212121;
	margin: 0 0 10px 0;
}

.no-comments-text {
	font-size: 14px;
	color: #757575;
	margin: 0;
}

.no-comments {
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 6px;
	text-align: center;
	color: #757575;
	font-size: 14px;
}

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

.comment-navigation a {
	padding: 10px 20px;
	background-color: #f5f5f5;
	color: #212121;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
}

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

/*--------------------------------------------------------------
# Category Featured Headline (Single, No Slider)
--------------------------------------------------------------*/
.category-featured-headline {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	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: 0 4px 12px rgba(0,0,0,0.15);
	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;
}

.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;
	transition: transform 0.5s ease;
}

.rekomendasi-item {
	flex: 0 0 calc(33.333% - 14px);
	background-color: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s;
}

.rekomendasi-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.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;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

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

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

.rekomendasi-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: transparent;
	border: none;
	color: #212121;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	z-index: 10;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	background-color: #fff;
}

.rekomendasi-nav:hover {
	background-color: #f5f5f5;
	transform: translateY(-50%) scale(1.1);
}

.rekomendasi-prev {
	left: 10px;
}

.rekomendasi-next {
	right: 10px;
}

.rekomendasi-nav .material-icons {
	font-size: 24px;
}

/*--------------------------------------------------------------
# Regional Section - Carousel
--------------------------------------------------------------*/
.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: 0 2px 6px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
}

.regional-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.regional-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transition: transform 0.3s ease;
}

.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: 0 2px 4px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s;
}

.berita-terbaru-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.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: translateY(-2px);
	box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

.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: #fff;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/*--------------------------------------------------------------
# Trend 7 Berita Widget
--------------------------------------------------------------*/
.trend-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.trend-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s;
}

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

.trend-item:hover {
	background-color: #fafafa;
	padding-left: 8px;
	padding-right: 8px;
	margin-left: -8px;
	margin-right: -8px;
	border-radius: 6px;
	transform: translateX(4px);
}

.trend-number {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
	color: #fff;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 600;
	flex-shrink: 0;
	box-shadow: 0 2px 4px rgba(211, 47, 47, 0.2);
	transition: transform 0.3s;
}

.trend-item:hover .trend-number {
	transform: scale(1.1);
	box-shadow: 0 3px 6px rgba(211, 47, 47, 0.3);
}

.trend-content-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.trend-link {
	color: #212121;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.3s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 2.8em;
}

.trend-link:hover {
	color: #d32f2f;
}

.trend-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 2px;
}

.trend-views {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 10px;
	color: #9e9e9e;
	font-weight: 400;
}

.trend-views .material-icons {
	font-size: 12px;
	color: #bdbdbd;
}

/*--------------------------------------------------------------
# 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: 0 2px 4px rgba(211, 47, 47, 0.3);
}

.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: translateY(-1px);
	box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

/*--------------------------------------------------------------
# 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 {
	border-top: 1px solid #424242;
	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-menu-wrapper {
	margin: 30px 0;
	padding: 25px 0;
	border-top: 1px solid #424242;
	border-bottom: 1px solid #424242;
}

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

/*--------------------------------------------------------------
# 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: 0 2px 4px rgba(0,0,0,0.05);
}

.post-nav-link:hover .post-nav-content {
	border-color: #d32f2f;
	box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15);
}

/* 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;
	-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: 0 2px 4px rgba(0,0,0,0.05);
}

.page-links a:hover {
	background-color: #d32f2f;
	border-color: #d32f2f;
	color: #fff;
	box-shadow: 0 4px 8px rgba(211, 47, 47, 0.2);
	transform: translateY(-2px);
}

/* Current page */
.page-links > span:not(:first-child) {
	background-color: #d32f2f;
	border-color: #d32f2f;
	color: #fff;
	box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

/*--------------------------------------------------------------
# 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: 0 2px 8px rgba(0,0,0,0.1);
}

.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: 0 2px 8px rgba(0,0,0,0.08);
	transition: all 0.3s;
	position: relative;
}

.trending-item:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	transform: translateY(-2px);
}

/* 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: 0 4px 12px rgba(211, 47, 47, 0.3);
}

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

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

.trending-item:nth-child(3) .rank-number {
	background: linear-gradient(135deg, #CD7F32 0%, #B8732D 100%);
	box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
	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: 0 4px 12px rgba(0,0,0,0.1);
}

.region-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.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: 0 1px 6px rgba(32,33,36,.28);
}

.search-page-input:focus {
	border-color: transparent;
	box-shadow: 0 1px 6px rgba(32,33,36,.28);
}

.search-page-input:hover {
	box-shadow: 0 1px 6px rgba(32,33,36,.35);
}

.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: 0 2px 4px rgba(0,0,0,0.1);
}

.search-page-button:hover {
	background-color: #b71c1c;
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
	transform: translateY(-2px);
}

.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;
	-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: 0 1px 3px rgba(60,64,67,.3);
	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: 0 1px 6px rgba(32,33,36,.28);
	transform: none;
	border-color: #dadce0;
}

.search-results .berita-terbaru-pagination .current {
	background-color: #d32f2f;
	color: #fff;
	box-shadow: 0 2px 4px rgba(211,47,47,.3);
	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: 0 1px 3px rgba(0,0,0,0.1);
	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: 0 2px 6px rgba(211, 47, 47, 0.3);
}

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

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
	/* Mobile Container */
	.container-1100 {
		padding: 0;
		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 15px;
	}
	
	.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 */
	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: 0 2px 4px rgba(0,0,0,0.1) !important;
		position: sticky !important;
		top: 0 !important;
		z-index: 1000 !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	.site-header .container-1100 {
		padding: 0 15px !important;
		margin: 0 auto !important;
		max-width: 100% !important;
		box-sizing: border-box !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 15px !important;
		margin: 0 auto !important;
	}
	
	.header-main-row {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: nowrap;
		padding: 0;
		margin: 0;
	}
	
	.header-logo {
		flex: 0 0 auto;
	}
	
	.header-logo .site-title {
		font-size: 22px;
		margin: 0;
	}
	
	.header-logo .site-title a {
		color: #d32f2f;
	}
	
	.header-logo .custom-logo-link img {
		max-height: 40px;
	}
	
	.header-search-wrapper {
	display: none;
}

	.header-social {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		background: transparent;
		border: none;
		color: #212121;
		cursor: pointer;
		padding: 0;
		flex: 0 0 auto;
		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: 2px 0 8px rgba(0,0,0,0.2);
		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;
	}
	
	/* Ensure icon colors are preserved */
	.mobile-category-menu-item .menu-icon[style*="color"] {
		/* Icon color is set inline, so it 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 15px;
		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 15px;
		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 15px !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 15px !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: 20px 0;
		border-top: 1px solid rgba(255,255,255,0.1);
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	
	.footer-menu {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.footer-menu li {
		width: 100%;
	}
	
	.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 15px;
	}
	
	.headline-slider {
		height: 240px;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	}
	
	.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;
		-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 15px;
	}
	
	.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 15px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	.berita-terbaru-section {
		padding: 0 15px;
		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: 0 1px 3px rgba(0,0,0,0.1);
	}
	
	.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;
		-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 15px;
		margin-top: 40px;
		box-sizing: border-box;
	}
	
	/* Widget Styling Mobile */
	.widget {
		margin-bottom: 30px;
		padding: 20px;
		background-color: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 4px rgba(0,0,0,0.08);
	}
	
	.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: 0 -2px 8px rgba(0,0,0,0.1);
	}
	
	.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: 56px;
		height: 56px;
		border-radius: 50%;
		background-color: #d32f2f;
		color: #fff;
		box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
		margin-top: -20px;
	}
	
	.mobile-nav-add .material-icons {
		font-size: 28px;
	}
	
	.mobile-nav-add:hover {
		background-color: #b71c1c;
		transform: scale(1.05);
	}
	
	.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 15px;
	}
	
	.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 15px !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 15px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	.breadcrumb {
		font-size: 12px;
		margin-bottom: 15px;
		padding: 0 15px;
		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 {
		margin: 30px 0;
	}
	
	.related-title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	
	.related-list-modern {
		gap: 0;
	}
	
	.related-item-title-modern {
		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: 0 2px 8px rgba(0,0,0,0.15);
	}
	
	.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: 0 2px 6px rgba(0,0,0,0.2);
	}
	
	.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 15px;
	}
	
	/* 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 {
		margin: 20px 0 15px 0;
		padding: 0;
	}
	
	.single-post-related .related-title {
		font-size: 16px;
		margin-bottom: 15px;
		gap: 8px;
	}
	
	.single-post-related .related-title .material-icons {
		font-size: 20px;
	}
	
	.related-posts-scroll {
		gap: 12px;
		padding-bottom: 8px;
	}
	
	.related-posts-scroll::-webkit-scrollbar {
		height: 4px;
	}
	
	.related-post-item {
		flex: 0 0 240px;
		border-radius: 6px;
	}
	
	.related-post-thumbnail {
		height: 140px;
	}
	
	.related-post-image {
		height: 140px;
	}
	
	.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 15px !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 15px !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: 15px !important;
		padding-right: 15px !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	/* Search Page Form - Google Style */
	.search-page-form-wrapper {
		padding: 0 15px;
		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: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
	}
	
	.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: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
	}
	
	.search-page-button .material-icons {
		font-size: 24px;
	}
	
	/* Search Page Form Mobile */
	@media (max-width: 768px) {
		.search-page-form-wrapper {
			padding: 0 15px !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;
		-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 15px;
		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: 50px;
		height: 50px;
		margin-top: -18px;
	}
	
	.mobile-nav-add .material-icons {
		font-size: 26px;
	}
	
	.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 15px !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: 0 2px 10px rgba(0,0,0,0.1);
}

.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: 0 2px 10px rgba(0,0,0,0.1);
}

.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: 0 2px 4px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.video-story-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
    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;
    -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: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.video-story-item-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.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;
    -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 */
