/* ==========================================================================
   NationalPoint Urdu News Theme - Fixed Layout & Clean RTL Grid System
   ========================================================================== */

@font-face {
	font-family: 'Jameel Noori Nastaliq';
	src: url('https://cdn.jsdelivr.net/gh/zaheerk/urdu-fonts@main/JameelNooriNastaleeq.woff2') format('woff2'),
	     url('https://cdn.jsdelivr.net/gh/zaheerk/urdu-fonts@main/JameelNooriNastaleeq.woff') format('woff'),
	     url('https://cdn.jsdelivr.net/gh/zaheerk/urdu-fonts@main/JameelNooriNastaleeq.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;500;600;700;800&family=Noto+Nastaliq+Urdu:wght@400;600;700&display=swap');

:root {
	/* Primary Logo Color Tokens */
	--primary-green: #4d5722;
	--primary-green-hover: #3b441a;
	--primary-green-dark: #1e250e;
	--accent-gold: #cfa840;
	--accent-gold-hover: #e3be53;
	--accent-gold-glow: rgba(207, 168, 64, 0.3);
	
	/* Surface & Background Colors */
	--bg-body: #f4f6f0;
	--bg-surface: #ffffff;
	--bg-dark: #12170a;
	--bg-dark-surface: #1d2512;
	--bg-category-header: #eeefea;

	/* Text Colors */
	--text-main: #141b0b;
	--text-secondary: #333d24;
	--text-muted: #5e6b49;
	--text-light: #ffffff;
	--text-gold: #dfbb4f;

	/* Borders & Shadows */
	--border-color: #e0e4d5;
	--border-dark: #2d381c;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
	--shadow-md: 0 4px 14px rgba(77, 87, 34, 0.12);
	--shadow-lg: 0 10px 28px rgba(18, 23, 10, 0.2);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 14px;

	/* Layout Dimensions */
	--container-width: 1280px;
}

/* Reset & RTL Defaults */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	direction: rtl;
	text-align: right;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', 'Noto Sans Arabic', -apple-system, sans-serif;
	background-color: var(--bg-body);
	color: var(--text-main);
	line-height: 2.3;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif;
}

/* GLOBAL THEME-WIDE HEADINGS - JAMEEL NOORI NASTALEEQ WITH PERFECT SPACING */
h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.main-cat-title,
.sub-news-title,
.trending-title,
.side-card-title,
.columnist-article-title,
.video-title,
.sidebar-post-title,
.hero-title-link {
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', 'Noto Sans Arabic', sans-serif !important;
	color: var(--text-main);
	font-weight: 700;
	line-height: 2.2 !important;
	display: block;
	margin: 0;
	padding-top: 0.1rem;
	padding-bottom: 0.15rem;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 2.2 !important; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); line-height: 2.2 !important; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); line-height: 2.2 !important; }
h4 { font-size: 1.1rem; line-height: 2.2 !important; }
p { color: var(--text-secondary); margin-bottom: 0.85rem; line-height: 2.3 !important; font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-green); }

/* Layout Containers */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

/* Top Utility Bar */
.top-bar {
	background: var(--bg-dark);
	color: var(--text-light);
	font-size: 0.875rem;
	padding: 0.4rem 0;
	border-bottom: 2px solid var(--accent-gold);
}

.top-bar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.urdu-date {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--text-gold);
	font-size: 0.9rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif;
}

.top-nav ul {
	display: flex;
	gap: 1.25rem;
	list-style: none;
}

.top-nav a {
	color: #a3b08b;
	font-size: 0.875rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif;
}

.top-nav a:hover {
	color: var(--accent-gold);
}

.social-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.social-links a {
	color: #a3b08b;
	font-size: 0.95rem;
}

.social-links a:hover {
	color: var(--accent-gold);
}

/* Header & Logo Area - MINIMALIST HIGH CONTRAST BRANDING */
.site-header {
	background: var(--bg-surface);
	border-bottom: 1px solid var(--border-color);
	padding: 0.75rem 0;
}

.header-banner-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0;
	gap: 2rem;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-branding-link {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	text-decoration: none;
}

.site-branding-logo {
	width: 85px;
	height: 85px;
	object-fit: contain;
	border-radius: 50%;
	box-shadow: 0 0 14px rgba(207, 168, 64, 0.4);
	border: 2px solid var(--accent-gold);
	flex-shrink: 0;
}

.site-title-group {
	display: flex;
	align-items: center;
}

.site-title {
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--primary-green);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	line-height: 1.4 !important;
	margin: 0 !important;
	letter-spacing: -0.01em;
}

.header-ad-space {
	display: none;
	width: 728px;
	height: 90px;
	background: var(--bg-category-header);
	border: 1px dashed var(--accent-gold);
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 0.85rem;
	border-radius: var(--radius-sm);
	font-family: 'Jameel Noori Nastaliq', sans-serif;
}

