/* =========================================================
   ROJGAR RESULT PRESS
   PRODUCTION FRONT PAGE CSS
   ========================================================= */

.rrp-site-main {
	--rrp-blue: #0b3b8f;
	--rrp-blue-dark: #06265f;
	--rrp-blue-light: #eef5ff;

	--rrp-orange: #f59e0b;
	--rrp-green: #16803c;

	--rrp-heading: #111827;
	--rrp-text: #374151;
	--rrp-muted: #6b7280;

	--rrp-border: #e5e7eb;
	--rrp-white: #ffffff;
	--rrp-bg: #f5f7fb;

	--rrp-radius: 12px;

	--rrp-shadow:
		0 4px 20px rgba(15, 23, 42, 0.055);

	--rrp-shadow-hover:
		0 14px 35px rgba(15, 23, 42, 0.11);

	background: var(--rrp-bg);
	color: var(--rrp-text);
}

.rrp-site-main *,
.rrp-site-main *::before,
.rrp-site-main *::after {
	box-sizing: border-box;
}

.rrp-site-main a {
	text-decoration: none;
}

.rrp-container {
	width: min(1200px, calc(100% - 30px));
	margin-inline: auto;
	padding-block: 25px 60px;
}


/* =========================================================
   HERO
   ========================================================= */

.rrp-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 35px;
	padding: 48px;
	margin-bottom: 25px;
	overflow: hidden;
	border-radius: 18px;
	background:
		linear-gradient(
			135deg,
			#061f4f 0%,
			#0b3b8f 48%,
			#145bc0 100%
		);
	color: #fff;
	box-shadow:
		0 18px 50px rgba(6, 38, 95, 0.22);
}

.rrp-hero::before {
	content: "";
	position: absolute;
	width: 430px;
	height: 430px;
	right: -170px;
	top: -220px;
	border-radius: 50%;
	background: rgba(255,255,255,.065);
}

.rrp-hero::after {
	content: "";
	position: absolute;
	width: 250px;
	height: 250px;
	left: 40%;
	bottom: -220px;
	border-radius: 50%;
	background: rgba(255,255,255,.04);
}

.rrp-hero-background {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			transparent 0%,
			rgba(255,255,255,.025) 50%,
			transparent 100%
		);
	pointer-events: none;
}

.rrp-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.rrp-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 17px;
	padding: 6px 11px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 30px;
	background: rgba(255,255,255,.09);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .3px;
}

.rrp-pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #43e97b;
	box-shadow: 0 0 0 5px rgba(67,233,123,.12);
	animation: rrp-pulse 2s infinite;
}

@keyframes rrp-pulse {

	0% {
		box-shadow: 0 0 0 0 rgba(67,233,123,.35);
	}

	70% {
		box-shadow: 0 0 0 8px rgba(67,233,123,0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(67,233,123,0);
	}
}

.rrp-hero h1 {
	max-width: 800px;
	margin: 0 0 15px;
	color: #fff;
	font-size: clamp(30px, 4vw, 47px);
	font-weight: 850;
	line-height: 1.13;
	letter-spacing: -.8px;
}

.rrp-hero p {
	max-width: 760px;
	margin: 0;
	color: rgba(255,255,255,.86);
	font-size: 16px;
	line-height: 1.75;
}

.rrp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 25px;
}

.rrp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 750;
	transition:
		transform .2s ease,
		box-shadow .2s ease,
		background .2s ease;
}

.rrp-btn:hover {
	transform: translateY(-2px);
}

.rrp-btn-primary {
	background: #f59e0b;
	color: #fff !important;
	box-shadow: 0 6px 18px rgba(245,158,11,.25);
}

.rrp-btn-primary:hover {
	background: #d97706;
	box-shadow: 0 9px 24px rgba(245,158,11,.32);
}

.rrp-btn-light {
	background: #fff;
	color: var(--rrp-blue) !important;
}

.rrp-btn-light:hover {
	background: #f1f5f9;
}

.rrp-btn-arrow {
	font-size: 18px;
	line-height: 1;
}


/* =========================================================
   HERO STATS
   ========================================================= */

.rrp-hero-stats {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	min-width: 180px;
}

.rrp-stat {
	width: 180px;
	padding: 13px 15px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 9px;
	background: rgba(255,255,255,.07);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.rrp-stat strong {
	display: block;
	color: #fff;
	font-size: 15px;
}

.rrp-stat span {
	display: block;
	margin-top: 3px;
	color: rgba(255,255,255,.65);
	font-size: 11px;
}


/* =========================================================
   LATEST NEWS
   ========================================================= */

.rrp-news-section {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: stretch;
	margin-bottom: 35px;
	border: 1px solid var(--rrp-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: var(--rrp-shadow);
	overflow: hidden;
}

.rrp-news-label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 18px;
	background: var(--rrp-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.rrp-news-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fbbf24;
}

.rrp-news-track {
	display: flex;
	align-items: center;
	gap: 30px;
	min-width: 0;
	padding: 12px 18px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.rrp-news-item {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	color: var(--rrp-heading);
}

.rrp-news-item:hover .rrp-news-title {
	color: var(--rrp-blue);
}

.rrp-news-title {
	font-size: 13px;
	font-weight: 650;
	transition: color .2s ease;
}

.rrp-news-item time {
	color: var(--rrp-muted);
	font-size: 11px;
	white-space: nowrap;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.rrp-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 17px;
}

.rrp-section-kicker {
	display: block;
	margin-bottom: 5px;
	color: var(--rrp-blue);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 1.1px;
}

.rrp-section-heading h2,
.rrp-help-heading h2 {
	margin: 0;
	color: var(--rrp-heading);
	font-size: 27px;
	font-weight: 850;
	line-height: 1.25;
	letter-spacing: -.3px;
}

.rrp-section-heading p {
	max-width: 650px;
	margin: 7px 0 0;
	color: var(--rrp-muted);
	font-size: 14px;
	line-height: 1.65;
}


/* =========================================================
   QUICK ACCESS
   ========================================================= */

.rrp-quick-section {
	margin-bottom: 42px;
}

.rrp-quick-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 13px;
}

.rrp-quick-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 15px;
	border: 1px solid var(--rrp-border);
	border-radius: 10px;
	background: #fff;
	color: var(--rrp-heading);
	box-shadow: var(--rrp-shadow);
	overflow: hidden;
	transition:
		transform .22s ease,
		border-color .22s ease,
		box-shadow .22s ease;
}

.rrp-quick-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--rrp-blue);
	transform: scaleY(0);
	transform-origin: center;
	transition: transform .22s ease;
}

