

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: transparent;
	color: inherit;
	box-shadow: 0 4px 24px rgba(20, 33, 61, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.header-brand-bar {
	background: linear-gradient(180deg, #fffdf5 0%, #fff3c4 42%, #f5c518 100%);
	border-bottom: 3px solid #14213d;
	position: relative;
}

.header-brand-bar::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: -3px;
	height: 3px;
	background: linear-gradient(90deg, #14213d 0%, #e11d2a 50%, #14213d 100%);
	pointer-events: none;
}

.header-brand-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 16px 0 18px;
}

.header-col--start {
	justify-self: start;
	min-width: 0;
}

.header-col--end {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.site-branding--featured {
	justify-self: center;
	text-align: center;
	padding: 0 12px;
}

.site-branding--featured .custom-logo-link {
	display: inline-block;
	line-height: 0;
	transition: transform 0.25s ease, filter 0.25s ease;
}

.site-branding--featured .custom-logo-link:hover {
	transform: scale(1.02);
}

.site-branding--featured .custom-logo-link img {
	max-height: 76px;
	width: auto;
	height: auto;
	filter: drop-shadow(0 3px 10px rgba(20, 33, 61, 0.18));
}

.site-title--featured {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #14213d;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.site-title--featured:hover {
	opacity: 0.88;
	color: #14213d;
}

.site-title--featured .logo-text {
	color: #14213d;
}

.site-title--featured .logo-number {
	color: #e11d2a;
	font-size: 34px;
}

.top-links-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.top-links-menu a {
	color: #14213d;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 0;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.top-links-menu a:hover {
	color: #e11d2a;
	border-bottom-color: #e11d2a;
}

.header-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(20, 33, 61, 0.14);
	background: rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	color: #14213d;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-icon-btn:hover {
	background: #fff;
	border-color: #14213d;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(20, 33, 61, 0.12);
}

.dark-mode-toggle {
	position: relative;
}

.dark-mode-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

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

body.dark-mode .dark-mode-icon--sun {
	display: none;
}

body.dark-mode .dark-mode-icon--moon {
	display: flex;
}

.site-header:not(.site-header--magazine) .main-navigation {
	background: #14213d;
	border-top: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 50px;
	gap: 8px;
	padding: 4px 0;
}

.primary-menu {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.site-header:not(.site-header--magazine) .primary-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 16px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 600;
	border-radius: 6px;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header:not(.site-header--magazine) .primary-menu a:hover {
	background: rgba(245, 197, 24, 0.14);
	color: #f5c518;
}

.site-header:not(.site-header--magazine) .primary-menu .current-menu-item > a,
.site-header:not(.site-header--magazine) .primary-menu .current_page_item > a {
	background: #f5c518;
	color: #14213d;
	font-weight: 700;
	font-size: 13px;
	padding: 0 18px;
	box-shadow: 0 2px 8px rgba(245, 197, 24, 0.35);
}

.nav-actions-end {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-inline-start: auto;
	flex-shrink: 0;
}

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

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.9);
	font-size: 11px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
	background: #f5c518;
	color: #14213d;
	border-color: #f5c518;
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 4px;
}

.menu-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	transition: opacity 0.2s ease;
}

.breaking-ticker {
	background: #e11d2a;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.search-overlay {
	background: #14213d;
	border-top: 1px solid rgba(245, 197, 24, 0.25);
	padding: 14px 0;
}

.search-field {
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.95);
}

.search-submit {
	border-radius: 8px;
	font-weight: 700;
}

.search-close {
	color: #fff;
	background: transparent;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

body.dark-mode .site-header {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

body.dark-mode .header-brand-bar {
	background: linear-gradient(180deg, #1a2744 0%, #14213d 100%);
	border-bottom-color: #f5c518;
}

body.dark-mode .header-brand-bar::after {
	background: linear-gradient(90deg, #f5c518 0%, #e11d2a 50%, #f5c518 100%);
}

body.dark-mode .site-branding--featured .custom-logo-link img {
	filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.45));
}

body.dark-mode .site-title--featured,
body.dark-mode .site-title--featured .logo-text {
	color: #f5c518;
}

body.dark-mode .site-title--featured .logo-number {
	color: #ff4d5e;
}

body.dark-mode .top-links-menu a {
	color: rgba(255, 255, 255, 0.88);
}

body.dark-mode .top-links-menu a:hover {
	color: #f5c518;
	border-bottom-color: #f5c518;
}

body.dark-mode .header-icon-btn {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(245, 197, 24, 0.35);
	color: #f5c518;
}

body.dark-mode .header-icon-btn:hover {
	background: rgba(245, 197, 24, 0.15);
	border-color: #f5c518;
}

body.dark-mode .site-header:not(.site-header--magazine) .main-navigation {
	background: #0f1828;
	box-shadow: inset 0 1px 0 rgba(245, 197, 24, 0.12);
}

body.dark-mode .site-header:not(.site-header--magazine) .primary-menu a {
	color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .site-header:not(.site-header--magazine) .primary-menu a:hover {
	background: rgba(245, 197, 24, 0.12);
	color: #f5c518;
}

body.dark-mode .site-header:not(.site-header--magazine) .primary-menu .current-menu-item > a,
body.dark-mode .site-header:not(.site-header--magazine) .primary-menu .current_page_item > a {
	background: #f5c518;
	color: #14213d;
}

body.dark-mode .social-icons a {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.85);
}

body.dark-mode .search-overlay {
	background: #0f1828;
}

body.dark-mode .search-field {
	background: #1a2744;
	color: #eef2f7;
	border-color: #243352;
}

body.dark-mode body.home .site-content,
body.dark-mode .site-content {
	background: var(--color-bg);
}

@media (max-width: 992px) {
	.site-branding--featured .custom-logo-link img {
		max-height: 64px;
	}

	.site-title--featured {
		font-size: 28px;
	}

	.site-title--featured .logo-number {
		font-size: 30px;
}

.primary-menu a {
	font-size: 12px;
		padding: 0 12px;
	}
}

@media (max-width: 768px) {
	.header-brand-inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"logo logo"
			"links actions";
		gap: 12px;
		padding: 12px 0 14px;
	}

	.site-branding--featured {
		grid-area: logo;
		justify-self: center;
	}

	.header-col--start {
		grid-area: links;
		justify-self: start;
	}

	.header-col--end {
		grid-area: actions;
		justify-self: end;
	}

	.top-links-menu {
		gap: 10px;
	}

	.site-branding--featured .custom-logo-link img {
		max-height: 58px;
	}

	.menu-toggle {
		display: flex;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	}

	.primary-menu {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		background: #0f1828;
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		gap: 4px;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
		z-index: 20;
		border-radius: 0 0 8px 8px;
	}

	.primary-menu.is-open {
		display: flex;
	}

	.primary-menu a {
		width: 100%;
		justify-content: flex-start;
		height: 44px;
		padding: 0 14px;
	}

	.primary-menu .current-menu-item > a {
	background: #f5c518;
	color: #14213d;
	}

	.nav-inner {
		min-height: 48px;
		padding-inline-end: 52px;
	}

	.nav-actions-end {
		margin-inline-start: auto;
		padding-inline-end: 0;
	}

	.header-col--start .top-links-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

@media (max-width: 480px) {
	.header-col--start {
		display: none;
	}

	.header-brand-inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"logo actions";
	}

	.site-branding--featured .custom-logo-link img {
		max-height: 52px;
	}
}

body.home .site-content {
	background: #ffffff;
}

body {
	font-size: 13px;
	color: #111111;
}

.container {
	padding: 0 4px;
}

.hero-magazine-section {
	display: none;
}

.home-hero-zone {
	padding: 20px 0 8px;
}

.home-hero-zone-grid {
	grid-template-columns: 240px minmax(0, 1fr) 240px;
	gap: 20px;
	align-items: start;
}

.home-center {
	min-width: 0;
}

.hero-slider--premium {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(20, 33, 61, 0.14);
	margin-bottom: 14px;
	background: #14213d;
}

.hero-slides-wrap {
	position: relative;
}

.hero-slide {
	display: none;
}

.hero-slide.is-active {
	display: block;
	animation: heroFadeIn 0.45s ease;
}

@keyframes heroFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.hero-slide-media {
	display: block;
	position: relative;
	min-height: 400px;
	color: #fff;
	text-decoration: none;
}

.hero-slide-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.hero-slide.is-active:hover .hero-slide-img {
	transform: scale(1.02);
}

.hero-slide-cat {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #e11d2a;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px 24px 24px;
	background: linear-gradient(to top, rgba(20, 33, 61, 0.96) 0%, rgba(20, 33, 61, 0.55) 45%, transparent 100%);
	pointer-events: none;
}

.hero-slide-badge {
	display: inline-block;
	align-self: flex-start;
	background: #f5c518;
	color: #14213d;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.hero-slide-title {
	margin: 0 0 8px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-slide-excerpt {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	max-width: 92%;
}

.hero-slide-meta {
	font-size: 12px;
	font-weight: 600;
	color: rgba(245, 197, 24, 0.95);
}

.hero-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	background: #fff;
	border-top: 1px solid #eef1f5;
}

.hero-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid #dde3ea;
	border-radius: 50%;
	background: #fff;
	color: #14213d;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.hero-nav:hover {
	background: #14213d;
	border-color: #14213d;
	color: #f5c518;
}