@media (min-width: 992px) {
	.header-ad-space { display: flex; }
}

/* Primary Navigation Bar */
.main-nav-bar {
	background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
	color: var(--text-light);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 2px solid var(--accent-gold);
	box-shadow: var(--shadow-md);
}

.main-nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
}

.main-navigation li a {
	display: block;
	padding: 0.75rem 1.2rem;
	color: var(--text-light);
	font-weight: 600;
	font-size: 1.05rem;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	line-height: 1.8 !important;
}

.main-navigation li a:hover,
.main-navigation .current-menu-item > a {
	background: rgba(207, 168, 64, 0.2);
	color: var(--accent-gold);
	border-bottom-color: var(--accent-gold);
}

/* Mobile Toggle */
.mobile-toggle {
	display: none;
	background: transparent;
	border: none;
	color: var(--accent-gold);
	font-size: 1.5rem;
	padding: 0.5rem;
	cursor: pointer;
}

@media (max-width: 868px) {
	.mobile-toggle { display: block; }
	.main-navigation {
		display: none;
		width: 100%;
		background: var(--primary-green-dark);
	}
	.main-navigation.is-active {
		display: block;
	}
	.main-navigation ul {
		flex-direction: column;
		align-items: stretch;
	}
	.main-navigation li a {
		border-bottom: 1px solid rgba(207, 168, 64, 0.2);
	}
}

/* Breaking News Ticker Bar */
.ticker-bar {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-right: 5px solid var(--accent-gold);
	display: flex;
	align-items: center;
	height: 48px;
	overflow: hidden;
	margin-bottom: 1.75rem;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
}

.ticker-label {
	background: linear-gradient(135deg, var(--accent-gold) 0%, #b8922e 100%);
	color: var(--bg-dark);
	padding: 0 1.25rem;
	height: 100%;
	display: flex;
	align-items: center;
	font-weight: 800;
	font-size: 0.95rem;
	white-space: nowrap;
	gap: 0.5rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.ticker-content {
	flex: 1;
	padding: 0 1rem;
	overflow: hidden;
	white-space: nowrap;
}

.ticker-marquee {
	display: inline-block;
	animation: marquee 25s linear infinite;
	font-size: 0.95rem;
	color: var(--text-main);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	line-height: 1.8 !important;
}

.ticker-marquee:hover {
	animation-play-state: paused;
}

.ticker-marquee a {
	margin-left: 2rem;
	color: var(--text-main);
}

.ticker-marquee a:hover {
	color: var(--primary-green);
}

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

/* Hero News Grid */
.hero-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
	.hero-news-grid {
		grid-template-columns: 1.35fr 1fr;
	}
}

.hero-main-story {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	height: 100%;
	min-height: 380px;
	background: var(--bg-dark);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-dark);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero-main-story img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hero-main-story:hover img {
	transform: scale(1.04);
}

.hero-story-overlay {
	position: relative;
	z-index: 2;
	background: linear-gradient(0deg, rgba(18, 23, 10, 0.95) 0%, rgba(18, 23, 10, 0.7) 70%, transparent 100%);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero-category-badge {
	align-self: flex-start;
	background: var(--accent-gold);
	color: var(--bg-dark);
	font-size: 0.8rem;
	font-weight: 800;
	padding: 0.2rem 0.75rem;
	border-radius: var(--radius-sm);
	margin-bottom: 0.6rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.hero-title-link {
	color: var(--text-light) !important;
	font-size: clamp(1.25rem, 2.2vw, 1.7rem);
	font-weight: 700;
	line-height: 2.2 !important;
	display: block;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.hero-title-link:hover {
	color: var(--accent-gold) !important;
}

.hero-side-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.hero-side-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-side-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--accent-gold);
}

.side-card-img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e2e7d7;
}

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

.hero-side-card:hover .side-card-img img {
	transform: scale(1.06);
}

.side-card-content {
	padding: 0.85rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.side-card-title {
	font-size: 0.95rem;
	line-height: 2.2 !important;
	font-weight: 700;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

/* Category Block Header */
.category-block-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid var(--accent-gold);
	padding-bottom: 0.5rem;
	margin-bottom: 1.25rem;
}

.category-block-title {
	font-size: 1.35rem;
	color: var(--primary-green);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	line-height: 2.0 !important;
}

.category-block-title::before {
	content: '';
	width: 8px;
	height: 22px;
	background: var(--accent-gold);
	display: inline-block;
	border-radius: 2px;
}

.more-link {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 600;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.more-link:hover {
	color: var(--accent-gold);
}

/* Columnists & Opinion Section */
.columnists-section {
	margin-bottom: 2.75rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}

.columnists-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

@media (max-width: 992px) {
	.columnists-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 540px) {
	.columnists-grid {
		grid-template-columns: 1fr;
	}
}

.columnist-card {
	background: var(--bg-category-header);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.25rem 1rem;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.columnist-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent-gold);
}

.columnist-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 0.75rem;
	border: 3px solid var(--accent-gold);
	box-shadow: var(--shadow-sm);
	display: block;
}

.columnist-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 0.3rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.columnist-article-title {
	font-size: 0.9rem;
	line-height: 2.2 !important;
	color: var(--text-main);
	font-weight: 600;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

/* 3-COLUMN CATEGORY BOXES GRID */
.three-column-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2.75rem;
}

@media (max-width: 992px) {
	.three-column-news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.three-column-news-grid {
		grid-template-columns: 1fr;
	}
}

.category-column-box {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
}

.main-cat-story {
	margin-bottom: 1.25rem;
}

.main-cat-img {
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-sm);
	overflow: hidden;
	margin-bottom: 0.85rem;
	background: #e2e7d7;
}

