/**
 * Trusty News Theme - Bright & Modern Media Portal
 * Responsive, Pixel-Perfect, Light Aesthetic with Customizable Primary Accent
 * Developed by Rifan Muazin (https://ebot.my.id)
 */

/* ==================== 1. CSS VARIABLES & THEME TOKENS ==================== */
:root {
	--tos-bg: #F8FAFC;
	--tos-bg-surface: #FFFFFF;
	--tos-card-bg: #FFFFFF;
	--tos-border: #E2E8F0;
	--tos-border-subtle: #F1F5F9;
	--tos-border-hover: #CBD5E1;
	--tos-text-heading: #0F172A;
	--tos-text-body: #334155;
	--tos-text-muted: #64748B;
	--tos-text-light: #94A3B8;
	--tos-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
	--tos-shadow-md: 0 4px 16px -2px rgba(0, 0, 0, 0.07);
	--tos-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);

	/* Default Primary Accent (Red) - Overridden by Customizer */
	--tos-primary: #E1031F;
	--tos-primary-hover: #C0021A;
	--tos-primary-light: #FEE2E2;
	--tos-primary-glow: rgba(225, 3, 31, 0.25);
	--tos-badge-text: #FFFFFF;
}

/* ==================== 2. RESET & BASE ==================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	background-color: var(--tos-bg);
	color: var(--tos-text-body);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.tos-dark-body,
body {
	background-color: var(--tos-bg) !important;
	color: var(--tos-text-body);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

/* WP Admin Bar offset compatibility */
body.admin-bar .cFXEmV {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .cFXEmV {
		top: 46px;
	}
}

a {
	color: var(--tos-text-heading);
	text-decoration: none;
	transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
	color: var(--tos-primary);
}

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

ul, ol {
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: transparent;
}

/* Main Container */
.gJhWK, .tushy-main-wrap {
	width: 100%;
	max-width: 1248px;
	margin: 0 auto;
	padding: 0 16px;
}


/* ==================== 3. HEADER (Bright Navbar) ==================== */
.cFXEmV {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	height: 62px;
	background-color: #FFFFFF;
	border-bottom: 1px solid var(--tos-border);
	z-index: 999;
	display: flex;
	align-items: center;
	padding: 0 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.iscluQ {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.ehrjgN {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1248px;
	margin: 0 auto;
	height: 100%;
}

/* Mobile Burger */
.cCnHYu {
	display: none;
}

@media (max-width: 1024px) {
	.cCnHYu {
		display: flex;
		align-items: center;
		margin-right: 12px;
		z-index: 10;
	}
}

.kIzUOG {
	position: relative;
	width: 24px;
	height: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
}

.gPMBcC {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--tos-text-heading);
	position: relative;
}

.gPMBcC::before, .gPMBcC::after {
	content: '';
	position: absolute;
	width: 22px;
	height: 2px;
	background-color: var(--tos-text-heading);
}

.gPMBcC::before { top: -6px; }
.gPMBcC::after { bottom: -6px; }

/* Logo */
.UuruY {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	flex-shrink: 0;
}

.tushy-logo-badge {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.5px;
	padding: 3px 8px;
	border-radius: 3px;
	line-height: 1.1;
	box-shadow: 0 2px 6px var(--tos-primary-glow);
}

.tushy-logo-text {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 1px;
	color: var(--tos-text-heading);
}

/* Nav Menu */
.cSCKmK {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

@media (max-width: 1024px) {
	.cSCKmK {
		display: none;
	}
}

.gZbaFT {
	font-size: 13px;
	font-weight: 700;
	color: var(--tos-text-body);
	text-transform: uppercase;
	padding: 8px 12px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.15s ease;
}

.gZbaFT span {
	color: inherit;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.gZbaFT:hover, .gZbaFT.active {
	color: var(--tos-primary);
	background-color: var(--tos-border-subtle);
}

/* Dropdown */
.hBUNBr {
	position: relative;
	display: flex;
	align-items: center;
}

.gYIWTe {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	flex-direction: column;
	align-items: center;
	padding-top: 8px;
	z-index: 100;
}

.hBUNBr:hover .gYIWTe {
	display: flex;
}

.dBDHkQ {
	fill: #FFFFFF;
	display: block;
	margin-bottom: -1px;
	filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.05));
}

.juzWJe {
	display: flex;
	flex-direction: column;
	min-width: 170px;
	background-color: #FFFFFF;
	box-shadow: var(--tos-shadow-lg);
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	overflow: hidden;
}

.boUGVk {
	cursor: pointer;
	display: block;
	text-decoration: none;
	white-space: nowrap;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	color: var(--tos-text-heading);
	padding: 10px 16px;
	border-bottom: 1px solid var(--tos-border-subtle);
	transition: background-color 0.15s, color 0.15s;
}

.boUGVk:last-child {
	border-bottom: none;
}

.boUGVk:hover {
	background-color: var(--tos-primary-light);
	color: var(--tos-primary);
}

/* Search Trigger */
.eobEvG {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

/* Primary CTA Button */
.ghQDVZ {
	background-color: var(--tos-primary);
	border: none;
	color: #FFFFFF !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 800;
	padding: 9px 18px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	border-radius: 4px;
	box-shadow: 0 2px 8px var(--tos-primary-glow);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.ghQDVZ:hover {
	background-color: var(--tos-primary-hover);
	transform: translateY(-1px);
}

.rwgmu {
	width: 11px;
	height: 11px;
	fill: #FEFEFE;
}

.cpeLFR {
	display: inline-flex;
	margin-left: 6px;
}

.ccKPVQ {
	display: none;
}

@media (max-width: 1024px) {
	.cpeLFR {
		display: none;
	}
	.ccKPVQ {
		display: inline-flex;
		margin-left: auto;
	}
}

/* Search Dropdown Modal */
.tos-search-modal {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #FFFFFF;
	border-bottom: 1px solid var(--tos-border);
	padding: 14px 16px;
	display: none;
	z-index: 1000;
	box-shadow: var(--tos-shadow-lg);
}

.tos-search-modal.active {
	display: block;
}

.tos-search-modal-inner {
	max-width: 1248px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
}

.tos-search-form {
	flex: 1;
}

.tos-search-input-wrap {
	display: flex;
	align-items: center;
	background-color: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	padding: 6px 12px;
}

.tos-search-field {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--tos-text-heading);
	font-size: 14px;
	outline: none;
}

.tos-search-submit {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	padding: 7px 16px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 4px;
	text-transform: uppercase;
}

.tos-search-close {
	color: var(--tos-text-muted);
	font-size: 24px;
	line-height: 1;
}

.tos-search-close:hover {
	color: var(--tos-text-heading);
}

/* Mobile Drawer */
.tos-mobile-drawer {
	position: fixed;
	top: 0;
	left: -300px;
	width: 280px;
	height: 100%;
	background-color: #FFFFFF;
	border-right: 1px solid var(--tos-border);
	z-index: 2000;
	transition: left 0.25s ease-out;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	box-shadow: var(--tos-shadow-lg);
}

.tos-mobile-drawer.open {
	left: 0;
}

.tos-mobile-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--tos-border);
}