.hero-pagination {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
}

.hero-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #d1d5db;
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
	width: 24px;
	border-radius: 999px;
	background: #f5c518;
}

.hero-dot:hover {
	background: #14213d;
}

.hero-counter {
	font-size: 12px;
	font-weight: 700;
	color: #6b7280;
	margin-inline-start: 4px;
	flex-shrink: 0;
}

.hero-counter-current {
	color: #14213d;
}

.home-zone-block {
	background: #fff;
	border: 1px solid #e8ecf2;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 14px;
	box-shadow: 0 2px 12px rgba(20, 33, 61, 0.04);
	transition: box-shadow 0.2s ease;
}

.home-zone-block:hover {
	box-shadow: 0 4px 16px rgba(20, 33, 61, 0.07);
}

.home-zone-block-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 14px;
	background: #f8f9fc;
	border-bottom: 2px solid #f5c518;
}

.home-zone-block-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	flex-shrink: 0;
}

.home-zone-block-icon--clock {
	background: rgba(20, 33, 61, 0.08);
	color: #14213d;
}

.home-zone-block-icon--flame {
	background: rgba(225, 29, 42, 0.1);
	color: #e11d2a;
}

.home-zone-block-icon--trending {
	background: rgba(245, 197, 24, 0.15);
	color: #b45309;
}

.home-zone-block-title {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #14213d;
	flex: 1;
}

.home-zone-block-live {
	font-size: 10px;
	font-weight: 700;
	color: #e11d2a;
	background: rgba(225, 29, 42, 0.08);
	padding: 3px 8px;
	border-radius: 999px;
	animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.65; }
}

.home-feed-list {
	list-style: none;
	margin: 0;
	padding: 6px 0;
	max-height: 480px;
	overflow-y: auto;
	scrollbar-width: thin;
}

.home-feed-item {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	gap: 8px;
	align-items: start;
	padding: 10px 14px;
	border-bottom: 1px solid #f0f2f5;
	transition: background 0.2s ease;
}

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

.home-feed-item:hover {
	background: #f8f9fc;
}

.home-feed-item--latest {
	background: #fffbf0;
}

.home-feed-item--latest:hover {
	background: #fff8e6;
}

.home-feed-time {
	font-size: 12px;
	font-weight: 700;
	color: #14213d;
	line-height: 1.4;
	position: relative;
	padding-inline-start: 10px;
}

.home-feed-item--latest .home-feed-time::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 5px;
	width: 6px;
	height: 6px;
	background: #e11d2a;
	border-radius: 50%;
}

.home-feed-link {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	color: #1a1a1a;
	transition: color 0.2s ease;
}

.home-feed-item:hover .home-feed-link {
	color: #14213d;
}

.home-feed-badge {
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #e11d2a;
	padding: 2px 7px;
	border-radius: 3px;
	align-self: center;
}

.home-highlight-card {
	padding: 0;
}

.home-highlight-thumb {
	display: block;
	position: relative;
	overflow: hidden;
}

.home-highlight-img {
	width: 100%;
	height: 130px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.home-highlight-card:hover .home-highlight-img {
	transform: scale(1.04);
}

.home-highlight-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 3px;
	margin-bottom: 6px;
}

.home-highlight-badge--hot {
	background: #e11d2a;
	color: #fff;
}

.home-highlight-badge--trend {
	background: #14213d;
	color: #f5c518;
}

.home-highlight-badge--hot.home-highlight-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0;
	z-index: 2;
}

.home-highlight-views {
	position: absolute;
	bottom: 8px;
	left: 8px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(20, 33, 61, 0.85);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
}

.home-highlight-body {
	padding: 12px 14px 16px;
}

.home-highlight-time {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #e11d2a;
	margin-bottom: 6px;
}