.main-cat-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-cat-title {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 2.2 !important;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.sub-news-list {
	list-style: none;
	border-top: 1px solid var(--border-color);
	padding-top: 0.85rem;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
}

.sub-news-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px dashed var(--border-color);
}

.sub-news-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* UNIFORM SAME SIZE THUMBNAILS (95px x 68px) */
.sub-news-thumb,
.trending-thumb {
	width: 95px !important;
	height: 68px !important;
	min-width: 95px !important;
	min-height: 68px !important;
	max-width: 95px !important;
	max-height: 68px !important;
	border-radius: var(--radius-sm);
	overflow: hidden;
	flex-shrink: 0;
	background: #e2e7d7;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
	margin-top: 0.1rem;
}

.sub-news-thumb img,
.trending-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform 0.3s ease;
}

.sub-news-item:hover .sub-news-thumb img,
.trending-item:hover .trending-thumb img {
	transform: scale(1.06);
}

/* HIGH-LEGIBILITY UNCOLLIDED HEADINGS (JAMEEL NOORI NASTALEEQ) */
.sub-news-title {
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 2.2 !important;
	color: var(--text-main);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	display: block;
	margin: 0;
}

.sub-news-title:hover {
	color: var(--primary-green);
}

/* Video / Multimedia Section */
.video-section {
	background: var(--bg-dark);
	color: var(--text-light);
	padding: 2.5rem 1.5rem;
	margin-bottom: 2.75rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-dark);
}

.video-section .category-block-header {
	color: var(--text-light);
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

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

.video-card {
	background: var(--bg-dark-surface);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-dark);
}

.video-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
}

.video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* PERFECTLY CENTERED PLAY BADGE SVG ICON */
.play-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 52px;
	height: 52px;
	background: rgba(207, 168, 64, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-dark);
	box-shadow: 0 0 22px var(--accent-gold-glow);
	transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .play-badge {
	transform: translate(-50%, -50%) scale(1.1);
	background: var(--accent-gold-hover);
}

.play-badge svg {
	width: 24px;
	height: 24px;
	fill: var(--bg-dark);
	margin-left: -2px;
}

.video-title {
	padding: 1rem;
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 2.2 !important;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

/* Main Content & Sidebar Layout */
.main-sidebar-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 992px) {
	.main-sidebar-grid {
		grid-template-columns: 2.8fr 1.2fr;
	}
}

/* Trending / Most Read Widget */
.widget-trending {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	margin-bottom: 2rem;
	box-shadow: var(--shadow-sm);
}

.trending-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.trending-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px dashed var(--border-color);
}

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

.trending-title {
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 2.2 !important;
	color: var(--text-main);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	display: block;
	margin: 0;
}

.trending-title:hover {
	color: var(--primary-green);
}

/* ATTRACTIVE URDU NEWS PAGINATION SYSTEM */
.pagination-wrapper {
	margin-top: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination-wrapper .nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	background: var(--bg-surface);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
}

.pagination-wrapper .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.85rem;
	border-radius: var(--radius-md);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text-main);
	background: var(--bg-category-header);
	border: 1px solid var(--border-color);
	transition: all 0.25s ease;
	text-decoration: none;
	line-height: 1;
}