.rrp-quick-card:hover {
	transform: translateY(-3px);
	border-color: #c8d6ed;
	box-shadow: var(--rrp-shadow-hover);
}

.rrp-quick-card:hover::before {
	transform: scaleY(1);
}

.rrp-quick-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 8px;
	background: var(--rrp-blue-light);
	color: var(--rrp-blue);
	font-size: 16px;
	font-weight: 850;
}

.rrp-quick-content {
	min-width: 0;
}

.rrp-quick-content strong {
	display: block;
	color: var(--rrp-heading);
	font-size: 13px;
	line-height: 1.35;
}

.rrp-quick-content small {
	display: block;
	margin-top: 3px;
	color: var(--rrp-muted);
	font-size: 11px;
}

.rrp-card-arrow {
	margin-left: auto;
	color: var(--rrp-blue);
	font-size: 18px;
	transition: transform .2s ease;
}

.rrp-quick-card:hover .rrp-card-arrow {
	transform: translateX(3px);
}





/* =========================================================
   CATEGORY GRID
   ========================================================= */

.rrp-category-section {
	margin-bottom: 45px;
}

.rrp-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

/* =========================================================
   CATEGORY SECTION
   RED / BREAKING NEWS THEME
   ========================================================= */

section.rrp-category-section {
	width: 100% !important;
	margin: 45px 0 !important;
	padding: 0 !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	box-sizing: border-box !important;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

section.rrp-category-section .rrp-section-heading {
	display: block !important;
	width: 100% !important;

	margin: 0 0 20px !important;
	padding: 0 0 15px !important;

	border-bottom: 1px solid #e5e7eb !important;

	visibility: visible !important;
	opacity: 1 !important;
}

section.rrp-category-section .rrp-section-heading > div {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}


/* KICKER */

section.rrp-category-section .rrp-section-kicker {
	display: block !important;

	margin: 0 0 5px !important;
	padding: 0 !important;

	color: #dc2626 !important;

	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;

	text-transform: uppercase !important;
	letter-spacing: .8px !important;

	visibility: visible !important;
	opacity: 1 !important;
}


/* MAIN TITLE */

section.rrp-category-section
.rrp-section-heading
h2 {
	display: block !important;

	width: auto !important;
	height: auto !important;

	margin: 0 !important;
	padding: 0 !important;

	color: #171717 !important;

	font-size: 26px !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;

	text-transform: none !important;

	visibility: visible !important;
	opacity: 1 !important;
}


/* DESCRIPTION */

section.rrp-category-section
.rrp-section-heading
p {
	display: block !important;

	margin: 7px 0 0 !important;
	padding: 0 !important;

	color: #6b7280 !important;

	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
}


/* =========================================================
   CATEGORY GRID
   ========================================================= */

section.rrp-category-section
.rrp-category-grid {
	display: grid !important;

	width: 100% !important;

	grid-template-columns:
		repeat(3, minmax(0, 1fr)) !important;

	gap: 20px !important;

	margin: 0 !important;
	padding: 0 !important;

	visibility: visible !important;
	opacity: 1 !important;

	box-sizing: border-box !important;
}


/* =========================================================
   CATEGORY CARD
   ========================================================= */

section.rrp-category-section
.rrp-category-card {
	position: relative !important;

	display: flex !important;
	flex-direction: column !important;

	width: 100% !important;
	min-width: 0 !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 1px solid #e5e7eb !important;
	border-radius: 12px !important;

	background: #fff !important;

	box-shadow:
		0 4px 18px rgba(0, 0, 0, .06) !important;

	overflow: hidden !important;

	box-sizing: border-box !important;

	visibility: visible !important;
	opacity: 1 !important;

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease !important;
}


section.rrp-category-section
.rrp-category-card:hover {
	transform: translateY(-4px) !important;

	border-color: #fecaca !important;

	box-shadow:
		0 10px 30px rgba(185, 28, 28, .12) !important;
}


/* =========================================================
   CATEGORY HEADER
   ========================================================= */

section.rrp-category-section
.rrp-category-header {
	position: relative !important;

	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;

	width: 100% !important;
	min-height: 73px !important;

	margin: 0 !important;
	padding: 14px 16px !important;

	gap: 10px !important;

	background:
		linear-gradient(
			135deg,
			#991b1b,
			#dc2626
		) !important;

	color: #fff !important;

	box-sizing: border-box !important;

	visibility: visible !important;
	opacity: 1 !important;
}


/* Decorative Circle */

section.rrp-category-section
.rrp-category-header::after {
	content: "" !important;

	position: absolute !important;

	width: 90px !important;
	height: 90px !important;

	right: -45px !important;
	top: -50px !important;

	border-radius: 50% !important;

	background:
		rgba(255,255,255,.08) !important;

	pointer-events: none !important;
}


/* =========================================================
   CATEGORY LABEL
   ========================================================= */

section.rrp-category-section
.rrp-category-label {
	display: block !important;

	margin: 0 0 3px !important;
	padding: 0 !important;

	color: rgba(255,255,255,.72) !important;

	font-size: 9px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;

	text-transform: uppercase !important;
	letter-spacing: .9px !important;

	visibility: visible !important;
	opacity: 1 !important;
}


/* =========================================================
   CATEGORY TITLE
   ========================================================= */

section.rrp-category-section
.rrp-category-header
h3 {
	position: relative !important;
	z-index: 5 !important;

	display: block !important;

	width: auto !important;
	height: auto !important;

	margin: 0 !important;
	padding: 0 !important;

	color: #fff !important;

	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;

	text-transform: none !important;

	visibility: visible !important;
	opacity: 1 !important;
}


section.rrp-category-section
.rrp-category-header
h3 a {
	display: inline !important;

	color: #fff !important;

	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;

	text-decoration: none !important;

	visibility: visible !important;
	opacity: 1 !important;
}


section.rrp-category-section
.rrp-category-header
h3 a:hover {
	color: #fff !important;
	text-decoration: underline !important;
}


/* =========================================================
   CATEGORY ARROW
   ========================================================= */

section.rrp-category-section
.rrp-category-arrow {
	position: relative !important;
	z-index: 6 !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 31px !important;
	height: 31px !important;

	min-width: 31px !important;
	max-width: 31px !important;

	flex: 0 0 31px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 1px solid rgba(255,255,255,.25) !important;

	border-radius: 50% !important;

	background:
		rgba(255,255,255,.10) !important;

	color: #fff !important;

	font-size: 16px !important;
	line-height: 1 !important;

	text-decoration: none !important;

	box-sizing: border-box !important;
}


section.rrp-category-section
.rrp-category-arrow:hover {
	background:
		rgba(255,255,255,.20) !important;

	transform: translateX(2px) !important;
}


section.rrp-category-section
.rrp-category-arrow span {
	display: block !important;

	color: #fff !important;

	visibility: visible !important;
	opacity: 1 !important;
}


/* =========================================================
   CATEGORY POSTS
   ========================================================= */

section.rrp-category-section
.rrp-category-posts {
	display: block !important;

	width: 100% !important;

	margin: 0 !important;
	padding: 3px 16px !important;

	background: #fff !important;

	box-sizing: border-box !important;
}


/* =========================================================
   POST ROW
   ========================================================= */

section.rrp-category-section
.rrp-post-row {
	display: flex !important;
	align-items: flex-start !important;

	width: 100% !important;

	margin: 0 !important;
	padding: 11px 0 !important;

	gap: 10px !important;

	border-bottom: 1px solid #eef0f3 !important;

	box-sizing: border-box !important;
}


section.rrp-category-section
.rrp-post-row:last-child {
	border-bottom: 0 !important;
}


/* =========================================================
   POST BULLET
   ========================================================= */

section.rrp-category-section
.rrp-post-bullet {
	display: block !important;

	width: 5px !important;
	height: 5px !important;

	min-width: 5px !important;
	max-width: 5px !important;

	flex: 0 0 5px !important;

	margin: 8px 0 0 !important;
	padding: 0 !important;

	border-radius: 50% !important;

	background: #dc2626 !important;

	transition:
		transform .2s ease,
		background .2s ease !important;
}


section.rrp-category-section
.rrp-post-row:hover
.rrp-post-bullet {
	transform: scale(1.6) !important;

	background: #991b1b !important;
}


/* =========================================================
   POST INFO
   ========================================================= */

section.rrp-category-section
.rrp-post-info {
	display: block !important;

	min-width: 0 !important;
	width: 100% !important;

	margin: 0 !important;
	padding: 0 !important;
}


/* =========================================================
   POST TITLE
   ========================================================= */

section.rrp-category-section
.rrp-post-title {
	display: block !important;

	width: 100% !important;

	margin: 0 !important;
	padding: 0 !important;

	color: #b91c1c !important;

	font-size: 13.5px !important;
	font-weight: 650 !important;
	line-height: 1.55 !important;

	text-decoration: none !important;

	visibility: visible !important;
	opacity: 1 !important;
}


section.rrp-category-section
.rrp-post-title:hover {
	color: #991b1b !important;

	text-decoration: underline !important;
}


/* =========================================================
   POST DATE
   ========================================================= */

section.rrp-category-section
.rrp-post-date {
	display: block !important;

	margin: 3px 0 0 !important;
	padding: 0 !important;

	color: #8a93a0 !important;

	font-size: 10.5px !important;
	font-weight: 400 !important;
	line-height: 1.3 !important;
}


/* =========================================================
   VIEW ALL
   ========================================================= */

section.rrp-category-section
.rrp-category-footer {
	display: block !important;

	width: 100% !important;

	margin: 0 !important;
	padding: 12px 16px 16px !important;

	background: #fff !important;

	box-sizing: border-box !important;
}


section.rrp-category-section
.rrp-view-all {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 100% !important;
	min-height: 35px !important;

	margin: 0 !important;
	padding: 7px 10px !important;

	gap: 7px !important;

	border: 1px solid #fecaca !important;

	border-radius: 6px !important;

	background: #fff5f5 !important;

	color: #b91c1c !important;

	font-size: 12px !important;
	font-weight: 750 !important;
	line-height: 1.3 !important;

	text-decoration: none !important;

	box-sizing: border-box !important;
}


section.rrp-category-section
.rrp-view-all:hover {
	border-color: #dc2626 !important;

	background: #dc2626 !important;

	color: #fff !important;
}


section.rrp-category-section
.rrp-view-all span {
	color: inherit !important;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

section.rrp-category-section
.rrp-empty-state {
	display: block !important;

	width: 100% !important;

	margin: 0 !important;
	padding: 25px !important;

	border: 1px dashed #d8dee7 !important;

	border-radius: 8px !important;

	background: #fafafa !important;

	color: #6b7280 !important;

	text-align: center !important;

	box-sizing: border-box !important;
}


section.rrp-category-section
.rrp-empty-state h3 {
	display: block !important;

	margin: 0 0 8px !important;

	color: #222 !important;

	font-size: 18px !important;
}


section.rrp-category-section
.rrp-empty-state p {
	margin: 0 !important;

	color: #6b7280 !important;

	font-size: 13px !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

	section.rrp-category-section
	.rrp-category-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr)) !important;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

	section.rrp-category-section {
		margin: 30px 0 !important;
	}

	section.rrp-category-section
	.rrp-section-heading
	h2 {
		font-size: 22px !important;
	}

	section.rrp-category-section
	.rrp-category-grid {
		grid-template-columns: 1fr !important;
		gap: 15px !important;
	}

	section.rrp-category-section
	.rrp-category-header {
		min-height: 68px !important;
		padding: 13px 14px !important;
	}

	section.rrp-category-section
	.rrp-category-header
	h3,
	section.rrp-category-section
	.rrp-category-header
	h3 a {
		font-size: 16px !important;
	}

}
  