.home-highlight-title {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.home-highlight-title a {
	color: #111;
	transition: color 0.2s ease;
}

.home-highlight-card:hover .home-highlight-title a {
	color: #14213d;
}

.hero-slider:not(.hero-slider--premium) {
	background: transparent;
	margin-bottom: 12px;
	border: none;
	box-shadow: none;
}

.hero-title {
	font-size: 23px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 10px;
	text-align: center;
}

.hero-title a {
	color: #f5c518;
}

.hero-title a:hover {
	color: #e0b30f;
}

.hero-image {
	max-height: 380px;
	border-radius: 3px;
}

.hero-excerpt {
	font-size: 14px;
	color: #666666;
	text-align: center;
	line-height: 1.7;
}

.home-three-col {
	grid-template-columns: 220px minmax(0, 1fr) 220px;
	gap: 16px;
	padding: 16px 0;
}

.home-hero-zone .home-three-col {
	padding: 0;
}

.home-sidebar .widget {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0 0 12px;
	margin-bottom: 16px;
}

.widget-title {
	font-size: 15px;
	font-weight: 700;
	color: #f5c518;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 8px;
	margin-bottom: 12px;
}

.widget-title::after {
	width: 56px;
	height: 3px;
	background: #f5c518;
}

.featured-widget-title {
	font-size: 14px;
	line-height: 1.4;
}

.featured-widget-title a,
.recent-post-item a,
.tab-panel-body h3 a,
.card-title a,
.video-title a,
.category-featured h3 a,
.category-list-item h4 a,
.most-viewed-item a {
	color: #111111;
}

.recent-post-item {
	padding: 9px 0;
	font-size: 13px;
	border-bottom: 1px solid #e6e6e6;
}

.recent-post-time {
	color: #aeaeae;
	font-weight: 400;
	font-size: 12px;
}

.category-tabs {
	background: transparent;
	border: none;
	box-shadow: none;
}

.tabs-list {
	background: #f9f5f5;
	border-bottom: 2px solid #e6e6e6;
}

.tab-button {
	font-size: 13px;
	padding: 10px 14px;
}

.tab-panel {
	padding: 12px;
}

.tab-panel-thumb {
	width: 120px;
	flex-shrink: 0;
}

.tab-panel-body h3 {
	font-size: 15px;
}

.section-header {
	background: #f5f5f5;
	border-bottom: 1px solid #e6e6e6;
	padding: 8px 12px;
	margin-bottom: 12px;
}

.section-title {
	font-size: 16px;
	font-weight: 700;
	color: #f5c518;
	border-bottom: 3px solid #f5c518;
	padding-bottom: 6px;
}

.section-title a {
	color: #f5c518;
}

.section-more {
	font-size: 13px;
	padding-bottom: 6px;
}

.programs-block .section-header,
.video-block .section-header,
.category-block .section-header,
.home-category-section__header {
	margin: -16px -16px 12px;
	padding: 8px 12px;
}

.home-category-sections {
	padding: 8px 0 0;
}

.home-category-section {
	margin-bottom: 20px;
	padding: 16px;
	border: 1px solid #e6e6e6;
	background: #fff;
}

.home-category-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.home-category-section__grid .category-featured-title {
	font-size: 18px;
	font-weight: 700;
	margin: 10px 0 6px;
}

.home-category-section__grid .category-featured-title a {
	color: #14213d;
}

.home-category-section__grid .category-featured-excerpt {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.home-cat--video .section-title a {
	color: #e11d2a;
}

.home-cat--video .section-title {
	border-bottom-color: #e11d2a;
}

@media (max-width: 768px) {
	.home-category-section {
		padding: 12px;
	}
}

.programs-block,
.video-block {
	border: 1px solid #e6e6e6;
	background: #ffffff;
	padding: 16px;
	border-radius: 3px;
	box-shadow: none;
}

.category-badge {
	background: #e11d2a;
}

.category-block {
	padding: 16px 0 0;
}

.category-featured h3 {
	font-size: 18px;
}

.list-thumb {
	width: 90px;
	height: 68px;
}

.home-section,
.programs-video-section {
	padding: 16px 0 0;
}

.most-viewed-section {
	padding: 24px 0 8px;
	margin: 8px 0 0;
}

.most-viewed-header {
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e6e6e6;
}

.most-viewed-header-title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.most-viewed-trend-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #f5c518 0%, #e0b30f 100%);
	color: #14213d;
	border-radius: 8px;
	flex-shrink: 0;
}

.most-viewed-heading {
	font-size: 20px;
	font-weight: 700;
	color: #f5c518;
	margin: 0;
	padding-bottom: 4px;
	border-bottom: 3px solid #f5c518;
	display: inline-block;
}

.most-viewed-subtitle {
	margin: 6px 0 0;
	font-size: 13px;
	color: #888;
}

.most-viewed-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
	gap: 16px;
	align-items: stretch;
}

.most-viewed-card {
	background: #14213d;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.most-viewed-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(20, 33, 61, 0.18);
}

.most-viewed-card--featured {
	flex-direction: row;
	grid-column: auto;
	min-height: 220px;
	border: 2px solid #f5c518;
	box-shadow: 0 4px 20px rgba(245, 197, 24, 0.15);
}

.most-viewed-card--featured .most-viewed-card-thumb {
	flex: 0 0 48%;
	max-width: 48%;
	min-height: 220px;
}

.most-viewed-card--featured .most-viewed-card-body {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.most-viewed-card--featured .most-viewed-card-title {
	font-size: 18px;
	line-height: 1.45;
}

.most-viewed-card-thumb {
	position: relative;
	display: block;
	overflow: hidden;
}

.most-viewed-card-img {
	width: 100%;
	height: 130px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.most-viewed-card--featured .most-viewed-card-img {
	height: 100%;
	min-height: 220px;
}

.most-viewed-card:hover .most-viewed-card-img {
	transform: scale(1.04);
}

.most-viewed-rank {
	position: absolute;
	top: 10px;
	right: 10px;
	min-width: 28px;
	height: 28px;
	padding: 0 6px;
	background: #f5c518;
	color: #14213d;
	font-size: 13px;
	font-weight: 700;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	line-height: 1;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.most-viewed-rank--featured {
	min-width: 44px;
	height: 44px;
	flex-direction: column;
	gap: 0;
	padding: 4px;
	border-radius: 8px;
	background: linear-gradient(135deg, #f5c518, #ffdb4d);
}

.most-viewed-rank-num {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.most-viewed-rank-fire {
	font-size: 12px;
	line-height: 1;
}

.most-viewed-card-body {
	padding: 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.most-viewed-cat {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #e11d2a;
	text-transform: none;
	align-self: flex-start;
}

.most-viewed-cat:hover {
	color: #ff4757;
}

.most-viewed-card-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.most-viewed-card-title a {
	color: #ffffff;
}

.most-viewed-card-title a:hover {
	color: #f5c518;
}

.most-viewed-views {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
	margin-top: auto;
}

.most-viewed-views-icon {
	flex-shrink: 0;
	opacity: 0.85;
}

.most-viewed-views-label {
	opacity: 0.8;
}

.most-viewed-card--featured .most-viewed-views {
	font-size: 13px;
	color: #f5c518;
	font-weight: 700;
}

.most-viewed-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	min-width: 0;
}

.most-viewed-list--compact .most-viewed-item {
	position: relative;
}

.most-viewed-views--inline {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: #888;
	margin-right: 8px;
}

.most-viewed-item {
	border: 1px solid #e6e6e6;
	box-shadow: none;
}

.home-video-block {
	margin: 24px auto;
	padding: 0;
	max-width: 100%;
}

.home-video-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: linear-gradient(90deg, #14213d 0%, #1a3050 100%);
	padding: 12px 16px;
	border-radius: 6px 6px 0 0;
}

.home-video-header-title {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.home-video-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: rgba(245, 197, 24, 0.15);
	border: 1px solid rgba(245, 197, 24, 0.4);
	border-radius: 8px;
	color: #f5c518;
	flex-shrink: 0;
}

.home-video-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 3px;
	border-bottom: 3px solid #f5c518;
}

.home-video-title a {
	color: #fff;
}

.home-video-title a:hover {
	color: #f5c518;
}

.home-video-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f5c518;
	color: #14213d;
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	flex-shrink: 0;
}

.home-video-more-btn:hover {
	background: #ffdb4d;
	color: #14213d;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}

.home-video-body {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
	gap: 0;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-top: none;
	border-radius: 0 0 6px 6px;
	overflow: hidden;
}

.home-video-featured {
	min-width: 0;
	padding: 16px;
	border-left: 1px solid #eef1f5;
}

.home-video-featured-link {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 8px;
	overflow: hidden;
}

.home-video-ratio {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #14213d;
}

.home-video-ratio--featured {
	border-radius: 8px;
}

.home-video-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.home-video-featured-link:hover .home-video-img,
.home-video-card-link:hover .home-video-img {
	transform: scale(1.05);
}

.home-video-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 33, 61, 0.88) 0%, rgba(20, 33, 61, 0.25) 45%, rgba(20, 33, 61, 0.08) 100%);
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 1;
}

.home-video-shade--sm {
	background: linear-gradient(to top, rgba(20, 33, 61, 0.75) 0%, transparent 60%);
}

.home-video-card-link:hover .home-video-shade--sm {
	background: linear-gradient(to top, rgba(20, 33, 61, 0.85) 0%, rgba(20, 33, 61, 0.2) 100%);
}

.home-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.96);
	color: #e11d2a;
	border: 2px solid #f5c518;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	z-index: 3;
	pointer-events: none;
}