.tos-drawer-close {
	color: var(--tos-text-muted);
	font-size: 24px;
}

.tos-mobile-menu li a {
	display: block;
	padding: 12px 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--tos-text-heading);
	border-bottom: 1px solid var(--tos-border-subtle);
	text-transform: uppercase;
}

.tos-drawer-backdrop {
	position: fixed;
	inset: 0;
	background-color: rgba(15, 23, 42, 0.4);
	backdrop-filter: blur(2px);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}

.tos-drawer-backdrop.open {
	opacity: 1;
	visibility: visible;
}


/* ==================== 4. TOP HERO SECTION (3-PANEL) ==================== */
.tushy-hero-dashboard {
	width: 100%;
	background-color: var(--tos-bg);
	padding: 20px 0 28px;
}

.tushy-hero-grid {
	display: grid;
	grid-template-columns: 240px 1fr 280px;
	gap: 18px;
	align-items: stretch;
}

/* Sidebar Left */
.tushy-hero-sidebar-left {
	display: flex;
}

.tushy-hero-sidebar-box {
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	padding: 16px;
	width: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: var(--tos-shadow-sm);
}

.tushy-sidebar-heading {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--tos-text-heading);
	margin-bottom: 2px;
}

.tushy-sidebar-sublabel {
	font-size: 11px;
	font-weight: 700;
	color: var(--tos-primary);
	text-transform: uppercase;
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--tos-border);
}

.tushy-sidebar-link-list {
	display: flex;
	flex-direction: column;
	gap: 3px;
	overflow-y: auto;
	max-height: 380px;
	padding-right: 4px;
}

.tushy-sidebar-link-list::-webkit-scrollbar {
	width: 4px;
}
.tushy-sidebar-link-list::-webkit-scrollbar-thumb {
	background: var(--tos-border);
	border-radius: 4px;
}

.tushy-sidebar-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--tos-text-body);
	border-radius: 4px;
	transition: all 0.15s ease;
}

.tushy-sidebar-item:hover, .tushy-sidebar-item.active {
	background-color: var(--tos-primary-light);
	color: var(--tos-primary);
}

.tushy-sidebar-item-name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tushy-sidebar-item-count {
	font-size: 11px;
	font-weight: 700;
	color: var(--tos-text-muted);
	margin-left: 6px;
}

/* Center VideoHero */
.tushy-hero-center {
	display: flex;
	position: relative;
	min-width: 0;
}

.tushy-video-hero-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 420px;
	border-radius: 6px;
	overflow: hidden;
	background-color: #000000;
	border: 1px solid var(--tos-border);
	box-shadow: var(--tos-shadow-md);
}

.tushy-video-hero-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.tushy-hero-img-box {
	position: absolute;
	inset: 0;
}

.tushy-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tushy-video-hero-link:hover .tushy-hero-img {
	transform: scale(1.03);
}

.tushy-hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.92) 100%);
	z-index: 1;
}

.tushy-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 2;
	transition: transform 0.2s ease;
}

.tushy-hero-play {
	width: 76px;
	height: 76px;
}

.tushy-video-hero-link:hover .tushy-hero-play {
	transform: translate(-50%, -50%) scale(1.08);
}

.tushy-play-svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}

.tushy-hero-info-overlay {
	position: absolute;
	bottom: 22px;
	left: 22px;
	right: 22px;
	z-index: 3;
}

.tushy-hero-badge {
	display: inline-block;
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 3px;
	margin-bottom: 8px;
	box-shadow: 0 2px 6px var(--tos-primary-glow);
}

.tushy-hero-title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
	color: #FFFFFF;
	margin-bottom: 8px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.tushy-hero-meta-row {
	display: flex;
	align-items: center;
	font-size: 13px;
	color: #E2E8F0;
}

.tushy-hero-author {
	color: #FFFFFF;
	font-weight: 700;
}

.tushy-hero-rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #FBBF24;
	font-weight: 700;
}

/* Sidebar Right */
.tushy-hero-sidebar-right {
	display: flex;
}

.tushy-popular-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow-y: auto;
	max-height: 380px;
	padding-right: 4px;
}