/* =========================================================
   HOW IT HELPS
   ========================================================= */

.rrp-help-section {
	margin-bottom: 45px;
	padding: 30px;
	border-radius: 14px;
	background: #fff5f5;
	color: #171717;
	border: 1px solid #ffd6d6;
	box-shadow: 0 12px 30px rgba(220, 38, 38, .08);
}


/* =========================================================
   HEADING
   ========================================================= */

.rrp-help-heading {
	margin-bottom: 22px;
}

.rrp-help-heading .rrp-section-kicker {
	color: #dc2626;
}

.rrp-help-heading h2 {
	margin: 0;
	color: #991b1b;
}


/* =========================================================
   GRID
   ========================================================= */

.rrp-help-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}


/* =========================================================
   HELP ITEM
   ========================================================= */

.rrp-help-item {
	display: flex;
	gap: 13px;
	padding: 17px;
	border: 1px solid #fecaca;
	border-radius: 9px;
	background: #fff;
	transition:
		background .2s ease,
		transform .2s ease,
		border-color .2s ease,
		box-shadow .2s ease;
}

.rrp-help-item:hover {
	transform: translateY(-2px);
	background: #fffafa;
	border-color: #fca5a5;
	box-shadow: 0 7px 18px rgba(220, 38, 38, .08);
}