.home-video-play svg {
	margin-inline-start: 2px;
	flex-shrink: 0;
}

.home-video-play--lg {
	width: 62px;
	height: 62px;
	border-width: 3px;
}

.home-video-featured-link:hover .home-video-play--lg,
.home-video-card-link:hover .home-video-play {
	transform: translate(-50%, -50%) scale(1.08);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
	background: #fff;
}

.home-video-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	pointer-events: none;
}

.home-video-badge--featured {
	background: #f5c518;
	color: #14213d;
}

.home-video-featured-caption {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	padding: 16px 18px 18px;
	z-index: 2;
	pointer-events: none;
	text-align: start;
}

.home-video-featured-caption .category-badge {
	margin-bottom: 8px;
	display: inline-block;
}

.home-video-featured-title {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-video-featured-meta {
	padding: 14px 4px 4px;
	text-align: start;
}

.home-video-featured-excerpt {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.75;
	color: #4b5563;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-video-date {
	font-size: 12px;
	font-weight: 600;
	color: #14213d;
}

.home-video-sidebar {
	min-width: 0;
	padding: 16px;
	background: #f8f9fc;
}

.home-video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	height: 100%;
	align-content: start;
}

.home-video-card {
	min-width: 0;
}

.home-video-card-link {
	display: block;
	text-decoration: none;
	background: #fff;
	border: 1px solid #e8ecf2;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	height: 100%;
}

.home-video-card-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(20, 33, 61, 0.1);
	border-color: #d4dae3;
}

.home-video-card .home-video-ratio {
	border-radius: 0;
	aspect-ratio: 16 / 10;
}

.home-video-card-title {
	margin: 0;
	padding: 10px 12px 12px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	color: #111;
	text-align: start;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.home-video-card-link:hover .home-video-card-title {
	color: #14213d;
}

.programs-video-grid--solo {
	grid-template-columns: 1fr;
}

@media (max-width: 992px) {
	.home-video-body {
		grid-template-columns: 1fr;
	}

	.home-video-featured {
		border-left: none;
		border-bottom: 1px solid #eef1f5;
		padding: 14px;
	}

	.home-video-sidebar {
		padding: 14px;
	}

	.home-video-featured-title {
		font-size: 17px;
	}
}

@media (max-width: 600px) {
	.home-video-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.home-video-header {
		flex-wrap: wrap;
	}

	.home-video-featured {
		padding: 12px;
	}

	.home-video-sidebar {
		padding: 12px;
	}

	.home-video-play {
		width: 42px;
		height: 42px;
	}

	.home-video-play--lg {
		width: 54px;
		height: 54px;
	}

	.home-video-featured-caption {
		padding: 12px 14px 14px;
	}

	.home-video-featured-title {
		font-size: 16px;
		-webkit-line-clamp: 2;
	}
}

@media (min-width: 601px) and (max-width: 768px) {
	.home-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.video-strip-section {
	padding: 16px 0 0;
}

.video-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.video-strip-card {
	min-width: 0;
}

.video-strip-thumb {
	display: block;
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 8px;
}

.video-strip-thumb img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.video-strip-thumb:hover img {
	transform: scale(1.03);
}

.video-strip-thumb .category-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
}

.video-strip-title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

.video-strip-title a {
	color: #111111;
}

.video-strip-title a:hover {
	color: #f5c518;
}

.believe-section {
	padding: 16px 0 24px;
}

.believe-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.believe-column {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 3px;
	padding: 16px;
}

.believe-label {
	font-size: 16px;
	font-weight: 700;
	color: #f5c518;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e6e6e6;
}

.believe-yes .believe-label { color: #14213d; }
.believe-no .believe-label { color: #e11d2a; }

.believe-card {
	padding: 10px 0;
	border-bottom: 1px solid #e6e6e6;
}

.believe-card:last-child { border-bottom: none; }

.believe-card h4 {
	font-size: 14px;
	margin: 6px 0;
}

.believe-card h4 a { color: #111; }
.believe-card p {
	font-size: 13px;
	color: #666;
	margin: 0;
}

.post-card,
.category-featured,
.category-list-item,
.carousel-card,
.video-card,
.most-viewed-item {
	transition: box-shadow 0.2s ease;
}

.post-card:hover,
.carousel-card:hover,
.most-viewed-item:hover {
	box-shadow: 0 2px 8px rgba(20, 33, 61, 0.08);
}

.post-card-thumb,
.category-featured-thumb,
.card-thumb,
.video-thumb {
	position: relative;
	overflow: hidden;
	display: block;
}

.post-card-thumb img,
.category-featured-thumb img,
.card-thumb img,
.video-thumb img {
	transition: transform 0.25s ease;
}

.post-card:hover .post-card-thumb img,
.category-featured:hover .category-featured-thumb img,
.carousel-card:hover .card-thumb img,
.video-card:hover .video-thumb img {
	transform: scale(1.03);
}

.category-featured-thumb .category-badge,
.post-card-thumb .category-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
}

.featured-widget-thumb {
	display: block;
	overflow: hidden;
	border-radius: 3px;
	margin-bottom: 8px;
}

.featured-widget-thumb img {
	transition: transform 0.25s ease;
}

.featured-widget-post:hover .featured-widget-thumb img {
	transform: scale(1.03);
}

.tab-item.is-active .tab-button {
	color: #14213d;
	font-weight: 700;
	background: #fff;
	border-bottom: 2px solid #f5c518;
}

.site-footer {
	background: linear-gradient(180deg, #14213d 0%, #0f1828 100%);
	margin-top: 40px;
	color: rgba(255, 255, 255, 0.88);
	border-top: none;
}

.footer-accent {
	height: 4px;
	background: linear-gradient(90deg, #f5c518 0%, #e11d2a 50%, #f5c518 100%);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
	gap: 28px 24px;
	padding: 36px 16px 32px;
	align-items: start;
}

.footer-col {
	min-width: 0;
}

.footer-col-title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 700;
	color: #f5c518;
	padding-bottom: 8px;
	border-bottom: 2px solid rgba(245, 197, 24, 0.35);
}

.footer-logo-wrap .custom-logo-link img {
	max-height: 56px;
	width: auto;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.footer-logo-link {
	text-decoration: none;
	display: inline-block;
}

.footer-logo {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.footer-logo .logo-number {
	color: #e11d2a;
	font-size: 28px;
}

.footer-tagline {
	font-size: 13px;
	line-height: 1.7;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.72);
	max-width: 280px;
}

.footer-social {
	margin-top: 18px;
}

.footer-social-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.footer-social .social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-social .social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.9);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social .social-icons a:hover {
	background: #f5c518;
	color: #14213d;
	border-color: #f5c518;
	transform: translateY(-2px);
}

.footer-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-nav-list a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
	transition: color 0.2s ease, padding-inline-start 0.2s ease;
	display: inline-block;
}

.footer-nav-list a:hover {
	color: #f5c518;
	padding-inline-start: 4px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.15);
	padding: 14px 0;
}

.footer-bottom-inner {
	text-align: center;
}

.footer-copy {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-copy a {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
}

.footer-copy a:hover {
	color: #f5c518;
}

body.dark-mode .site-footer {
	background: linear-gradient(180deg, #0f1828 0%, #0a1020 100%);
}

body.dark-mode .footer-nav-list a {
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 992px) {
	.footer-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 20px;
		padding: 28px 12px 24px;
	}

	.footer-col--brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 24px 12px 20px;
	}

	.footer-tagline {
		max-width: none;
	}
}

.header-brand {
	display: none;
}

.single-layout,
.archive-header,
.search-header {
	padding: 16px 0 0;
}

.single-post,
.page-content {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 3px;
	padding: 24px;
	box-shadow: none;
}

.entry-title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.35;
	color: #111111;
	margin-bottom: 12px;
}

.entry-meta {
	font-size: 13px;
	color: #888888;
	margin-bottom: 16px;
}

.entry-content {
	font-size: 15px;
	line-height: 1.85;
	color: #222222;
}

.archive-title,
.search-title {
	font-size: 22px;
	font-weight: 700;
	color: #f5c518;
	margin-bottom: 16px;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
	padding: 16px 0;
}

.posts-grid--archive {
	margin-top: 8px;
}

.archive-hero {
	background: linear-gradient(135deg, #14213d 0%, #1a2d52 100%);
	border-bottom: 3px solid #f5c518;
	margin-bottom: 20px;
	padding: 24px 0;
}

.archive-hero-inner {
	max-width: var(--container-width, 1200px);
	margin: 0 auto;
	padding: 0 16px;
}

.archive-hero-title {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 8px;
}

.archive-hero-desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	margin-bottom: 8px;
}

.archive-hero-count {
	display: inline-block;
	background: #f5c518;
	color: #14213d;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
}

.archive-featured {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 20px;
	margin-bottom: 24px;
	padding: 16px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
}

.archive-featured-thumb {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px;
}

.archive-featured-thumb img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

.archive-featured-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.archive-featured-title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 10px;
	line-height: 1.4;
}