.tushy-pop-mini-card {
	display: grid;
	grid-template-columns: 85px 1fr;
	gap: 10px;
	padding: 8px;
	background-color: var(--tos-bg-surface);
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	box-shadow: var(--tos-shadow-sm);
	transition: all 0.15s ease;
}

.tushy-pop-mini-card:hover {
	border-color: var(--tos-primary);
	transform: translateY(-1px);
	box-shadow: var(--tos-shadow-md);
}

.tushy-pop-mini-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	background-color: var(--tos-border-subtle);
	border-radius: 3px;
	overflow: hidden;
}

.tushy-pop-mini-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tushy-pop-mini-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 18px;
	height: 18px;
}

.tushy-pop-mini-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.tushy-pop-mini-title {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--tos-text-heading);
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tushy-pop-mini-meta {
	font-size: 11px;
	color: var(--tos-text-muted);
	display: flex;
	align-items: center;
}

.tushy-pop-mini-rate {
	color: #D97706;
	font-weight: 700;
}


/* ==================== 5. SECTION TITLE HEADER ==================== */
.kDChhM {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 52px;
	margin: 20px 0 18px;
}

.dXfgbW {
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--tos-border);
	top: 50%;
	left: 0;
	z-index: 1;
}

.iSdyES {
	position: relative;
	z-index: 2;
	background-color: var(--tos-bg);
	padding: 0 20px;
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--tos-text-heading);
}

@media (max-width: 768px) {
	.iSdyES {
		font-size: 17px;
		padding: 0 12px;
	}
}


/* ==================== 6. VIDEO GRID & CARDS (Clean Grid) ==================== */
.csLdeY {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	width: 100%;
	margin-bottom: 36px;
}

.tushy-videos-grid-3 .csLdeY,
.tushy-videos-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	width: 100%;
	margin-bottom: 36px;
}

@media (max-width: 1024px) {
	.csLdeY, .tushy-videos-grid-3 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 14px;
	}
}

@media (max-width: 600px) {
	.csLdeY, .tushy-videos-grid-3 {
		grid-template-columns: 1fr !important;
		gap: 14px;
	}
}

.hgDpAz {
	width: 100%;
	min-width: 0;
	background: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: var(--tos-shadow-sm);
	transition: all 0.2s ease;
}

.hgDpAz:hover {
	transform: translateY(-2px);
	box-shadow: var(--tos-shadow-md);
	border-color: var(--tos-border-hover);
}

.IPIBs {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.cKdxoS {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #0F172A;
	display: block;
}

.inRsCN {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 4;
}

.cKdxoS img,
.cKdxoS .tushy-thumb-img-el,
.cKdxoS .wp-post-image {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.35s ease;
	display: block;
}

.cKdxoS:hover img,
.cKdxoS:hover .tushy-thumb-img-el,
.cKdxoS:hover .wp-post-image {
	transform: scale(1.06);
}

.hZRZmy {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 12px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
	z-index: 2;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.gMLSYJ {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: #CBD5E1;
	margin-bottom: 2px;
	letter-spacing: 0.5px;
}

.kueNwl {
	font-size: 13px;
	font-weight: 700;
	color: #FFFFFF;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kueNwl a {
	color: #FFFFFF;
	pointer-events: auto;
}

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

.dKRVfA {
	color: #CBD5E1;
}

.idhvVB {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	opacity: 0;
	pointer-events: none;
	width: 56px;
	height: 56px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.cKdxoS:hover .idhvVB {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.08);
}

.tushy-play-button svg,
.idhvVB svg,
.gohXXX {
	width: 100%;
	height: 100%;
	display: block;
}

/* Card Info Underneath */
.tushy-card-bottom-info {
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	background-color: #FFFFFF;
}

.tushy-card-title-line {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.tushy-card-title-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--tos-text-heading);
	line-height: 1.35;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tushy-card-title-link:hover {
	color: var(--tos-primary);
}

.tushy-rating-num-wrap {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 12px;
	font-weight: 700;
	color: #D97706;
	flex-shrink: 0;
}

.tushy-star-svg {
	width: 10px;
	height: 10px;
	fill: #D97706;
}

.tushy-card-meta-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--tos-text-muted);
}

.tushy-card-author-name a {
	color: var(--tos-text-muted);
	font-weight: 600;
}

.tushy-card-author-name a:hover {
	color: var(--tos-primary);
}


/* ==================== 7. FEATURED CATEGORIES TICKER ==================== */
.bOoWVj {
	margin: 20px 0 35px;
	background: #FFFFFF;
	border-top: 1px solid var(--tos-border);
	border-bottom: 1px solid var(--tos-border);
	padding: 14px 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	box-shadow: var(--tos-shadow-sm);
}

.tushy-feat-title {
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--tos-primary);
	padding: 0 20px;
	border-right: 1px solid var(--tos-border);
}

.tushy-feat-track-wrap {
	flex: 1;
	overflow: hidden;
	display: flex;
}

.tushy-feat-marquee {
	display: flex;
	align-items: center;
	gap: 32px;
	white-space: nowrap;
	animation: tushyTicker 30s linear infinite;
}

.tushy-feat-item {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--tos-text-muted);
	transition: color 0.15s, transform 0.15s;
}

.tushy-feat-item:hover {
	color: var(--tos-primary);
	transform: scale(1.04);
}

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


/* ==================== 8. VIRAL NEWS ==================== */
.tushy-upcoming-container {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 40px;
	box-shadow: var(--tos-shadow-md);
}

.tushy-upcoming-media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #0F172A;
}

.tushy-upcoming-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tushy-upcoming-container:hover .tushy-upcoming-img {
	transform: scale(1.03);
}