/* =========================================================
   NUMBER
   ========================================================= */

.rrp-help-item > span {
	color: #dc2626;
	font-size: 11px;
	font-weight: 850;
}


/* =========================================================
   TITLE
   ========================================================= */

.rrp-help-item h3 {
	margin: 0 0 5px;
	color: #991b1b;
	font-size: 14px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.rrp-help-item p {
	margin: 0;
	color: #6b7280;
	font-size: 11.5px;
	line-height: 1.6;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

	.rrp-help-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}


@media (max-width: 600px) {

	.rrp-help-section {
		padding: 22px 18px;
	}

	.rrp-help-grid {
		grid-template-columns: 1fr;
	}

}

/* =========================================================
   DISCLAIMER
   ========================================================= */

.rrp-disclaimer {
	display: flex;
	gap: 15px;
	margin-bottom: 45px;
	padding: 20px;
	border: 1px solid #f5d99b;
	border-left: 4px solid var(--rrp-orange);
	border-radius: 9px;
	background: #fffaf0;
}

.rrp-disclaimer-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border-radius: 50%;
	background: #f59e0b;
	color: #fff;
	font-size: 15px;
	font-weight: 850;
}

.rrp-disclaimer h2 {
	margin: 0 0 6px;
	color: #92400e;
	font-size: 15px;
}

.rrp-disclaimer p {
	margin: 0 0 7px;
	color: #78350f;
	font-size: 12px;
	line-height: 1.7;
}

.rrp-disclaimer p:last-child {
	margin-bottom: 0;
}

/* =========================================================
   FAQ
   ========================================================= */
/* =========================================================
   FAQ SECTION
========================================================= */

.rrp-faq-section {
	width: 100%;
	margin: 50px 0;
	padding: 0;
}


/* =========================================================
   FAQ SECTION HEADING
========================================================= */

.rrp-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.rrp-section-kicker {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1c1c;
}

.rrp-section-heading h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
	color: #1f2937;
}


/* =========================================================
   FAQ GRID
========================================================= */

.rrp-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.rrp-faq-item {
	margin: 0;
	padding: 0;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}


/* Hover */

.rrp-faq-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
}


/* =========================================================
   FAQ SUMMARY
========================================================= */

.rrp-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	padding: 18px 52px 18px 20px;

	cursor: pointer;
	list-style: none;

	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #1f2937;

	background: #ffffff;
}


/* Remove default marker */

.rrp-faq-item summary::-webkit-details-marker {
	display: none;
}

.rrp-faq-item summary::marker {
	display: none;
	content: "";
}


/* =========================================================
   PLUS / MINUS ICON
========================================================= */

.rrp-faq-item summary::after {
	content: "+";

	position: absolute;
	right: 20px;
	top: 50%;

	width: 28px;
	height: 28px;

	display: flex;
	align-items: center;
	justify-content: center;

	transform: translateY(-50%);

	border-radius: 50%;

	background: #f3f4f6;
	color: #8b1c1c;

	font-size: 21px;
	font-weight: 500;
	line-height: 1;

	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}


/* Open state */

.rrp-faq-item[open] summary {
	background: #fffaf9;
	color: #8b1c1c;
}