.archive-featured-title a {
	color: #14213d;
}

.archive-featured-meta {
	font-size: 13px;
	color: #888;
	margin-bottom: 12px;
}

.archive-featured-excerpt {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin: 0 0 12px;
}

.archive-read-more {
	font-size: 14px;
	font-weight: 700;
	color: #e11d2a;
}

.post-card {
	border: 1px solid #e6e6e6;
	box-shadow: none;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
}

.post-card-thumb img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.post-card-body {
	padding: 14px;
}

.post-card-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.post-card-title a {
	color: #14213d;
}

.post-card-meta {
	font-size: 12px;
	color: #888;
	margin: 6px 0 8px;
}

.post-card-excerpt {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.archive-featured {
		grid-template-columns: 1fr;
	}

	.archive-featured-thumb img {
		height: 200px;
	}

	.archive-hero-title {
		font-size: 22px;
	}
}

.breadcrumb-list {
	padding: 0 4px;
}

html {
	overflow-x: hidden;
}

.site-main,
.site-content {
	overflow-x: hidden;
}

img,
video,
iframe {
	max-width: 100%;
	height: auto;
}

.lachtv-placeholder-img {
	background: linear-gradient(135deg, var(--brand-bg, #f0f2f5) 0%, var(--brand-border, #e8eaed) 100%);
	object-fit: cover;
}

@media (max-width: 1024px) {
	.container {
		padding: 0 12px;
	}

	.home-three-col,
	.home-hero-zone-grid {
		grid-template-columns: 200px minmax(0, 1fr) 200px;
		gap: 12px;
	}

	.hero-slide-media {
		min-height: 340px;
	}

	.hero-slide-img {
		height: 340px;
	}

	.hero-slide-title {
		font-size: 22px;
	}
}

@media (max-width: 992px) {
	.home-three-col,
	.home-hero-zone-grid {
		grid-template-columns: 1fr;
		padding: 12px 0;
	}

	.home-center {
		order: -1;
	}

	.home-sidebar-left,
	.home-sidebar-right {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.home-zone-block {
		margin-bottom: 0;
	}

	.hero-slide-media {
		min-height: 280px;
	}

	.hero-slide-img {
		height: 280px;
	}

	.hero-slide-title {
		font-size: 20px;
	}

	.hero-slide-excerpt {
		display: none;
	}

	.category-posts-grid {
		grid-template-columns: 1fr;
	}

	.programs-video-grid {
		grid-template-columns: 1fr;
	}

	.most-viewed-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.most-viewed-layout {
		grid-template-columns: 1fr;
	}

	.most-viewed-card--featured {
		flex-direction: column;
		min-height: auto;
	}

	.most-viewed-card--featured .most-viewed-card-thumb {
		flex: none;
		max-width: 100%;
		min-height: auto;
	}

	.most-viewed-card--featured .most-viewed-card-img {
		min-height: 180px;
		height: 180px;
	}

	.most-viewed-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.video-strip-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.believe-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 18px;
	}

	.hero-image {
		max-height: 260px;
	}

	.tab-panel.is-active {
		flex-direction: column;
	}

	.tab-panel-thumb {
		width: 100%;
	}

	.tabs-list {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.tab-button {
		flex-shrink: 0;
		max-width: none;
	}

	.home-sidebar-left,
	.home-sidebar-right {
		grid-template-columns: 1fr;
	}

	.hero-slide-media {
		min-height: 240px;
	}

	.hero-slide-img {
		height: 240px;
	}

	.hero-slide-title {
		font-size: 17px;
	}

	.hero-slide-overlay {
		padding: 20px 16px 16px;
	}

	.hero-controls {
		padding: 10px 12px;
		flex-wrap: wrap;
	}

	.home-feed-list {
		max-height: none;
	}

	.single-post,
	.page-content {
		padding: 16px;
	}

	.entry-title {
		font-size: 20px;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		padding: 24px 12px;
	}
}

@media (max-width: 480px) {
	.top-links-menu {
		display: none;
	}

	.hero-title {
		font-size: 16px;
	}

	.hero-dot {
		width: 28px;
		height: 26px;
		line-height: 26px;
		font-size: 11px;
	}

	.video-grid {
		grid-template-columns: 1fr;
	}

	.video-strip-grid {
		grid-template-columns: 1fr;
	}

	.most-viewed-list {
		grid-template-columns: 1fr;
	}

	.most-viewed-grid {
		grid-template-columns: 1fr;
	}

	.most-viewed-heading {
		font-size: 17px;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.breaking-text {
		font-size: 12px;
	}

	.home-sports-header {
		flex-wrap: wrap;
	}

	.home-sports-featured-title {
		font-size: 17px;
	}

	.home-sports-list-item {
		grid-template-columns: 1fr 88px;
		padding: 12px;
	}

	.home-sports-list-img {
		width: 88px;
		height: 64px;
	}

	.home-culture-header {
		flex-wrap: wrap;
	}

	.home-culture-featured-title {
		font-size: 17px;
	}

	.home-culture-list-item {
		grid-template-columns: 1fr 88px;
		padding: 12px;
	}

	.home-culture-list-img {
		width: 88px;
		height: 64px;
	}
}

.home-sports-block {
	margin: 24px auto;
	padding: 0;
}

.home-sports-header {
		display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: linear-gradient(90deg, #15803d 0%, #0f5132 100%);
	padding: 12px 16px;
	border-radius: 6px 6px 0 0;
}

.home-sports-header-title {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.home-sports-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	color: #f5c518;
	flex-shrink: 0;
}

.home-sports-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 3px;
	border-bottom: 3px solid #f5c518;
}

.home-sports-title a {
	color: #fff;
}

.home-sports-title a:hover {
	color: #f5c518;
}

.home-sports-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f5c518;
	color: #14213d;
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	flex-shrink: 0;
}

.home-sports-more-btn:hover {
	background: #ffdb4d;
	color: #14213d;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}

.home-sports-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 0;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-top: none;
	border-radius: 0 0 6px 6px;
	overflow: hidden;
}

.home-sports-featured {
	min-width: 0;
	border-left: 1px solid #eef2f6;
}

.home-sports-featured-thumb {
	display: block;
	position: relative;
	overflow: hidden;
}

.home-sports-featured-img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.home-sports-featured:hover .home-sports-featured-img {
	transform: scale(1.04);
}

.home-sports-featured-badge {
		position: absolute;
	top: 12px;
	right: 12px;
	background: #f5c518;
	color: #14213d;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
}

.home-sports-featured-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
		right: 0;
	padding: 12px 14px;
	background: linear-gradient(to top, rgba(15, 81, 50, 0.85), transparent);
	pointer-events: none;
}

.home-sports-views {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.home-sports-featured-body {
	padding: 16px 18px 20px;
}

.home-sports-featured-body .category-badge {
	margin-bottom: 8px;
}

.home-sports-featured-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 10px;
}

.home-sports-featured-title a {
	color: #111;
}

.home-sports-featured-title a:hover {
	color: #15803d;
}

.home-sports-featured-excerpt {
	font-size: 14px;
	line-height: 1.7;
	color: #666;
	margin: 0;
}

.home-sports-list {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.home-sports-list-item {
	display: grid;
	grid-template-columns: 1fr 100px;
	gap: 12px;
	align-items: center;
	padding: 14px 16px;
	border-bottom: 1px solid #eef2f6;
	transition: background 0.2s ease;
}

.home-sports-list-item:last-child {
	border-bottom: none;
}

.home-sports-list-item:hover {
	background: #f8faf9;
}

.home-sports-list-item:hover .home-sports-list-title a {
	color: #15803d;
}

.home-sports-list-body {
	min-width: 0;
}

.home-sports-list-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	margin: 0 0 6px;
}

.home-sports-list-title a {
	color: #111;
	transition: color 0.2s ease;
}

.home-sports-list-time {
	font-size: 12px;
	color: #15803d;
	font-weight: 700;
}

.home-sports-list-thumb {
	display: block;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}

.home-sports-list-img {
	width: 100px;
	height: 72px;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.home-sports-list-item:hover .home-sports-list-img {
	transform: scale(1.05);
}

@media (max-width: 992px) {
	.home-sports-grid {
		grid-template-columns: 1fr;
	}

	.home-sports-featured {
		border-left: none;
		border-bottom: 1px solid #eef2f6;
	}

	.home-sports-featured-img {
		height: 220px;
	}
}

.home-culture-block {
	margin: 24px auto;
	padding: 0;
}

.home-culture-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: linear-gradient(90deg, #4c1d95 0%, #14213d 55%, #312e81 100%);
	padding: 12px 16px;
	border-radius: 6px 6px 0 0;
	position: relative;
	overflow: hidden;
}

.home-culture-header::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 85% 50%, rgba(245, 197, 24, 0.12) 0%, transparent 55%);
	pointer-events: none;
}

.home-culture-header-title {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.home-culture-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: rgba(245, 197, 24, 0.18);
	border: 1px solid rgba(245, 197, 24, 0.35);
	border-radius: 8px;
	color: #f5c518;
	flex-shrink: 0;
}

.home-culture-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 3px;
	border-bottom: 3px solid #f5c518;
	position: relative;
	z-index: 1;
}