.tushy-upcoming-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 3px 9px;
	border-radius: 3px;
	z-index: 4;
	box-shadow: 0 2px 6px var(--tos-primary-glow);
}

.tushy-upcoming-details {
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tushy-upcoming-title {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	margin: 8px 0;
	color: var(--tos-text-heading);
}

.tushy-upcoming-excerpt {
	font-size: 14px;
	color: var(--tos-text-body);
	line-height: 1.6;
	margin-bottom: 20px;
}

.tushy-upcoming-bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: var(--tos-text-muted);
}

.tushy-btn-watch-trailer {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 800;
	padding: 8px 18px;
	border-radius: 4px;
	text-transform: uppercase;
	transition: background-color 0.15s;
}

.tushy-btn-watch-trailer:hover {
	background-color: var(--tos-primary-hover);
}


/* ==================== 9. SHOW ALL NEWS BUTTON ==================== */
.tushy-show-all-wrap {
	display: flex;
	justify-content: center;
	margin: 10px 0 40px;
}

.tushy-btn-show-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	color: var(--tos-text-heading);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	padding: 11px 32px;
	border-radius: 50px;
	text-transform: uppercase;
	box-shadow: var(--tos-shadow-sm);
	transition: all 0.15s ease;
}

.tushy-btn-show-all:hover {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	border-color: var(--tos-primary);
	box-shadow: 0 4px 12px var(--tos-primary-glow);
}


/* ==================== 10. AUTHORS GRID ==================== */
.tushy-performers-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	margin-bottom: 45px;
}

.tushy-performer-card {
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: var(--tos-shadow-sm);
	transition: all 0.2s ease;
}

.tushy-performer-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--tos-shadow-md);
	border-color: var(--tos-border-hover);
}

.tushy-performer-media {
	display: block;
	position: relative;
	aspect-ratio: 3 / 4;
	background-color: #0F172A;
	overflow: hidden;
}

.tushy-performer-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tushy-performer-card:hover .tushy-performer-img {
	transform: scale(1.06);
}

.tushy-performer-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 12px;
}

.tushy-performer-name {
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
}

.tushy-performer-count {
	font-size: 11px;
	color: #CBD5E1;
}


/* ==================== 11. SINGLE POST (2-COLUMN & RICH SIDEBAR) ==================== */
.tos-single-hero {
	position: relative;
	width: 100%;
	background-color: #0F172A;
	margin-bottom: 28px;
}

.tos-single-hero-media {
	position: relative;
	width: 100%;
	max-height: 600px;
	min-height: 380px;
	overflow: hidden;
}

.tos-single-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tos-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.9) 100%);
}

.tos-single-hero-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 76px;
	height: 76px;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.tos-single-content-wrap {
	padding-bottom: 60px;
}

/* 2-Column Single Layout Grid */
.tos-single-main-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 28px;
	margin-bottom: 45px;
}

.tos-single-primary-col {
	min-width: 0;
	background: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	padding: 30px;
	box-shadow: var(--tos-shadow-sm);
}

.tos-single-sidebar-col {
	width: 340px;
}

.tos-single-sidebar-sticky {
	position: sticky;
	top: 80px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Standard Featured Image Under Title */
.tos-single-featured-image-wrap {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 24px;
	border: 1px solid var(--tos-border);
	box-shadow: var(--tos-shadow-sm);
	background-color: var(--tos-bg);
}

.tos-single-featured-img {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

.tos-single-header {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--tos-border);
	padding-bottom: 16px;
}

.tos-single-cats {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
}

.tos-badge-cat {
	background-color: var(--tos-primary-light);
	color: var(--tos-primary);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
}

.tos-badge-cat:hover {
	background-color: var(--tos-primary);
	color: #FFFFFF;
}

.tos-single-title {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--tos-text-heading);
	margin-bottom: 16px;
}

.tos-single-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.tos-single-author-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tos-single-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--tos-primary-light);
}

.tos-single-by {
	font-size: 11px;
	color: var(--tos-text-muted);
	text-transform: uppercase;
	display: block;
}

.tos-single-author-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--tos-text-heading);
}

.tos-single-author-link:hover {
	color: var(--tos-primary);
}

.tos-single-stats {
	display: flex;
	align-items: center;
	font-size: 13px;
	color: var(--tos-text-muted);
}

.tos-meta-dot {
	margin: 0 6px;
	color: var(--tos-border-hover);
}

.tos-entry-content {
	font-size: 16px;
	line-height: 1.85;
	color: var(--tos-text-body);
}

.tos-entry-content p {
	margin-bottom: 22px;
}

.tos-entry-content h2, .tos-entry-content h3, .tos-entry-content h4 {
	color: var(--tos-text-heading);
	font-weight: 800;
	margin: 32px 0 16px;
}

.tos-entry-content blockquote {
	border-left: 4px solid var(--tos-primary);
	padding: 14px 20px;
	margin: 24px 0;
	background-color: var(--tos-bg);
	color: var(--tos-text-heading);
	font-style: italic;
	border-radius: 0 4px 4px 0;
}

.tos-single-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--tos-border);
}

.tos-tags-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--tos-text-heading);
}

.tos-tag-pill {
	background-color: var(--tos-bg);
	color: var(--tos-text-body);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 3px;
	border: 1px solid var(--tos-border);
	transition: all 0.15s;
}

.tos-tag-pill:hover {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	border-color: var(--tos-primary);
}

.tos-single-gallery-section {
	margin-top: 36px;
}

.tos-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 20px;
}

.tos-gallery-item {
	position: relative;
	aspect-ratio: 16 / 9;
	background-color: var(--tos-border-subtle);
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--tos-border);
}