.rrp-faq-item[open] summary::after {
	content: "−";
	background: #8b1c1c;
	color: #ffffff;
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.rrp-faq-answer {
	padding: 0 20px 20px;

	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	color: #4b5563;

	background: #fffaf9;
}


/* Paragraph inside answer */

.rrp-faq-answer p {
	margin: 0 0 12px;
}

.rrp-faq-answer p:last-child {
	margin-bottom: 0;
}


/* Links */

.rrp-faq-answer a {
	color: #8b1c1c;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rrp-faq-answer a:hover {
	color: #651414;
}


/* Lists */

.rrp-faq-answer ul,
.rrp-faq-answer ol {
	margin: 10px 0 10px 20px;
	padding: 0;
}

.rrp-faq-answer li {
	margin-bottom: 6px;
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.rrp-faq-item summary:focus-visible {
	outline: 3px solid rgba(139, 28, 28, 0.25);
	outline-offset: -3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.rrp-faq-section {
		margin: 35px 0;
	}

	.rrp-section-heading {
		margin-bottom: 18px;
	}

	.rrp-section-heading h2 {
		font-size: 24px;
	}

	.rrp-section-kicker {
		font-size: 12px;
	}

	.rrp-faq-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.rrp-faq-item summary {
		padding: 16px 48px 16px 16px;
		font-size: 15px;
	}

	.rrp-faq-item summary::after {
		right: 15px;
		width: 26px;
		height: 26px;
		font-size: 19px;
	}

	.rrp-faq-answer {
		padding: 0 16px 17px;
		font-size: 14px;
		line-height: 1.7;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

	.rrp-faq-section {
		margin: 30px 0;
	}

	.rrp-section-heading h2 {
		font-size: 22px;
	}

	.rrp-faq-grid {
		gap: 8px;
	}

	.rrp-faq-item {
		border-radius: 8px;
	}

	.rrp-faq-item summary {
		font-size: 14px;
		padding: 15px 45px 15px 14px;
	}

	.rrp-faq-item summary::after {
		right: 13px;
		width: 25px;
		height: 25px;
	}

	.rrp-faq-answer {
		padding: 0 14px 15px;
		font-size: 14px;
	}

}



/* =========================================================
   FINAL CTA
   ========================================================= */

.rrp-final-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	margin-top: 10px;
	padding: 30px;
	border-radius: 14px;

	background:
		linear-gradient(
			135deg,
			#8f1010,
			#c51616 55%,
			#e1261c
		);

	box-shadow: 0 15px 40px rgba(197, 22, 22, .18);
}

.rrp-final-cta .rrp-section-kicker {
	color: #ffd0d0;
}

.rrp-final-cta h2 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 25px;
	line-height: 1.3;
}

.rrp-final-cta p {
	margin: 0;
	color: rgba(255,255,255,.75);
	font-size: 13px;
	line-height: 1.6;
}


/* =========================================================
   FINAL CTA BUTTON
   ========================================================= */

.rrp-final-cta .rrp-btn-primary {
	border: 1px solid rgba(255,255,255,.25);
	background: #fff;
	color: #b91c1c;
}

.rrp-final-cta .rrp-btn-primary:hover {
	background: #fff5f5;
	color: #991b1b;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.rrp-site-main a:focus-visible,
.rrp-site-main summary:focus-visible,
.rrp-site-main button:focus-visible {
	outline: 3px solid rgba(220,38,38,.45);
	outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

	.rrp-quick-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rrp-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rrp-coverage-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 850px) {

	.rrp-hero {
		grid-template-columns: 1fr;
		padding: 38px 30px;
	}

	.rrp-hero-stats {
		flex-direction: row;
		align-items: stretch;
	}

	.rrp-stat {
		width: auto;
		flex: 1;
	}

	.rrp-about-section {
		grid-template-columns: 1fr;
	}

	.rrp-help-grid {
		grid-template-columns: 1fr;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

	.rrp-container {
		width: min(100% - 18px, 1200px);
		padding-top: 12px;
		padding-bottom: 35px;
	}

	.rrp-hero {
		padding: 28px 20px;
		border-radius: 12px;
	}

	.rrp-hero h1 {
		font-size: 28px;
		letter-spacing: -.4px;
	}

	.rrp-hero p {
		font-size: 14px;
		line-height: 1.65;
	}

	.rrp-hero-actions {
		flex-direction: column;
	}

	.rrp-btn {
		width: 100%;
	}

	.rrp-hero-stats {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.rrp-stat {
		width: auto;
	}

	.rrp-stat:last-child {
		grid-column: 1 / -1;
	}

	.rrp-news-section {
		grid-template-columns: 1fr;
	}

	.rrp-news-label {
		justify-content: center;
		min-height: 40px;
	}

	.rrp-news-track {
		padding: 11px 14px;
	}

	.rrp-section-heading h2,
	.rrp-help-heading h2 {
		font-size: 22px;
	}

	.rrp-quick-grid {
		grid-template-columns: 1fr;
	}

	.rrp-category-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.rrp-about-section {
		padding: 22px 17px;
	}

	.rrp-about-content h2 {
		font-size: 22px;
	}

	.rrp-about-highlights {
		grid-template-columns: 1fr 1fr;
	}

	.rrp-coverage-grid {
		grid-template-columns: 1fr;
	}

	.rrp-help-section {
		padding: 23px 17px;
	}

	.rrp-disclaimer {
		padding: 17px;
	}

	.rrp-faq-grid {
		grid-template-columns: 1fr;
	}

	.rrp-final-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 19px;
	}

	.rrp-final-cta .rrp-btn {
		width: auto;
	}

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

	.rrp-hero h1 {
		font-size: 25px;
	}

	.rrp-hero-stats {
		grid-template-columns: 1fr;
	}

	.rrp-stat:last-child {
		grid-column: auto;
	}

	.rrp-about-highlights {
		grid-template-columns: 1fr;
	}

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.rrp-site-main *,
	.rrp-site-main *::before,
	.rrp-site-main *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}

}

 





/*
Theme Name: WP Bhakti Blogger
Theme URI:
Author:
Description: Responsive Hindi News Website Theme
Version: 1.0
Text Domain: wp-bhakti-blogger
*/


/* =========================================================
   ROOT
   ========================================================= */

:root {
    --news-primary: #d71920;
    --news-primary-dark: #a90f15;
    --news-primary-light: #fff1f1;

    --news-accent: #f59e0b;
    --news-green: #16834b;

    --news-text: #fdfcfc;
    --news-text-soft: #555;
    --news-muted: #777;

    --news-border: #e7e7e7;
    --news-border-dark: #d2d2d2;

    --news-bg: #f6f7f9;
    --news-white: #fff;

    --news-radius: 12px;
    --news-radius-sm: 8px;

    --news-shadow: 0 4px 18px rgba(0,0,0,.06);
    --news-shadow-hover: 0 12px 30px rgba(0,0,0,.11);

    --news-container: 1280px;

    --news-transition: 180ms ease;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.wbb-home-page,
.wbb-home-page *,
.wbb-home-page *::before,
.wbb-home-page *::after {
    box-sizing: border-box;
}

.wbb-home-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    background: var(--news-bg);
    color: var(--news-text);

    overflow-x: hidden;
}

.wbb-home-page h1,
.wbb-home-page h2,
.wbb-home-page h3,
.wbb-home-page h4,
.wbb-home-page p {
    margin-top: 0;
}

.wbb-home-page img {
    display: block;
    max-width: 100%;
}

.wbb-home-page a {
    color: inherit;
    text-decoration: none;

    transition:
        color var(--news-transition),
        background-color var(--news-transition),
        border-color var(--news-transition),
        transform var(--news-transition),
        box-shadow var(--news-transition);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.wbb-home-page .container {
    width: calc(100% - 40px);
    max-width: var(--news-container);

    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   BREAKING NEWS
========================================================= */

.breaking-news {
	width: 100%;
	background: var(--news-primary);
	color: #fff;

	border-bottom: 1px solid rgba(255, 255, 255, .15);

	overflow: hidden;
}


/* =========================================================
   INNER
========================================================= */

.breaking-news-inner {
	width: 100%;
	min-height: 46px;

	display: flex;
	align-items: center;

	gap: 0;

	overflow: hidden;
}


/* =========================================================
   BREAKING LABEL
========================================================= */

.breaking-label {
	flex: 0 0 auto;

	display: inline-flex;
	align-items: center;

	gap: 9px;

	height: 46px;

	padding: 0 18px;

	border-right: 1px solid rgba(255, 255, 255, .25);

	white-space: nowrap;

	position: relative;
	z-index: 5;

	background: var(--news-primary);
}


/* =========================================================
   LABEL TEXT
========================================================= */

.breaking-label strong {
	display: inline-block;

	margin: 0;
	padding: 0;

	color: #fff;

	font-size: 12px;
	font-weight: 800;

	letter-spacing: .5px;

	line-height: 1;
}


/* =========================================================
   LIVE DOT
========================================================= */

.breaking-dot {
	width: 9px;
	height: 9px;

	flex: 0 0 9px;

	border-radius: 50%;

	background: #fff;

	box-shadow:
		0 0 0 4px rgba(255, 255, 255, .15);

	animation:
		breakingPulse 1.5s ease-in-out infinite;
}


/* =========================================================
   LIVE DOT ANIMATION
========================================================= */

@keyframes breakingPulse {

	0% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: .45;
		transform: scale(.82);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}

}


/* =========================================================
   TRACK
========================================================= */

.breaking-track {
	position: relative;

	flex: 1 1 auto;

	width: 0;
	min-width: 0;

	height: 46px;

	margin: 0;
	padding: 0;

	overflow: hidden;
}


/* =========================================================
   MOVING ITEMS
========================================================= */

.breaking-items {
	position: absolute;

	top: 0;
	left: 0;

	display: inline-flex;
	align-items: center;

	width: max-content;

	height: 46px;

	margin: 0;
	padding: 0;

	gap: 28px;

	white-space: nowrap;

	transform: translate3d(0, 0, 0);

	animation:
		breakingScroll 60s linear infinite;

	will-change: transform;

	backface-visibility: hidden;
}


/* =========================================================
   SINGLE POST
========================================================= */

.breaking-item {
	display: inline-flex;
	align-items: center;

	flex: 0 0 auto;

	gap: 7px;

	height: 46px;

	margin: 0;
	padding: 0;

	color: rgba(255, 255, 255, .96);

	font-size: 13px;
	font-weight: 600;

	line-height: 1;

	text-decoration: none;

	white-space: nowrap;

	transition:
		color .15s ease,
		opacity .15s ease;
}


/* =========================================================
   ARROW
========================================================= */

.breaking-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	color: #fff;

	font-size: 18px;
	font-weight: 700;

	line-height: 1;

	opacity: .7;
}


/* =========================================================
   HOVER
========================================================= */

.breaking-item:hover {
	color: #fff;

	opacity: .75;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

@keyframes breakingScroll {

	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-100%, 0, 0);
	}

}


/* =========================================================
   PAUSE WHEN MOUSE IS OVER NEWS
========================================================= */

.breaking-track:hover .breaking-items {
	animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

	.breaking-items {
		gap: 24px;

		animation-duration: 65s;
	}

	.breaking-item {
		font-size: 12.5px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.breaking-news-inner {
		min-height: 40px;
	}

	.breaking-label {
		height: 40px;

		gap: 7px;

		padding: 0 12px;
	}

	.breaking-label strong {
		font-size: 10px;

		letter-spacing: .35px;
	}

	.breaking-dot {
		width: 7px;
		height: 7px;

		flex-basis: 7px;

		box-shadow:
			0 0 0 3px rgba(255, 255, 255, .15);
	}

	.breaking-track {
		height: 40px;
	}

	.breaking-items {
		height: 40px;

		gap: 20px;

		/*
		 * Mobile speed intentionally slow.
		 */
		animation-duration: 70s;
	}

	.breaking-item {
		height: 40px;

		font-size: 12px;
	}

	.breaking-arrow {
		font-size: 16px;
	}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

	.breaking-label {
		height: 40px;

		gap: 6px;

		padding: 0 9px;
	}

	.breaking-label strong {
		font-size: 9px;

		letter-spacing: .25px;
	}

	.breaking-dot {
		width: 6px;
		height: 6px;

		flex-basis: 6px;

		box-shadow:
			0 0 0 3px rgba(255, 255, 255, .15);
	}

	.breaking-track {
		height: 40px;
	}

	.breaking-items {
		height: 40px;

		gap: 16px;

		/*
		 * Extra slow on small screens.
		 */
		animation-duration: 75s;
	}

	.breaking-item {
		height: 40px;

		font-size: 11px;
	}

	.breaking-arrow {
		font-size: 15px;
	}

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

	.breaking-label {
		padding: 0 8px;
	}

	.breaking-label strong {
		font-size: 8.5px;
	}

	.breaking-items {
		gap: 14px;

		animation-duration: 80s;
	}

	.breaking-item {
		font-size: 10.5px;
	}

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.breaking-items {
		animation: none;

		transform: translate3d(0, 0, 0);
	}

	.breaking-dot {
		animation: none;
	}

}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.home-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    align-items: start;

    gap: 28px;

    width: 100%;

    padding-top: 28px;
    padding-bottom: 50px;
}

.maincol {
    min-width: 0;
    width: 100%;
}

.sidebar {
    min-width: 0;
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

 
 
/* =========================================================
   HERO GRID
   ========================================================= */

.hero-news-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(280px, .9fr);

    gap: 20px;

    width: 100%;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-news-card {
    min-width: 0;
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--news-border);
    border-radius: var(--news-radius);

    box-shadow: var(--news-shadow);

    transition:
        transform var(--news-transition),
        box-shadow var(--news-transition);
}

.hero-news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--news-shadow-hover);
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-image-wrap {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #eee;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e9e9e9,
            #d9d9d9
        );
}