.home-culture-title a {
	color: #fff;
}

.home-culture-title a:hover {
	color: #f5c518;
}

.home-culture-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
		background: #f5c518;
		color: #14213d;
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.home-culture-more-btn:hover {
	background: #ffdb4d;
	color: #14213d;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}

.home-culture-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 0;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-top: none;
	border-radius: 0 0 6px 6px;
	overflow: hidden;
}

.home-culture-featured {
	min-width: 0;
	border-left: 1px solid #f0ebf8;
}

.home-culture-featured-thumb {
	display: block;
	position: relative;
	overflow: hidden;
}

.home-culture-featured-img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.home-culture-featured:hover .home-culture-featured-img {
	transform: scale(1.03);
}

.home-culture-featured-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #e11d2a;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
}

.home-culture-featured-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 14px 16px;
	background: linear-gradient(to top, rgba(20, 33, 61, 0.88), transparent);
	pointer-events: none;
}

.home-culture-views {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.home-culture-featured-body {
	padding: 18px 20px 22px;
}

.home-culture-featured-body .category-badge {
	margin-bottom: 8px;
}

.home-culture-featured-title {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.45;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}

.home-culture-featured-title a {
	color: #111;
	transition: color 0.2s ease;
}

.home-culture-featured-title a:hover {
	color: #5b21b6;
}

.home-culture-featured-excerpt {
	font-size: 14px;
	line-height: 1.75;
	color: #5c5c5c;
	margin: 0;
}

.home-culture-list {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #faf9fc;
}

.home-culture-list-item {
	display: grid;
	grid-template-columns: 1fr 100px;
	gap: 14px;
	align-items: center;
	padding: 16px 18px;
	border-bottom: 1px solid #ede9f5;
	transition: background 0.25s ease, box-shadow 0.25s ease;
}

.home-culture-list-item:last-child {
	border-bottom: none;
}

.home-culture-list-item:hover {
	background: #fff;
	box-shadow: inset 4px 0 0 #7c3aed;
}

.home-culture-list-item:hover .home-culture-list-title a {
	color: #5b21b6;
}

.home-culture-list-body {
	min-width: 0;
}

.home-culture-list-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 7px;
}

.home-culture-list-title a {
	color: #111;
	transition: color 0.2s ease;
}

.home-culture-list-meta {
	font-size: 12px;
	color: #7c3aed;
	font-weight: 600;
}

.home-culture-list-thumb {
	display: block;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(20, 33, 61, 0.08);
}

.home-culture-list-img {
	width: 100px;
	height: 72px;
	object-fit: cover;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-culture-list-item:hover .home-culture-list-img {
	transform: scale(1.04);
	opacity: 0.95;
}

@media (max-width: 992px) {
	.home-culture-grid {
		grid-template-columns: 1fr;
	}

	.home-culture-featured {
		border-left: none;
		border-bottom: 1px solid #f0ebf8;
	}

	.home-culture-featured-img {
		height: 220px;
	}

	.home-culture-list {
		background: #fff;
	}
}

.home-communiques-block {
	margin: 24px auto;
	padding: 0;
}

.home-communiques-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: linear-gradient(90deg, #14213d 0%, #1a3050 100%);
	padding: 13px 18px;
	border-radius: 6px 6px 0 0;
	border-bottom: 3px solid #f5c518;
}

.home-communiques-header-title {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.home-communiques-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(245, 197, 24, 0.4);
	border-radius: 8px;
	color: #f5c518;
	flex-shrink: 0;
}

.home-communiques-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}