.tos-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tos-gallery-item:hover .tos-gallery-img {
	transform: scale(1.06);
}


/* ==================== 12. SIDEBAR WIDGETS (WITH THUMBNAILS) ==================== */
.tos-sidebar-widget {
	background: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	padding: 16px;
	box-shadow: var(--tos-shadow-sm);
}

.tos-sidebar-widget-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--tos-text-heading);
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--tos-border-subtle);
}

.tos-widget-indicator {
	display: inline-block;
	width: 4px;
	height: 14px;
	background-color: var(--tos-primary);
	border-radius: 2px;
}

.tos-sidebar-mini-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tos-sidebar-mini-card {
	display: grid;
	grid-template-columns: 85px 1fr;
	gap: 10px;
	padding: 6px;
	background-color: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	transition: all 0.15s ease;
}

.tos-sidebar-mini-card:hover {
	border-color: var(--tos-primary);
	background-color: #FFFFFF;
	box-shadow: var(--tos-shadow-sm);
}

.tos-sidebar-mini-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	background-color: #0F172A;
	border-radius: 3px;
	overflow: hidden;
}

.tos-sidebar-mini-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tos-sidebar-mini-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 18px;
	height: 18px;
}

.tos-sidebar-thumb-badge {
	position: absolute;
	top: 3px;
	left: 3px;
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 9px;
	font-weight: 800;
	padding: 1px 4px;
	border-radius: 2px;
}

.tos-sidebar-mini-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.tos-sidebar-mini-title {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--tos-text-heading);
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tos-sidebar-mini-meta {
	font-size: 11px;
	color: var(--tos-text-muted);
	display: flex;
	align-items: center;
}

.tos-sidebar-mini-rate {
	color: #D97706;
	font-weight: 700;
}

/* Author Box Widget */
.tos-author-widget-card .tos-author-box-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 10px 0;
}

.tos-author-box-avatar-wrap {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--tos-primary-light);
	margin-bottom: 10px;
	box-shadow: var(--tos-shadow-sm);
}

.tos-author-box-avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tos-author-box-name {
	font-size: 16px;
	font-weight: 800;
	color: var(--tos-text-heading);
	margin-bottom: 2px;
}

.tos-author-box-count {
	font-size: 12px;
	font-weight: 600;
	color: var(--tos-primary);
	margin-bottom: 8px;
}

.tos-author-box-bio {
	font-size: 13px;
	color: var(--tos-text-body);
	line-height: 1.5;
	margin-bottom: 12px;
}

.tos-btn-author-view {
	display: inline-block;
	background-color: var(--tos-bg);
	border: 1px solid var(--tos-border);
	color: var(--tos-text-heading);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 4px;
	transition: all 0.15s;
}

.tos-btn-author-view:hover {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	border-color: var(--tos-primary);
}

/* Category Thumbs Widget */
.tos-sidebar-cat-thumbs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.tos-sidebar-cat-thumb-card {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--tos-border);
	display: block;
}

.tos-sidebar-cat-img-box {
	position: relative;
	aspect-ratio: 16 / 10;
	background-color: #0F172A;
}

.tos-sidebar-cat-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tos-sidebar-cat-thumb-card:hover .tos-sidebar-cat-img-box img {
	transform: scale(1.08);
}

.tos-sidebar-cat-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.85) 100%);
}

.tos-sidebar-cat-details {
	position: absolute;
	bottom: 6px;
	left: 8px;
	right: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.tos-sidebar-cat-name {
	font-size: 11px;
	font-weight: 700;
	color: #FFFFFF;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tos-sidebar-cat-badge {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 800;
	padding: 1px 5px;
	border-radius: 3px;
	flex-shrink: 0;
}


/* ==================== 13. PROPER & BEAUTIFUL COMMENTS ==================== */
.tos-comments-area {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--tos-border);
}

.tos-comments-header {
	margin-bottom: 24px;
}

.tos-comments-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--tos-text-heading);
	display: flex;
	align-items: center;
	gap: 8px;
}

.tos-comment-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 36px;
}

.tos-comment-item {
	list-style: none;
}

.tos-comment-body {
	display: flex;
	gap: 16px;
	background: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	padding: 18px;
	box-shadow: var(--tos-shadow-sm);
}

.tos-comment-avatar-wrap {
	flex-shrink: 0;
}

.tos-comment-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--tos-border);
}

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

.tos-comment-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.tos-comment-author-name .fn {
	font-size: 14px;
	font-weight: 800;
	color: var(--tos-text-heading);
}

.tos-author-badge {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 6px;
	text-transform: uppercase;
}

.tos-comment-metadata a {
	font-size: 12px;
	color: var(--tos-text-muted);
}

.tos-comment-text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--tos-text-body);
	margin-bottom: 10px;
}

.tos-comment-reply .comment-reply-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: var(--tos-primary);
	background: var(--tos-primary-light);
	padding: 4px 10px;
	border-radius: 3px;
	transition: all 0.15s;
}

.tos-comment-reply .comment-reply-link:hover {
	background: var(--tos-primary);
	color: #FFFFFF;
}

.tos-comment-list .children {
	margin-top: 14px;
	margin-left: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Comment Response Form */
.tos-comment-respond {
	background: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 6px;
	padding: 24px;
	box-shadow: var(--tos-shadow-sm);
}

.tos-reply-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--tos-text-heading);
	margin-bottom: 16px;
}

.tos-form-group {
	margin-bottom: 16px;
}

.tos-form-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--tos-text-heading);
	margin-bottom: 6px;
}

.tos-form-label .required {
	color: var(--tos-primary);
}