.hero-img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.hero-news-card:hover .hero-img {
    transform: scale(1.035);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;

    font-size: 28px;
    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #ededed,
            #d8d8d8
        );
}

.hero-badge {
    position: absolute;

    left: 14px;
    bottom: 14px;

    display: inline-flex;
    align-items: center;

    min-height: 27px;

    padding: 5px 9px;

    border-radius: 5px;

    background: var(--news-primary);

    color: #fff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .7px;

    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    padding: 18px 19px 20px;
}

.post-category {
    display: inline-flex;
    align-items: center;

    margin-bottom: 8px;

    color: var(--news-primary);

    font-size: 11px;
    line-height: 1.2;

    font-weight: 800;
}

.post-category:hover {
    color: var(--news-primary-dark);
    text-decoration: underline;
}

.hero-title {
    margin: 0 0 10px;

    color: #171717;

    font-size: 25px;
    line-height: 1.25;

    font-weight: 850;

    letter-spacing: -.35px;
}

.hero-title a:hover {
    color: var(--news-primary);
}

.hero-excerpt {
    margin: 0 0 13px;

    color: var(--news-text-soft);

    font-size: 14px;
    line-height: 1.7;

    display: -webkit-box;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   META
   ========================================================= */

.post-meta,
.compact-meta,
.trend-meta {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    color: var(--news-muted);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   READ MORE
   ========================================================= */

.hero-read-more {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 15px;

    padding: 9px 13px;

    border-radius: 7px;

    background: var(--news-primary);

    color: #fff;

    font-size: 15px;
    font-weight: 800;
}

.hero-read-more:hover {
    background: var(--news-primary-dark);
    color: #fff;
}

.hero-read-more span:last-child {
    font-size: 17px;

    transition: transform var(--news-transition);
}

.hero-read-more:hover span:last-child {
    transform: translateX(3px);
}


/* =========================================================
   SIDE NEWS
   ========================================================= */

.hero-side-news {
    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--news-border);
    border-radius: var(--news-radius);

    box-shadow: var(--news-shadow);
}

.side-news-card {
    min-width: 0;

    display: grid;

    grid-template-columns:
        108px
        minmax(0, 1fr);

    gap: 12px;

    padding: 13px;

    border-bottom: 1px solid var(--news-border);
}

.side-news-card:last-child {
    border-bottom: 0;
}

.side-news-card:hover {
    background: #fafafa;
}

.side-news-thumb {
    display: block;

    width: 108px;
    height: 78px;

    overflow: hidden;

    border-radius: 7px;

    background: #eee;
}

.side-news-img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.side-news-card:hover .side-news-img {
    transform: scale(1.05);
}

.side-news-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.mini-category {
    display: block;

    margin-bottom: 4px;

    color: var(--news-primary);

    font-size: 9px;
    line-height: 1.2;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.side-news-content h3 {
    margin: 0;

    color: #171717;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 800;

    display: -webkit-box;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.side-news-content h3 a:hover {
    color: var(--news-primary);
}

.side-news-content .compact-meta {
    margin-top: 7px;
    font-size: 10px;
}


/* =========================================================
   LATEST NEWS
   ========================================================= */

.more-latest-news {
    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--news-border);
}

.latest-news-list {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--news-border);
    border-radius: var(--news-radius);

    box-shadow: var(--news-shadow);
}

.latest-news-item {
    min-width: 0;

    display: grid;

    grid-template-columns:
        210px
        minmax(0, 1fr);

    gap: 18px;

    padding: 16px;

    border-bottom: 1px solid var(--news-border);
}

.latest-news-item:last-child {
    border-bottom: 0;
}

.latest-news-item:hover {
    background: #fcfcfc;
}

.latest-news-thumb {
    display: block;

    width: 210px;
    height: 135px;

    overflow: hidden;

    border-radius: 8px;

    background: #eee;
}

.latest-news-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.latest-news-item:hover .latest-news-thumb img {
    transform: scale(1.04);
}

.latest-news-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.latest-news-content h3 {
    margin: 0 0 7px;

    color: #171717;

    font-size: 19px;
    line-height: 1.4;

    font-weight: 850;
}

.latest-news-content h3 a:hover {
    color: var(--news-primary);
}

.latest-news-content p {
    margin: 0 0 10px;

    color: var(--news-text-soft);

    font-size: 13px;
    line-height: 1.65;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.latest-pagination {
    margin-top: 25px;
    padding-top: 5px;
}

.latest-pagination ul,
.latest-pagination .page-numbers {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.latest-pagination li {
    margin: 0;
    padding: 0;
}

.latest-pagination a,
.latest-pagination span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;

    padding: 0 10px;

    border: 1px solid var(--news-border);

    border-radius: 7px;

    background: #fff;

    color: #444;

    font-size: 12px;
    font-weight: 700;
}

.latest-pagination a:hover {
    border-color: var(--news-primary);

    background: var(--news-primary);

    color: #fff;
}

.latest-pagination .current {
    border-color: var(--news-primary);

    background: var(--news-primary);

    color: #fff;
}

 
 


/* =========================================================
   SIDEBAR
   ========================================================= */

.sidebar .widget {
    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 18px;

    background: #fff;

    border: 1px solid var(--news-border);

    border-radius: var(--news-radius);

    box-shadow: var(--news-shadow);
}

.sidebar .widget > h2,
.sidebar .widget-heading h2 {
    margin: 0;

    color: #171717;

    font-size: 18px;
    line-height: 1.25;

    font-weight: 850;
}

.sidebar .widget > h2 {
    padding-bottom: 12px;

    margin-bottom: 14px;

    border-bottom: 2px solid #222;
}

.sidebar .widget-heading {
    margin-bottom: 14px;

    padding-bottom: 12px;

    border-bottom: 2px solid #222;
}


/* =========================================================
   SEARCH
   ========================================================= */

.news-search-widget .search-form {
    display: flex;

    align-items: stretch;

    width: 100%;

    gap: 8px;
}

.news-search-widget .search-field {
    flex: 1;

    min-width: 0;

    width: 100%;

    height: 42px;

    padding: 0 12px;

    border: 1px solid var(--news-border-dark);

    border-radius: 7px;

    outline: none;

    background: #fff;

    color: #222;

    font-size: 13px;
}

.news-search-widget .search-field:focus {
    border-color: var(--news-primary);

    box-shadow: 0 0 0 2px rgba(215,25,32,.08);
}

.news-search-widget .search-submit {
    flex: 0 0 auto;

    height: 42px;

    padding: 0 15px;

    border: 0;

    border-radius: 7px;

    background: var(--news-primary);

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;
}

.news-search-widget .search-submit:hover {
    background: var(--news-primary-dark);
}


/* =========================================================
   POPULAR
   ========================================================= */

.popular-list {
    display: flex;
    flex-direction: column;

    width: 100%;
}

.popular-item {
    min-width: 0;

    display: grid;

    grid-template-columns:
        25px
        72px
        minmax(0, 1fr);

    align-items: center;

    gap: 10px;

    padding: 13px 0;

    border-bottom: 1px solid var(--news-border);
}

.popular-item:first-child {
    padding-top: 0;
}

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

.popular-number {
    color: #b1b1b1;

    font-size: 13px;

    font-weight: 800;
}

.popular-item:first-child .popular-number {
    color: var(--news-primary);
}

.popular-item img,
.popular-thumb-placeholder {
    display: block;

    width: 72px;
    height: 52px;

    border-radius: 7px;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            #ededed,
            #d8d8d8
        );
}

.popular-content {
    min-width: 0;
}

.popular-content strong {
    display: -webkit-box;

    overflow: hidden;

    color: #222;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 700;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.popular-item:hover .popular-content strong {
    color: var(--news-primary);
}

.popular-content small {
    display: block;

    margin-top: 5px;

    color: #999;

    font-size: 10px;
}


/* =========================================================
   SIDEBAR CATEGORIES
   ========================================================= */

.side-cats {
    margin: 0;
    padding: 0;

    list-style: none;
}

.side-cats li {
    margin: 0;
    padding: 0;

    border-bottom: 1px solid var(--news-border);
}

.side-cats li:last-child {
    border-bottom: 0;
}

.side-cats li a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 11px 0;

    color: #333;

    font-size: 14px;

    font-weight: 600;
}