.home-communiques-title a {
	color: #fff;
}

.home-communiques-title a:hover {
	color: #f5c518;
}

.home-communiques-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: transparent;
	color: #f5c518;
	font-size: 13px;
	font-weight: 700;
	border: 1px solid rgba(245, 197, 24, 0.55);
	border-radius: 999px;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	flex-shrink: 0;
}

.home-communiques-more-btn:hover {
	background: #f5c518;
	color: #14213d;
	border-color: #f5c518;
}

.home-communiques-body {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 0;
	background: #fff;
	border: 1px solid #dde3ea;
	border-top: none;
	border-radius: 0 0 6px 6px;
	overflow: hidden;
}

.home-communiques-featured {
	min-width: 0;
	border-left: 1px solid #eef1f5;
	padding: 0;
}

.home-communiques-featured-thumb {
	display: block;
	position: relative;
	overflow: hidden;
}

.home-communiques-featured-img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.home-communiques-featured:hover .home-communiques-featured-img {
	transform: scale(1.02);
}

.home-communiques-featured-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #14213d;
	color: #f5c518;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 11px;
	border-radius: 3px;
	border: 1px solid rgba(245, 197, 24, 0.35);
	z-index: 2;
	letter-spacing: 0.02em;
}

.home-communiques-featured-body {
	padding: 20px 22px 24px;
}

.home-communiques-date,
.home-communiques-card-date {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #6b7280;
	margin-bottom: 8px;
	letter-spacing: 0.01em;
}

.home-communiques-featured-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
	margin: 0 0 12px;
	color: #111;
}

.home-communiques-featured-title a {
	color: #111;
	transition: color 0.2s ease;
}

.home-communiques-featured-title a:hover {
	color: #14213d;
}

.home-communiques-featured-excerpt {
	font-size: 14px;
	line-height: 1.8;
	color: #4b5563;
	margin: 0 0 14px;
}

.home-communiques-read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #14213d;
	border-bottom: 2px solid #f5c518;
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.home-communiques-read-more:hover {
	color: #1a3050;
	border-color: #14213d;
}

.home-communiques-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: #eef1f5;
	min-width: 0;
}

.home-communiques-card {
	background: #fff;
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.home-communiques-card:hover {
	background: #f9fafb;
	box-shadow: inset 0 0 0 1px rgba(20, 33, 61, 0.08);
}

.home-communiques-card-thumb {
	display: block;
	overflow: hidden;
}

.home-communiques-card-img {
	width: 100%;
	height: 110px;
	object-fit: cover;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-communiques-card:hover .home-communiques-card-img {
	transform: scale(1.03);
	opacity: 0.92;
}

.home-communiques-card-body {
	padding: 12px 14px 16px;
	flex: 1;
}

.home-communiques-card-title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

.home-communiques-card-title a {
	color: #1f2937;
	transition: color 0.2s ease;
}

.home-communiques-card:hover .home-communiques-card-title a {
	color: #14213d;
}

@media (max-width: 992px) {
	.home-communiques-body {
		grid-template-columns: 1fr;
	}

	.home-communiques-featured {
		border-left: none;
		border-bottom: 1px solid #eef1f5;
	}

	.home-communiques-featured-img {
		height: 200px;
	}
}

@media (max-width: 600px) {
	.home-communiques-grid {
		grid-template-columns: 1fr;
	}

	.home-communiques-featured-title {
		font-size: 17px;
	}

	.home-communiques-header {
		flex-wrap: wrap;
	}
}

.home-politics-block {
	margin: 24px auto;
	padding: 0;
}

:root {
	--brand-yellow: #FFD700;
	--brand-yellow-dark: #E6C200;
	--brand-red: #D41F1F;
	--brand-black: #1A1A1A;
	--brand-footer: #2A2A2A;
	--brand-white: #FFFFFF;
	--brand-bg: #F5F5F5;
	--brand-border: #EEEEEE;
	--brand-text: #333333;
	--brand-muted: #666666;
	--brand-light-text: #999999;
	--brand-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
	--brand-shadow-strong: 0 18px 44px rgba(26, 26, 26, 0.16);
}

body,
body.home .site-content,
.site-content {
	background: var(--brand-bg);
	color: var(--brand-text);
}

a {
	color: var(--brand-black);
}

a:hover,
.entry-content a:hover,
.section-more:hover {
	color: var(--brand-red);
}

.site-header:not(.site-header--magazine) {
	background: var(--brand-white);
	box-shadow: 0 8px 28px rgba(26, 26, 26, 0.1);
}

.header-brand-bar {
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF8C8 56%, var(--brand-yellow) 100%);
	border-bottom: 4px solid var(--brand-black);
}

.header-brand-bar::after,
.footer-accent {
	background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-red) 50%, var(--brand-yellow) 100%);
}

.site-title--featured,
.site-title--featured:hover,
.site-title--featured .logo-text,
.top-links-menu a,
.header-icon-btn,
.hero-counter-current,
.home-zone-block-title,
.home-feed-time,
.home-video-more-btn,
.home-sports-more-btn,
.home-culture-more-btn,
.home-politics-more-btn,
.archive-hero-count,
.home-communiques-featured-badge,
.home-communiques-read-more {
	color: var(--brand-black);
}

.site-title--featured .logo-number,
.footer-logo .logo-number,
.top-links-menu a:hover,
.home-feed-live,
.home-feed-badge,
.home-highlight-time,
.most-viewed-cat,
.archive-read-more,
.home-politics-card-date {
	color: var(--brand-red);
}

.header-icon-btn {
	background: rgba(255, 255, 255, 0.84);
	border-color: rgba(26, 26, 26, 0.16);
}

.header-icon-btn:hover {
	background: var(--brand-yellow);
	border-color: var(--brand-black);
	color: var(--brand-black);
	box-shadow: 0 8px 18px rgba(26, 26, 26, 0.14);
}

.site-header:not(.site-header--magazine) .main-navigation,
.search-overlay,
.hero-slider--premium,
.most-viewed-card,
.home-video-header,
.home-communiques-header,
.archive-hero {
	background: var(--brand-black);
}

.site-header:not(.site-header--magazine) .nav-inner {
	min-height: 52px;
}

.site-header:not(.site-header--magazine) .primary-menu a {
	color: rgba(255, 255, 255, 0.94);
	border-radius: 8px;
	font-weight: 700;
}

.site-header:not(.site-header--magazine) .primary-menu a:hover {
	background: rgba(255, 215, 0, 0.14);
	color: var(--brand-yellow);
	transform: translateY(-1px);
}

.site-header:not(.site-header--magazine) .primary-menu .current-menu-item > a,
.site-header:not(.site-header--magazine) .primary-menu .current_page_item > a,
.search-submit,
.hero-slide-badge,
.hero-dot.is-active,
.most-viewed-rank,
.home-video-more-btn,
.home-sports-more-btn,
.home-culture-more-btn,
.home-politics-more-btn,
.home-communiques-more-btn:hover,
.page-numbers.current,
.page-numbers:hover,
.btn-primary {
	background: var(--brand-yellow);
	border-color: var(--brand-yellow);
	color: var(--brand-black);
	box-shadow: 0 4px 14px rgba(255, 215, 0, 0.32);
}