.tos-form-input, .tos-form-textarea {
	width: 100%;
	background: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	padding: 10px 14px;
	font-size: 14px;
	color: var(--tos-text-heading);
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.tos-form-input:focus, .tos-form-textarea:focus {
	border-color: var(--tos-primary);
	box-shadow: 0 0 0 3px var(--tos-primary-light);
}

.tos-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--tos-text-muted);
	cursor: pointer;
}

.tos-btn-submit-comment {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	border: none;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 10px 24px;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 2px 8px var(--tos-primary-glow);
	transition: all 0.15s;
}

.tos-btn-submit-comment:hover {
	background-color: var(--tos-primary-hover);
	transform: translateY(-1px);
}


/* ==================== 14. LOGO & HEADER STYLING ==================== */
.tos-header-logo-container {
	display: flex;
	align-items: center;
	min-height: 40px;
}

.tos-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	max-height: 44px;
}

.tushy-logo-badge {
	display: inline-block;
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-family: 'Outfit', 'Inter', sans-serif;
	font-weight: 900;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.8px;
	padding: 5px 9px;
	border-radius: 3px;
	text-transform: uppercase;
	transition: background-color 0.2s;
}

.tushy-logo-text {
	display: inline-block;
	color: var(--tos-text-heading);
	font-family: 'Outfit', 'Inter', sans-serif;
	font-weight: 900;
	font-size: 17px;
	line-height: 1;
	letter-spacing: 0.5px;
	margin-left: 6px;
	text-transform: uppercase;
}

.tos-site-logo-img,
.custom-logo,
.custom-logo-link img,
.tos-header-logo-container img,
a[data-test-component="LogoLink"] img {
	max-height: 38px !important;
	width: auto !important;
	max-width: 220px !important;
	height: auto !important;
	object-fit: contain !important;
	display: block !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
}


/* ==================== 15. SEARCH & ARCHIVE PAGE ==================== */
.tos-search-page {
	padding: 24px 0 60px;
}

.tos-filter-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--tos-border);
	margin-bottom: 24px;
}

.tos-filter-title-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.tos-filter-title {
	font-size: 22px;
	font-weight: 900;
	color: var(--tos-text-heading);
	margin: 0;
	letter-spacing: -0.5px;
}

.tos-clear-filter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--tos-text-muted);
	padding: 4px 10px;
	background-color: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.15s;
}

.tos-clear-filter:hover {
	color: var(--tos-primary);
	border-color: var(--tos-primary);
}

.tos-clear-svg {
	width: 10px;
	height: 10px;
	max-width: 10px;
	max-height: 10px;
	flex-shrink: 0;
}

.tos-filter-controls {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tos-sort-dropdown {
	position: relative;
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	padding: 8px 14px;
	cursor: pointer;
}

.tos-sort-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
}

.tos-sort-prefix {
	color: var(--tos-text-muted);
}

.tos-sort-current {
	font-weight: 700;
	color: var(--tos-primary);
}

.tos-sort-arrow {
	width: 10px;
	height: 6px;
	margin-left: 4px;
	stroke: var(--tos-text-muted);
	flex-shrink: 0;
}

.tos-sort-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 4px;
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	box-shadow: var(--tos-shadow-md);
	min-width: 160px;
	z-index: 50;
	padding: 6px 0;
	list-style: none;
}

.tos-sort-dropdown:hover .tos-sort-menu {
	display: block;
}

.tos-sort-menu li a {
	display: block;
	padding: 8px 16px;
	font-size: 13px;
	color: var(--tos-text-body);
	transition: background-color 0.15s, color 0.15s;
}

.tos-sort-menu li a:hover {
	background-color: var(--tos-primary-light);
	color: var(--tos-primary);
}

.tos-toggle-sidebar-btn {
	display: none;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	color: var(--tos-text-heading);
	cursor: pointer;
}

.tos-filter-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* 2-Column Search Layout */
.tos-search-layout {
	display: grid;
	grid-template-columns: 270px 1fr;
	gap: 28px;
	align-items: start;
}

.tos-search-sidebar {
	width: 100%;
}

.tos-search-sidebar .tos-sidebar-sticky {
	position: sticky;
	top: 90px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tos-sidebar-cats-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tos-sidebar-cat-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	background-color: var(--tos-bg);
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--tos-text-body);
	text-transform: capitalize;
	text-decoration: none;
	transition: all 0.15s ease;
}

.tos-sidebar-cat-item:hover,
.tos-sidebar-cat-item.active {
	background-color: var(--tos-primary-light);
	color: var(--tos-primary);
	border-color: var(--tos-primary);
	font-weight: 700;
}

.tos-sidebar-cat-count {
	font-size: 12px;
	color: var(--tos-text-muted);
}

.tos-sidebar-cat-item:hover .tos-sidebar-cat-count,
.tos-sidebar-cat-item.active .tos-sidebar-cat-count {
	color: var(--tos-primary);
}

/* Sidebar Tag Cloud */
.tos-sidebar-tags-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.tos-tag-badge {
	display: inline-block;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--tos-text-body);
	background-color: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 3px;
	text-decoration: none;
	transition: all 0.15s;
}

.tos-tag-badge:hover,
.tos-tag-badge.active {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	border-color: var(--tos-primary);
}

.tos-search-results {
	min-width: 0;
}

.tushy-videos-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Pagination */
.tushy-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.tushy-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.tushy-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	background-color: #FFFFFF;
	font-size: 13px;
	font-weight: 700;
	color: var(--tos-text-body);
	text-decoration: none;
	transition: all 0.15s;
}

.tushy-pagination .page-numbers:hover,
.tushy-pagination .page-numbers.current {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	border-color: var(--tos-primary);
}