.pagination-wrapper .page-numbers:hover {
	background: var(--accent-gold);
	color: var(--bg-dark);
	border-color: var(--accent-gold);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.pagination-wrapper .page-numbers.current {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: #ffffff !important;
	border-color: var(--accent-gold);
	box-shadow: var(--shadow-md);
}

.pagination-wrapper .page-numbers.dots {
	background: transparent;
	border: none;
	color: var(--text-muted);
}

.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
	font-weight: 800;
	padding: 0 1.25rem;
	background: var(--primary-green);
	color: var(--text-light) !important;
	border-color: var(--primary-green);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.pagination-wrapper .page-numbers.prev:hover,
.pagination-wrapper .page-numbers.next:hover {
	background: var(--accent-gold);
	color: var(--bg-dark) !important;
	border-color: var(--accent-gold);
}

/* Single Article Detail Page - ULTRA MODERN URDU NEWS PORTAL STYLING */
.single-post-article {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.article-cat-badge-wrapper {
	margin-bottom: 0.85rem;
}

.article-cat-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--accent-gold) !important;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	border: 1px solid var(--accent-gold);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	box-shadow: 0 2px 8px rgba(77, 87, 34, 0.2);
}

.article-cat-badge:hover {
	background: var(--accent-gold);
	color: var(--bg-dark) !important;
}

.entry-header {
	margin-bottom: 1.75rem;
}

.entry-title {
	font-size: clamp(2rem, 4.2vw, 2.75rem);
	margin-bottom: 1.25rem;
	line-height: 2.1 !important;
	color: var(--primary-green-dark);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	letter-spacing: -0.01em;
}

.article-date-bar {
	display: flex;
	align-items: center;
	padding: 0.6rem 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 1.75rem;
}

.article-date-text {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-secondary);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.entry-featured-image {
	margin: 1.75rem 0 0.75rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
}

.entry-featured-image img {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.entry-featured-image:hover img {
	transform: scale(1.02);
}

.image-caption {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 2.2 !important;
	color: #1e260e;
	padding: 0.85rem 1.25rem;
	background: #f4f6f0;
	border-radius: var(--radius-sm);
	border-right: 4px solid var(--primary-green);
	margin-bottom: 2rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.entry-content {
	font-size: 1.3rem;
	line-height: 2.35 !important;
	color: #17210b;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.entry-content p {
	margin-bottom: 1.6rem;
	font-size: 1.3rem;
	line-height: 2.35 !important;
}

/* Callout Box for Related News ("یہ بھی پڑھیں: ") */
.article-callout-box {
	background: #f7f9f2;
	border-right: 5px solid var(--primary-green);
	border-left: 1px solid var(--border-color);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1rem 1.35rem;
	margin: 2rem 0;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.article-callout-box:hover {
	transform: translateY(-2px);
	border-right-color: var(--accent-gold);
	box-shadow: 0 6px 18px rgba(77, 87, 34, 0.14);
}

.callout-link {
	display: inline-block;
	text-decoration: none !important;
	color: inherit !important;
	width: 100%;
	font-size: 1.25rem;
	line-height: 2.2 !important;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.callout-label {
	color: var(--primary-green) !important;
	font-weight: 800;
	font-size: 1.25rem;
	margin-left: 0.5rem;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.callout-title {
	font-weight: 700;
	color: var(--primary-green-dark);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	transition: color 0.2s ease;
}

.callout-link:hover .callout-title {
	color: var(--accent-gold);
}

.article-tags-pills {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid var(--border-color);
}

.tags-title {
	color: var(--primary-green);
	font-size: 1.05rem;
	margin-left: 0.5rem;
}

.tag-pill {
	display: inline-block;
	padding: 0.35rem 1rem;
	background: #f4f6f0;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-secondary);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
	transition: all 0.25s ease;
}

.tag-pill:hover {
	border-color: var(--accent-gold);
	background: var(--accent-gold);
	color: var(--bg-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(207, 168, 64, 0.25);
}

/* Related Posts Section */
.related-posts-section {
	margin-top: 3rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}

/* Sidebar Tab Widgets */
.sidebar-tab-widget {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	margin-bottom: 1.75rem;
	box-shadow: var(--shadow-sm);
}

.sidebar-post-item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 0.75rem 0;
	border-bottom: 1px dashed var(--border-color);
}

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

.sidebar-post-thumb {
	width: 75px;
	height: 55px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	flex-shrink: 0;
}

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

.sidebar-post-title {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 2.2 !important;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

/* Footer Section */
.site-footer {
	background: var(--bg-dark);
	color: #a3b08b;
	padding: 3.5rem 0 1.5rem;
	margin-top: auto;
	border-top: 4px solid var(--accent-gold);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.footer-widget-title {
	color: var(--text-light);
	font-size: 1.2rem;
	margin-bottom: 1.25rem;
	border-bottom: 2px solid var(--accent-gold);
	padding-bottom: 0.4rem;
	display: inline-block;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget li {
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--border-dark);
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}

.footer-widget a {
	color: #a3b08b;
}

.footer-widget a:hover {
	color: var(--accent-gold);
}

.footer-bottom {
	border-top: 1px solid var(--border-dark);
	padding-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.9rem;
	color: #728258;
	font-family: 'Jameel Noori Nastaliq', 'Jameel Noori Nastaleeq', sans-serif !important;
}