.side-cats li a:hover {
    padding-left: 5px;

    color: var(--news-primary);
}

.side-cat-count {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 25px;
    height: 23px;

    padding: 0 6px;

    border-radius: 20px;

    background: #f5f5f5;

    color: #888;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-widget {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #191919 0%,
            #292929 100%
        ) !important;

    border: 0 !important;

    color: #fff;
}

.newsletter-widget::before {
    content: "";

    position: absolute;

    top: -55px;
    right: -55px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: rgba(229,57,53,.18);
}

.newsletter-icon {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    margin-bottom: 15px;

    border-radius: 50%;

    background: var(--news-primary);

    color: #fff;

    font-size: 19px;
}

.newsletter-widget h2 {
    position: relative;

    margin-bottom: 8px !important;

    color: #fff !important;
}

.newsletter-widget p {
    position: relative;

    margin: 0 0 17px;

    color: #bdbdbd;

    font-size: 13px;

    line-height: 1.6;
}

.newsletter-button {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 17px;

    border-radius: 7px;

    background: var(--news-primary);

    color: #fff;

    font-size: 13px;

    font-weight: 700;
}

.newsletter-button:hover {
    background: var(--news-primary-dark);

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET 1100
   ========================================================= */

@media (max-width: 1100px) {

    .home-layout {
        grid-template-columns:
            minmax(0, 1fr)
            300px;

        gap: 22px;
    }

    .hero-news-grid {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(260px, .75fr);

        gap: 16px;
    }

    .category-news-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 13px;
    }

    .latest-news-item {
        grid-template-columns:
            180px
            minmax(0, 1fr);

        gap: 15px;
    }

    .latest-news-thumb {
        width: 180px;
        height: 120px;
    }
}