.tos-no-results {
	padding: 60px 20px;
	text-align: center;
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-radius: 6px;
}

.tos-no-results h2 {
	font-size: 20px;
	font-weight: 800;
	color: var(--tos-text-heading);
	margin-bottom: 10px;
}

.tos-no-results p {
	font-size: 14px;
	color: var(--tos-text-muted);
	margin-bottom: 24px;
}


/* ==================== 16. FOOTER ==================== */
.tos-footer {
	background-color: #FFFFFF;
	border-top: 1px solid var(--tos-border);
	padding: 45px 0 25px;
	margin-top: auto;
}

.tos-footer-matrix {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-bottom: 35px;
}

.tos-footer-col-title {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--tos-text-heading);
	margin-bottom: 14px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--tos-primary);
	display: inline-block;
}

.tos-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tos-footer-list li {
	margin-bottom: 8px;
}

.tos-footer-list li a {
	font-size: 13px;
	color: var(--tos-text-muted);
	text-decoration: none;
	transition: color 0.15s;
}

.tos-footer-list li a:hover {
	color: var(--tos-primary);
}

.tos-footer-social-row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid var(--tos-border);
	border-bottom: 1px solid var(--tos-border);
	margin-bottom: 24px;
}

.tos-social-title {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--tos-text-heading);
	margin-right: 4px;
}

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

.tos-soc-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background-color: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 50%;
	color: var(--tos-text-body);
	transition: all 0.15s;
}

.tos-soc-link:hover {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	border-color: var(--tos-primary);
}

.tos-soc-svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.tos-footer-bottom {
	border-top: 1px solid var(--tos-border);
	padding: 24px 20px 10px;
	margin-top: 10px;
}

.tos-footer-bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	max-width: 850px;
	margin: 0 auto;
	padding: 0 16px;
}

.tos-footer-disclaimer {
	font-size: 13px;
	line-height: 1.6;
	color: var(--tos-text-muted);
}

.tos-footer-copy {
	font-size: 13px;
	font-weight: 600;
	color: var(--tos-text-heading);
}

.tos-footer-copy a {
	color: var(--tos-primary);
	font-weight: 700;
	text-decoration: underline;
}


/* ==================== 17. RESPONSIVE BREAKPOINTS ==================== */
/* ==================== 17. TOP BAR (SUPER HEADER) ==================== */
.tos-topbar {
	background-color: #0F172A;
	color: #94A3B8;
	font-size: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 6px 0;
}

.tos-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.tos-topbar-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.tos-topbar-date {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #CBD5E1;
	font-weight: 500;
}

.tos-topbar-svg {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	color: var(--tos-primary);
}

.tos-topbar-divider {
	color: #334155;
}

.tos-topbar-trending {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tos-trending-badge {
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 2px 6px;
	border-radius: 2px;
	letter-spacing: 0.5px;
}

.tos-trending-link {
	color: #E2E8F0;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.15s;
}

.tos-trending-link:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.tos-topbar-right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.tos-topbar-menu {
	display: flex;
	align-items: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tos-topbar-menu li a {
	color: #94A3B8;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.15s;
}

.tos-topbar-menu li a:hover {
	color: #FFFFFF;
}


/* ==================== 18. BREAKING NEWS TICKER ==================== */
.tos-breaking-ticker-wrap {
	background-color: #FFFFFF;
	border-bottom: 1px solid var(--tos-border);
	padding: 8px 0;
}

.tos-breaking-ticker {
	display: flex;
	align-items: center;
	background-color: var(--tos-bg);
	border: 1px solid var(--tos-border);
	border-radius: 4px;
	overflow: hidden;
}

.tos-breaking-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.5px;
	padding: 8px 14px;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}

.tos-live-pulse {
	width: 7px;
	height: 7px;
	background-color: #FFFFFF;
	border-radius: 50%;
	display: inline-block;
	animation: tosPulse 1.4s infinite;
}

@keyframes tosPulse {
	0% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.75); }
	100% { opacity: 1; transform: scale(1); }
}

.tos-breaking-track {
	flex: 1;
	overflow: hidden;
	position: relative;
	padding: 0 14px;
}

.tos-breaking-list {
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: tosMarquee 35s linear infinite;
}

.tos-breaking-list:hover {
	animation-play-state: paused;
}

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

.tos-breaking-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--tos-text-heading);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	margin-right: 28px;
	transition: color 0.15s;
}

.tos-breaking-item:hover {
	color: var(--tos-primary);
}

.tos-breaking-time {
	color: var(--tos-primary);
	font-weight: 800;
	font-size: 11px;
	background-color: var(--tos-primary-light);
	padding: 1px 5px;
	border-radius: 3px;
}

.tos-breaking-sep {
	color: #CBD5E1;
	font-size: 10px;
	margin-left: 10px;
}


/* ==================== 19. FACEBOOK / INSTAGRAM STYLE STORIES ==================== */
.tos-fb-stories-section {
	padding: 16px 0 10px;
	background-color: #FFFFFF;
	border-bottom: 1px solid var(--tos-border-subtle);
}

.tos-fb-stories-wrap {
	position: relative;
}

.tos-fb-stories-scroll {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}

.tos-fb-stories-scroll::-webkit-scrollbar {
	display: none;
}

.tos-fb-stories-scroll.dragging {
	cursor: grabbing;
	user-select: none;
}

.tos-story-card {
	position: relative;
	flex: 0 0 110px;
	height: 170px;
	border-radius: 12px;
	overflow: hidden;
	scroll-snap-align: start;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}

.tos-story-card:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.tos-story-img-wrap {
	position: absolute;
	inset: 0;
}