.breaking-ticker,
.breaking-label,
.category-badge,
.hero-slide-cat,
.home-highlight-badge--hot,
.home-feed-badge,
.home-video-play,
.home-culture-featured-badge,
.home-politics-featured-badge {
	background: var(--brand-red);
	color: var(--brand-white);
}

.breaking-label {
	background: rgba(26, 26, 26, 0.28);
}

.hero-slider--premium,
.home-zone-block,
.home-category-section,
.programs-block,
.video-block,
.believe-column,
.single-post,
.page-content,
.archive-featured,
.post-card,
.home-video-body,
.home-video-card-link,
.home-sports-grid,
.home-culture-grid,
.home-communiques-body,
.home-politics-body {
	background: var(--brand-white);
	border: 1px solid var(--brand-border);
	box-shadow: var(--brand-shadow);
}

.hero-slider--premium,
.home-zone-block,
.home-category-section,
.programs-block,
.video-block,
.post-card,
.archive-featured,
.single-post,
.page-content {
	border-radius: 10px;
}

.hero-slider--premium:hover,
.home-zone-block:hover,
.post-card:hover,
.home-category-section:hover,
.most-viewed-card:hover,
.home-video-card-link:hover {
	box-shadow: var(--brand-shadow-strong);
}

.hero-slide-overlay,
.home-video-shade,
.home-video-shade--sm,
.home-sports-featured-overlay,
.home-culture-featured-overlay,
.home-politics-featured-overlay {
	background: linear-gradient(to top, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0.48) 52%, rgba(26, 26, 26, 0.06) 100%);
}

.hero-slide-meta,
.hero-nav:hover,
.home-video-title a:hover,
.home-sports-title a:hover,
.home-culture-title a:hover,
.home-politics-title a:hover,
.home-communiques-title a:hover,
.most-viewed-card-title a:hover,
.footer-nav-list a:hover,
.footer-copy a:hover {
	color: var(--brand-yellow);
}

.hero-controls,
.section-header,
.programs-block .section-header,
.video-block .section-header,
.category-block .section-header,
.home-category-section__header,
.home-zone-block-header,
.tabs-list,
.home-video-sidebar,
.home-culture-list {
	background: var(--brand-bg);
	border-color: var(--brand-border);
}

.section-title,
.section-title a,
.widget-title,
.most-viewed-heading,
.believe-label,
.archive-title,
.search-title,
.footer-col-title {
	color: var(--brand-black);
	border-bottom-color: var(--brand-yellow);
}

.section-title::before,
.widget-title::after,
.most-viewed-heading::after {
	background: var(--brand-yellow);
}

.home-cat--video .section-title,
.home-cat--video .section-title a,
.home-cat--video .section-more,
.home-video-date,
.home-sports-list-time,
.home-culture-list-meta {
	color: var(--brand-red);
}

.home-cat--video .section-title,
.home-video-title,
.home-sports-title,
.home-culture-title,
.home-politics-title {
	border-bottom-color: var(--brand-yellow);
}

.home-video-header,
.home-sports-header,
.home-culture-header,
.home-communiques-header,
.home-politics-header,
.archive-hero {
	background: linear-gradient(135deg, var(--brand-black) 0%, #2A2A2A 100%);
	border-bottom: 3px solid var(--brand-yellow);
}

.home-video-title a,
.home-sports-title a,
.home-culture-title a,
.home-communiques-title a,
.home-politics-title a,
.archive-hero-title,
.most-viewed-card-title a,
.footer-logo,
.footer-copy a {
	color: var(--brand-white);
}

.home-sports-featured-title a:hover,
.home-culture-featured-title a:hover,
.home-politics-featured-title a:hover,
.home-communiques-featured-title a:hover,
.archive-featured-title a:hover,
.post-card-title a:hover,
.category-featured h3 a:hover,
.category-list-item h4 a:hover,
.home-highlight-card:hover .home-highlight-title a,
.home-feed-item:hover .home-feed-link {
	color: var(--brand-red);
}

.home-feed-item,
.recent-post-item,
.home-sports-list-item,
.home-culture-list-item,
.home-politics-card,
.home-communiques-card,
.footer-bottom,
.most-viewed-header {
	border-color: var(--brand-border);
}

.home-feed-item:hover,
.home-feed-item--latest,
.home-highlight-card:hover,
.home-politics-card:hover,
.home-communiques-card:hover {
	background: #FFFBE6;
}

.home-feed-link,
.home-highlight-title a,
.featured-widget-title a,
.recent-post-item a,
.tab-panel-body h3 a,
.card-title a,
.video-title a,
.category-featured h3 a,
.category-list-item h4 a,
.post-card-title a,
.archive-featured-title a,
.home-video-card-title,
.home-sports-featured-title a,
.home-sports-list-title a,
.home-culture-featured-title a,
.home-culture-list-title a,
.home-politics-featured-title a,
.home-politics-card-title a,
.home-communiques-featured-title a,
.home-communiques-card-title a,
.entry-title {
	color: var(--brand-black);
}

.hero-excerpt,
.home-category-section__grid .category-featured-excerpt,
.category-featured p,
.post-card-excerpt,
.archive-featured-excerpt,
.entry-meta,
.most-viewed-subtitle,
.home-video-featured-excerpt,
.home-sports-featured-excerpt,
.home-culture-featured-excerpt,
.home-politics-featured-excerpt,
.home-communiques-featured-excerpt,
.footer-tagline,
.post-card-meta {
	color: var(--brand-muted);
}

.recent-post-time,
.home-communiques-date,
.home-communiques-card-date,
.breadcrumb-list,
.footer-copy {
	color: var(--brand-light-text);
}

.site-footer {
	background: var(--brand-footer);
	color: rgba(255, 255, 255, 0.88);
	border-top: 4px solid var(--brand-yellow);
}

.footer-bottom {
	background: #1F1F1F;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
	color: var(--brand-yellow);
}

.footer-social .social-icons a:hover,
.social-icons a:hover {
	background: var(--brand-yellow);
	border-color: var(--brand-yellow);
	color: var(--brand-black);
}

body.dark-mode {
	background: var(--brand-black);
}

body.dark-mode .site-content,
body.dark-mode body.home .site-content {
	background: var(--brand-black);
}

body.dark-mode .header-brand-bar {
	background: linear-gradient(180deg, var(--brand-footer) 0%, var(--brand-black) 100%);
	border-bottom-color: var(--brand-yellow);
}

body.dark-mode .site-header:not(.site-header--magazine) .main-navigation,
body.dark-mode .search-overlay,
body.dark-mode .site-footer {
	background: var(--brand-black);
}

body.dark-mode .home-zone-block,
body.dark-mode .home-category-section,
body.dark-mode .programs-block,
body.dark-mode .video-block,
body.dark-mode .believe-column,
body.dark-mode .single-post,
body.dark-mode .page-content,
body.dark-mode .archive-featured,
body.dark-mode .post-card,
body.dark-mode .home-video-body,
body.dark-mode .home-video-card-link,
body.dark-mode .home-sports-grid,
body.dark-mode .home-culture-grid,
body.dark-mode .home-communiques-body,
body.dark-mode .home-politics-body {
	background: var(--brand-footer);
	border-color: #3A3A3A;
}