/* =========================================================
   TABLET 900
   ========================================================= */

@media (max-width: 900px) {

    .home-layout {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 30px;
    }

    .maincol {
        width: 100%;
    }

    .sidebar {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .sidebar .widget {
        width: 100%;
        margin: 0;
    }

    .newsletter-widget {
        grid-column: 1 / -1;
    }

    .hero-news-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-side-news {
        display: grid;

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

    .side-news-card {
        border-bottom: 1px solid var(--news-border);
    }

    .side-news-card:nth-child(odd) {
        border-right: 1px solid var(--news-border);
    }

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


/* =========================================================
   MOBILE 640
   ========================================================= */

@media (max-width: 640px) {

    .wbb-home-page .container {
        width: calc(100% - 24px);
    }

    .breaking-news-inner {
        min-height: 42px;
        gap: 10px;
    }

    .breaking-label {
        padding-right: 10px;
    }

    .breaking-label strong {
        font-size: 10px;
    }

    .breaking-dot {
        width: 7px;
        height: 7px;
        flex-basis: 7px;
    }

    .breaking-items {
        gap: 18px;
    }

    .breaking-item {
        font-size: 11px;
    }

    .news-category-nav .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .category-nav-header {
        margin-bottom: 8px;
    }

    .category-nav-header h2 {
        font-size: 12px;
    }

    .category-pill {
        min-height: 34px;

        padding: 6px 10px;

        font-size: 11px;
    }

    .category-pill-count {
        min-width: 20px;
        height: 19px;

        font-size: 9px;
    }

    .cat-arrow {
        flex-basis: 30px;

        width: 30px;
        height: 30px;

        font-size: 19px;
    }

    .home-layout {
        padding-top: 18px;
        padding-bottom: 30px;

        gap: 22px;
    }

    .section-heading {
        align-items: center;

        gap: 10px;

        margin-bottom: 13px;
    }

    .section-heading h1 {
        font-size: 21px;
    }

    .section-heading h2 {
        font-size: 19px;
    }

    .section-kicker {
        font-size: 9px;
    }

    .section-view-all {
        font-size: 10px;
    }

    .hero-news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-title {
        font-size: 21px;
        line-height: 1.3;
    }

    .hero-excerpt {
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-side-news {
        display: flex;
        flex-direction: column;
    }

    .side-news-card {
        display: grid;

        grid-template-columns:
            90px
            minmax(0, 1fr);

        gap: 10px;

        padding: 11px;
    }

    .side-news-card:nth-child(odd) {
        border-right: 0;
    }

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

    .side-news-content h3 {
        font-size: 12px;
        line-height: 1.4;
    }

    .mini-category {
        font-size: 8px;
    }

    .latest-news-item {
        grid-template-columns:
            100px
            minmax(0, 1fr);

        gap: 11px;

        padding: 11px;
    }

    .latest-news-thumb {
        width: 100px;
        height: 75px;
    }

    .latest-news-content h3 {
        margin-bottom: 5px;

        font-size: 14px;
        line-height: 1.4;
    }

    .latest-news-content p {
        display: none;
    }

    .latest-news-content .post-meta {
        font-size: 9px;
    }

    .trending-news {
        margin-top: 22px;

        padding: 15px;

        border-radius: 10px;
    }

    .trend-item {
        grid-template-columns:
            30px
            75px
            minmax(0, 1fr);

        gap: 9px;

        padding: 11px 0;
    }

    .trend-number {
        width: 29px;
        height: 29px;

        font-size: 10px;
    }

    .trend-thumb {
        width: 75px;
        height: 56px;
    }

    .trend-content h3 {
        font-size: 12px;
        line-height: 1.4;

        margin-bottom: 5px;
    }

    .trend-meta {
        font-size: 9px;
    }

    .trend-arrow {
        display: none;
    }

    .category-news-sections {
        margin-top: 22px;
        gap: 18px;
    }

    .news-category-section {
        padding: 15px;
        border-radius: 10px;
    }

    .news-category-section .section-heading {
        margin-bottom: 14px;
        padding-bottom: 11px;
    }

    .news-category-section .section-heading h2 {
        font-size: 18px;
    }

    .category-news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .category-news-content {
        padding: 10px;
    }

    .category-news-meta {
        font-size: 8px;
        margin-bottom: 5px;
    }

    .category-news-content h3 {
        font-size: 12px;
        line-height: 1.4;
    }

    .category-news-content small {
        margin-top: 6px;
        font-size: 8px;
    }

    .sidebar {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 15px;
    }

    .sidebar .widget {
        padding: 15px;
        border-radius: 10px;
    }

    .sidebar .widget > h2,
    .sidebar .widget-heading h2 {
        font-size: 16px;
    }

    .newsletter-widget {
        width: 100%;
        grid-column: auto;
    }

    .news-search-widget .search-form {
        display: flex;
        flex-direction: row;

        gap: 7px;
    }
}