.tos-story-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tos-story-card:hover .tos-story-bg-img {
	transform: scale(1.08);
}

.tos-story-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
}

.tos-story-avatar-ring {
	position: absolute;
	top: 8px;
	left: 8px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	padding: 2px;
	background: linear-gradient(45deg, #F59E0B, #EF4444, #8B5CF6);
	z-index: 2;
}

.tos-story-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #FFFFFF;
}

.tos-story-caption {
	position: absolute;
	bottom: 8px;
	left: 8px;
	right: 8px;
	z-index: 2;
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}


/* ==================== 20. HERO NEWS CAROUSEL SLIDER ==================== */
.tos-hero-carousel-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #0F172A;
	border-radius: 6px;
	overflow: hidden;
}

.tos-hero-carousel-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.tos-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.tos-hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.tos-hero-slide-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.tos-hero-slide-img-box {
	position: absolute;
	inset: 0;
}

.tos-hero-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tos-hero-slide-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.tos-hero-slide-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	z-index: 2;
}

.tos-hero-meta-dot {
	margin: 0 6px;
	color: #94A3B8;
}

.tos-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: rgba(15, 23, 42, 0.65);
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: all 0.15s ease;
	backdrop-filter: blur(4px);
}

.tos-carousel-btn:hover {
	background-color: var(--tos-primary);
	border-color: var(--tos-primary);
	transform: translateY(-50%) scale(1.1);
}

.tos-carousel-btn svg {
	width: 20px;
	height: 20px;
}

.tos-carousel-prev {
	left: 14px;
}

.tos-carousel-next {
	right: 14px;
}

.tos-carousel-dots {
	position: absolute;
	bottom: 12px;
	right: 24px;
	display: flex;
	gap: 6px;
	z-index: 5;
}

.tos-carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.2s ease;
}

.tos-carousel-dot.active {
	width: 22px;
	border-radius: 4px;
	background-color: var(--tos-primary);
}


/* ==================== 21. FLOATING FB REALTIME NOTIFICATION TOAST ==================== */
.tos-fb-notif {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(25px) scale(0.96);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.tos-fb-notif.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.tos-fb-notif-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: #FFFFFF;
	border: 1px solid var(--tos-border);
	border-left: 4px solid var(--tos-primary);
	border-radius: 8px;
	padding: 10px 14px;
	max-width: 340px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.tos-fb-notif-close {
	position: absolute;
	top: 4px;
	right: 6px;
	background: none;
	border: none;
	font-size: 16px;
	line-height: 1;
	color: #94A3B8;
	cursor: pointer;
	padding: 2px;
}

.tos-fb-notif-close:hover {
	color: var(--tos-primary);
}

.tos-fb-notif-thumb-wrap {
	width: 48px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
	background-color: #0F172A;
}

.tos-fb-notif-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tos-fb-notif-content {
	flex: 1;
	min-width: 0;
}

.tos-fb-notif-author-line {
	font-size: 11px;
	color: var(--tos-text-muted);
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tos-fb-notif-name {
	color: var(--tos-text-heading);
}

.tos-fb-notif-link {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--tos-text-heading);
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tos-fb-notif-link:hover {
	color: var(--tos-primary);
}

.tos-fb-notif-time {
	font-size: 10px;
	color: var(--tos-primary);
	font-weight: 600;
	margin-top: 2px;
}


/* ==================== 22. RELATED NEWS (SINGLE POST) ==================== */
.tos-single-related-section {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--tos-border);
}

.tos-single-related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}


/* ==================== 23. CARD CLEANUP (HIDE VIDEO PLAY BUTTONS) ==================== */
.sc-b22790b1-2,
.tushy-play-button,
.tos-sidebar-mini-play,
.tushy-hero-play {
	display: none !important;
}

.tos-card-cat-badge {
	display: inline-block;
	background-color: var(--tos-primary);
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 2px 7px;
	border-radius: 2px;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}


/* ==================== 24. RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1024px) {
	.tushy-hero-grid {
		grid-template-columns: 1fr;
	}
	.tushy-hero-sidebar-left, .tushy-hero-sidebar-right {
		display: none;
	}
	.tos-single-main-grid {
		grid-template-columns: 1fr;
	}
	.tos-single-sidebar-col {
		width: 100%;
	}
	.tos-single-sidebar-sticky {
		position: static;
	}
	.tos-search-layout {
		grid-template-columns: 1fr;
	}
	.tos-search-sidebar {
		width: 100%;
	}
	.tushy-videos-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	.tushy-performers-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.tos-footer-matrix {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.tos-topbar-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.tos-topbar-right {
		display: none;
	}
	.tos-site-logo-img,
	.custom-logo,
	a[data-test-component="LogoLink"] img {
		max-height: 32px;
		max-width: 160px;
	}
	.tushy-logo-badge {
		font-size: 13px;
		padding: 4px 7px;
	}
	.tushy-logo-text {
		font-size: 15px;
	}
	.tos-filter-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.tos-filter-controls {
		width: 100%;
		justify-content: space-between;
	}
	.tos-single-related-grid {
		grid-template-columns: 1fr;
	}
	.tos-fb-notif {
		bottom: 14px;
		right: 14px;
		left: 14px;
	}
	.tos-fb-notif-card {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.tushy-upcoming-container {
		grid-template-columns: 1fr;
	}
	.tushy-videos-grid-3 {
		grid-template-columns: 1fr;
	}
	.tushy-performers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.tos-footer-matrix {
		grid-template-columns: 1fr;
	}
	.tos-footer-social-row {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
	.tos-comment-body {
		flex-direction: column;
	}
	.tos-comment-list .children {
		margin-left: 14px;
	}
}


