:root {
	/* Times of India-inspired palette: deep masthead red, a brighter
	   accent red for hover/badge states, and warmer near-white/grey
	   surfaces instead of stark white everywhere. */
	--primary-red: #b50000;
	--primary-red-hover: #8a0000;
	--accent-red: #e30000;
	--topbar-bg: #b50000;
	--subbar-bg: #f2f2f2;
	--footer-bg: #1a1a1a;
	--body-bg: #fafafa;
	--card-bg: #ffffff;
	--border-light: #e5e5e5;
	--text-dark: #1a1a1a;
	--text-muted: #6e6e6e;
	--whatsapp-green: #25bd41;
	--facebook-blue: #1877f2;
	--telegram-blue: #34ace3;
	--instagram-pink: #f00074;
	--youtube-red: #e60022;
	--x-black: #000000;
	--rss-orange: #f28322;
	--info-blue: #0b77c5;
	--soft-surface: #f2f2f2;
	--font-main: "Inter", "Mukta", "Noto Sans Devanagari", Arial, sans-serif;
	--container: 1130px;
	--content-width: 760px;
	--sidebar-width: 320px;
	--radius: 6px;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--body-bg);
	color: var(--text-dark);
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.58;
}

body,
button,
input,
select,
textarea {
	font-family: var(--font-main);
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover,
a:focus {
	color: var(--primary-red);
}

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

.jn-container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 20px;
	width: 100%;
}

.site-content > .ast-container,
.site-content .ast-container {
	display: block;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

.site-content,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post {
	background: #fff;
}

#primary.jn-site-main,
.site-content #primary.jn-site-main {
	clear: both;
	float: none;
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

.site-content #secondary,
.ast-separate-container .site-content #secondary {
	display: none;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.jn-empty-state,
.jn-widget-empty {
	background: #fafafa;
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	color: var(--text-muted);
	font-size: 14px;
	padding: 18px;
}

.jn-site-main {
	background: #fff;
}

.jn-site-header {
	background: #fff;
	position: relative;
	z-index: 90;
}

.jn-topbar {
	background: var(--topbar-bg);
	color: #fff;
}

.jn-header-row {
	align-items: center;
	display: flex;
	gap: 22px;
	justify-content: space-between;
	min-height: 48px;
}

.jn-logo-wrap img,
.jn-logo-wrap .custom-logo {
	height: auto;
	max-height: 38px;
	width: auto;
}

.jn-wordmark {
	align-items: center;
	color: #fff;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 9px;
	line-height: 1;
	min-width: max-content;
}

.jn-wordmark:hover,
.jn-wordmark:focus {
	color: #fff;
}

.jn-wordmark-seal {
	align-items: center;
	border: 2px solid currentColor;
	border-radius: 999px;
	display: inline-flex;
	font-size: 10px;
	font-weight: 800;
	height: 30px;
	justify-content: center;
	letter-spacing: 0;
	width: 30px;
}

.jn-wordmark-text {
	display: flex;
	flex-direction: column;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0;
}

.jn-wordmark-text small {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.8px;
	margin-top: 3px;
	text-transform: uppercase;
}

.jn-primary-nav {
	margin-left: auto;
	min-width: 0;
}

.jn-primary-menu,
.jn-sub-menu,
.jn-drawer-menu,
.jn-drawer-topic-menu,
.jn-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.jn-primary-menu {
	align-items: center;
	display: flex;
	gap: 25px;
	justify-content: flex-end;
}

.jn-primary-menu > li {
	position: relative;
}

.jn-primary-menu a {
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 700;
	padding: 15px 0;
	white-space: nowrap;
}

.jn-primary-menu a:hover,
.jn-primary-menu .current-menu-item > a {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 7px;
}

.jn-primary-menu .sub-menu {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
	display: none;
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 190px;
	padding: 8px 0;
	position: absolute;
	top: 100%;
	z-index: 100;
}

.jn-primary-menu li:hover > .sub-menu,
.jn-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.jn-primary-menu .sub-menu a {
	color: var(--text-dark);
	font-size: 13px;
	padding: 8px 14px;
}

.jn-primary-menu .sub-menu a:hover {
	background: #f8f8f8;
	color: var(--primary-red);
	text-decoration: none;
}

.jn-header-actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.jn-icon-button {
	align-items: center;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	padding: 0;
	width: 36px;
}

.jn-icon-button:focus-visible,
.jn-search-form button:focus-visible,
.jn-search-form input:focus-visible,
.jn-drawer-close:focus-visible,
.jn-share-controls button:focus-visible,
.jn-slider-next:focus-visible {
	outline: 3px solid rgba(255, 210, 0, 0.9);
	outline-offset: 2px;
}

.jn-search-glyph,
.jn-menu-glyph {
	display: inline-block;
	position: relative;
}

.jn-search-glyph {
	border: 2px solid currentColor;
	border-radius: 999px;
	height: 16px;
	width: 16px;
}

.jn-search-glyph::after {
	background: currentColor;
	content: "";
	height: 8px;
	position: absolute;
	right: -6px;
	top: 11px;
	transform: rotate(45deg);
	width: 2px;
}

.jn-menu-glyph,
.jn-menu-glyph::before,
.jn-menu-glyph::after {
	background: currentColor;
	border-radius: 999px;
	height: 2px;
	width: 22px;
}

.jn-menu-glyph::before,
.jn-menu-glyph::after {
	content: "";
	left: 0;
	position: absolute;
}

.jn-menu-glyph::before {
	top: -7px;
}

.jn-menu-glyph::after {
	top: 7px;
}

.jn-mobile-toggle {
	display: none;
}

.jn-subbar {
	background: var(--subbar-bg);
	border-bottom: 1px solid #d7d7d7;
	position: relative;
}

.jn-subbar::after {
	background: linear-gradient(to right, rgba(242, 242, 242, 0), var(--subbar-bg) 75%);
	bottom: 0;
	content: "";
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.15s ease;
	width: 36px;
}

.jn-subbar.jn-has-overflow::after {
	opacity: 1;
}

.jn-sub-menu {
	align-items: center;
	display: flex;
	gap: 21px;
	overflow-x: auto;
	scrollbar-width: none;
	white-space: nowrap;
}

.jn-sub-menu::-webkit-scrollbar {
	display: none;
}

.jn-sub-menu a {
	color: #191919;
	display: block;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 0;
}

.jn-sub-menu a:hover {
	color: var(--primary-red);
}

.jn-search-panel {
	background: #fff;
	border-bottom: 1px solid var(--border-light);
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
	padding: 14px 0;
}

.jn-search-form {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	max-width: 680px;
}

.jn-search-form input[type="search"] {
	border: 1px solid #cfcfcf;
	border-radius: var(--radius) 0 0 var(--radius);
	flex: 1 1 auto;
	font-size: 15px;
	min-height: 44px;
	padding: 9px 13px;
}

.jn-search-form button {
	background: var(--primary-red);
	border: 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	padding: 0 22px;
}

.jn-drawer-overlay {
	background: rgba(0, 0, 0, 0.42);
	inset: 0;
	position: fixed;
	z-index: 800;
}

.jn-mobile-drawer {
	background: #fff;
	box-shadow: -12px 0 24px rgba(0, 0, 0, 0.18);
	height: 100vh;
	max-width: 340px;
	overflow-y: auto;
	padding: 22px;
	position: fixed;
	right: 0;
	top: 0;
	width: 88vw;
	z-index: 810;
}

.jn-mobile-drawer .jn-wordmark {
	color: var(--primary-red);
	margin-bottom: 18px;
}

.jn-drawer-close {
	background: #111;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	float: right;
	font-size: 16px;
	height: 30px;
	line-height: 1;
	width: 30px;
}

.jn-drawer-menu,
.jn-drawer-topic-menu {
	clear: both;
	margin-top: 16px;
}

.jn-drawer-menu li,
.jn-drawer-topic-menu li {
	border-bottom: 1px solid var(--border-light);
}

.jn-drawer-menu a,
.jn-drawer-topic-menu a {
	color: var(--text-dark);
	display: block;
	font-size: 15px;
	font-weight: 700;
	padding: 11px 0;
}

.jn-drawer-topic-menu a {
	font-size: 14px;
	font-weight: 600;
}

.jn-layout {
	align-items: start;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
	padding-bottom: 58px;
	padding-top: 26px;
}

.jn-content-column {
	min-width: 0;
}

.jn-single-layout .jn-single-article {
	max-width: none;
	width: 100%;
}

.jn-sidebar {
	min-width: 0;
	position: sticky;
	top: 18px;
}

.admin-bar .jn-sidebar {
	top: 50px;
}

.jn-ad-slot {
	align-items: flex-start;
	background: #f7f7f7;
	box-sizing: border-box;
	color: #444;
	display: flex;
	font-size: 12px;
	justify-content: center;
	margin: 0 0 26px;
	min-height: 238px;
	padding-top: 11px;
	text-align: center;
	width: 100%;
}

.jn-single-article > .jn-ad-slot {
	min-height: 54px;
	margin-bottom: 16px;
}

.jn-single-article .jn-featured-figure + .jn-ad-slot {
	margin-top: 16px;
	min-height: 50px;
}

.jn-trending-widget {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	overflow: hidden;
}

.jn-trending-widget h2 {
	align-items: center;
	background: var(--primary-red);
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-size: 23px;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	line-height: 1;
	margin: 18px 15px 8px;
	padding: 10px 14px 11px;
}

.jn-trending-icon {
	display: inline-block;
	height: 18px;
	position: relative;
	width: 14px;
}

.jn-trending-icon::before {
	background: #fff;
	border-radius: 60% 60% 55% 55%;
	content: "";
	height: 18px;
	left: 2px;
	position: absolute;
	top: 0;
	transform: rotate(45deg);
	width: 11px;
}

.jn-trending-icon::after {
	background: var(--primary-red);
	border-radius: 999px;
	content: "";
	height: 7px;
	left: 5px;
	position: absolute;
	top: 7px;
	width: 5px;
}

.jn-trending-widget ul {
	list-style: none;
	margin: 0;
	padding: 8px 15px 15px;
}

.jn-trending-widget li {
	border-bottom: 1px solid var(--border-light);
	display: flex;
	gap: 10px;
	padding: 10px 0;
}

.jn-trending-widget li:last-child {
	border-bottom: 0;
}

.jn-trending-thumb,
.jn-thumb-news-media {
	flex: 0 0 auto;
}

.jn-small-thumb {
	border-radius: 4px;
	height: 58px;
	object-fit: cover;
	width: 82px;
}

.jn-trending-widget a {
	color: var(--text-dark);
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.jn-trending-widget a:hover {
	color: var(--primary-red);
}

.jn-trending-widget time,
.jn-thumb-news time,
.jn-text-news time,
.jn-hero-secondary time {
	color: var(--text-muted);
	display: block;
	font-size: 12px;
	line-height: 1.25;
	margin-top: 5px;
}

.jn-section-head {
	align-items: center;
	border-bottom: 3px solid #e7e7e7;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin: 32px 0 18px;
	padding-bottom: 11px;
	position: relative;
}

.jn-section-head::after {
	background: #111;
	bottom: -3px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 44px;
}

.jn-section-head h2,
.jn-web-stories-head h2,
.jn-footer-grid h2 {
	letter-spacing: 0;
	margin: 0;
}

.jn-section-head h2 {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
}

.jn-see-all {
	align-items: center;
	background: var(--primary-red);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 7px;
	justify-content: center;
	line-height: 1;
	min-height: 32px;
	padding: 8px 14px;
	white-space: nowrap;
}

.jn-see-all::after {
	content: "\203a";
	font-size: 16px;
	line-height: 0.8;
}

.jn-see-all:hover,
.jn-see-all:focus {
	background: var(--primary-red-hover);
	color: #fff;
}

.jn-meta-row {
	align-items: center;
	color: var(--text-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 5px;
	line-height: 1.35;
	margin: 6px 0 7px;
}

.jn-author-avatar {
	border-radius: 999px;
	height: 42px;
	margin-right: 4px;
	width: 42px;
}

.jn-author-name {
	color: var(--text-dark);
	font-weight: 800;
}

.jn-verified {
	align-items: center;
	background: var(--info-blue);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 9px;
	font-weight: 900;
	height: 13px;
	justify-content: center;
	line-height: 1;
	margin-left: 2px;
	width: 13px;
}

.jn-category-pill {
	align-items: center;
	color: var(--primary-red);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 5px;
	line-height: 1;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.jn-bolt {
	background: var(--primary-red);
	clip-path: polygon(45% 0, 83% 0, 62% 42%, 100% 42%, 38% 100%, 54% 55%, 18% 55%);
	display: inline-block;
	height: 15px;
	width: 10px;
}

.jn-image-fallback {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(181, 0, 0, 0.9), rgba(26, 26, 26, 0.92)),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 8px, transparent 8px 16px);
	box-sizing: border-box;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	min-height: 120px;
	padding: 18px;
	text-align: center;
}

.jn-image-fallback span {
	border: 2px solid currentColor;
	border-radius: 999px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	line-height: 44px;
	width: 48px;
}

.jn-image-fallback strong {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.jn-home-main {
	padding-bottom: 48px;
}

.jn-hero-news {
	display: grid;
	gap: 22px;
	grid-template-columns: 1.45fr 1fr 1fr;
	padding-top: 27px;
}

.jn-hero-left {
	min-width: 0;
}

.jn-hero-feature {
	background: #111;
	border-radius: var(--radius);
	min-height: 246px;
	overflow: hidden;
	position: relative;
}

.jn-hero-media {
	display: block;
	height: 100%;
	min-height: 246px;
	position: relative;
}

.jn-hero-image,
.jn-hero-feature .jn-image-fallback {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.jn-hero-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.84) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.jn-hero-content {
	bottom: 0;
	box-sizing: border-box;
	color: #fff;
	display: block;
	left: 0;
	padding: 18px;
	position: absolute;
	right: 0;
	z-index: 2;
}

.jn-hero-content time {
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 6px;
}

.jn-hero-content strong {
	display: block;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
}

.jn-hero-secondary {
	margin-top: 12px;
}

.jn-hero-secondary h3 {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.36;
	margin: 0;
}

.jn-hero-middle,
.jn-hero-right,
.jn-feature-side-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.jn-text-news {
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 13px;
}

.jn-text-news:last-child,
.jn-thumb-news:last-child {
	border-bottom: 0;
}

.jn-text-news h3,
.jn-thumb-news h3 {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.38;
	margin: 0;
}

.jn-thumb-news {
	border-bottom: 1px solid var(--border-light);
	display: flex;
	gap: 11px;
	min-height: 60px;
	padding-bottom: 13px;
}

.jn-grid-2col {
	display: grid;
	gap: 20px 36px;
	grid-template-columns: 1fr 1fr;
}

.jn-horizontal-card {
	align-items: flex-start;
	display: grid;
	gap: 14px;
	grid-template-columns: 190px minmax(0, 1fr);
}

.jn-horizontal-card-media,
.jn-feature-card-media,
.jn-image-card-media,
.jn-archive-card-media,
.jn-search-card-media,
.jn-related-card > a {
	background: #f0f0f0;
	display: block;
	overflow: hidden;
}

.jn-horizontal-card-media,
.jn-horizontal-card-media .jn-card-image,
.jn-horizontal-card-media .jn-image-fallback {
	border-radius: 4px;
	height: 118px;
	width: 190px;
}

.jn-card-image,
.jn-feature-image,
.jn-archive-card .jn-card-image,
.jn-search-card .jn-card-image,
.jn-related-image,
.jn-auto-post-image {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.jn-horizontal-card h3,
.jn-feature-card h3,
.jn-image-card h3,
.jn-archive-card h2,
.jn-search-card h2,
.jn-related-card h3 {
	color: var(--text-dark);
	font-weight: 800;
	letter-spacing: 0;
	margin: 0;
}

.jn-horizontal-card h3 {
	font-size: 17px;
	line-height: 1.36;
}

.jn-horizontal-card h3 a,
.jn-image-card h3 a,
.jn-archive-card h2 a,
.jn-feature-card h3 a {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	overflow: hidden;
}

.jn-horizontal-card p,
.jn-feature-card p,
.jn-search-card p {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #333;
	display: -webkit-box;
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
	overflow: hidden;
}

.jn-split-home-sections {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: 1fr 1fr;
}

.jn-split-home-sections .jn-category-block {
	min-width: 0;
}

.jn-feature-list-layout {
	display: grid;
	gap: 17px;
	grid-template-columns: 1.13fr 0.9fr;
}

.jn-feature-card-media,
.jn-feature-card-media .jn-feature-image,
.jn-feature-card-media .jn-image-fallback {
	border-radius: 4px;
	height: 228px;
	width: 100%;
}

.jn-feature-card h3 {
	font-size: 20px;
	line-height: 1.32;
	margin-top: 12px;
}

.jn-grid-4col {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
}

.jn-image-card-media,
.jn-image-card-media .jn-card-image,
.jn-image-card-media .jn-image-fallback {
	border-radius: 4px;
	height: 148px;
	width: 100%;
}

.jn-image-card h3 {
	font-size: 15px;
	line-height: 1.34;
	margin-top: 10px;
}

.jn-web-stories {
	background: var(--footer-bg);
	border-radius: var(--radius);
	box-sizing: border-box;
	margin-top: 36px;
	overflow: hidden;
	padding: 25px 20px 20px;
}

.jn-web-stories-head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 19px;
}

.jn-web-stories-head h2 {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-size: 25px;
	font-weight: 800;
	gap: 10px;
}

.jn-web-stories-head h2::before {
	background: #fff;
	border-radius: 1px;
	box-shadow: 6px 0 0 rgba(255, 255, 255, 0.64), 12px 0 0 rgba(255, 255, 255, 0.36);
	content: "";
	height: 17px;
	width: 4px;
}

.jn-web-stories-wrap {
	position: relative;
}

.jn-web-stories-track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 4px;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.jn-web-stories-track::-webkit-scrollbar {
	display: none;
}

.jn-story-card {
	background: #111;
	border-radius: var(--radius);
	flex: 0 0 164px;
	height: 255px;
	overflow: hidden;
	position: relative;
}

.jn-story-card a {
	color: #fff;
	display: block;
	height: 100%;
	position: relative;
}

.jn-story-card .jn-story-image,
.jn-story-card .jn-image-fallback {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.jn-story-card a::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.84) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.jn-story-card span {
	bottom: 0;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	left: 0;
	line-height: 1.35;
	padding: 14px 12px;
	position: absolute;
	right: 0;
	z-index: 1;
}

.jn-slider-next {
	align-items: center;
	background: var(--primary-red);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 36px;
	font-weight: 400;
	height: 54px;
	justify-content: center;
	line-height: 0;
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	z-index: 2;
}

.jn-story-dots {
	align-items: center;
	display: flex;
	gap: 7px;
	justify-content: center;
	padding-top: 14px;
}

.jn-story-dots span {
	background: #fff;
	border-radius: 999px;
	height: 8px;
	opacity: 0.95;
	width: 8px;
}

.jn-breadcrumb {
	color: #6a6a6a;
	font-size: 12px;
	line-height: 1.4;
	margin-bottom: 12px;
}

.jn-breadcrumb a {
	color: #2685c7;
}

.jn-breadcrumb span {
	margin-right: 4px;
}

.jn-article-header h1 {
	color: var(--text-dark);
	font-size: 31px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.26;
	margin: 2px 0 10px;
}

.jn-article-deck {
	background: #f8f8f8;
	border-left: 4px solid var(--border-light);
	color: #333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 0 12px;
	padding: 10px 12px;
}

.jn-byline-strip {
	align-items: center;
	border-bottom: 1px solid var(--border-light);
	border-top: 1px solid var(--border-light);
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin: 14px 0 16px;
	padding: 10px 0;
}

.jn-byline-strip .jn-meta-row {
	margin: 0;
}

.jn-follow-pills {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.jn-follow-pills a {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: 999px;
	color: #111;
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	justify-content: center;
	min-height: 28px;
	padding: 5px 10px;
}

.jn-follow-pills a:first-child {
	border-color: rgba(37, 189, 65, 0.4);
	color: #12862a;
}

.jn-follow-pills a:hover {
	border-color: var(--primary-red);
	color: var(--primary-red);
}

.jn-featured-figure {
	margin: 0;
}

.jn-featured-image,
.jn-featured-figure .jn-image-fallback {
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	height: auto;
	max-height: 460px;
	min-height: 0;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.jn-featured-figure figcaption {
	color: #777;
	font-size: 11px;
	font-style: italic;
	margin-top: 6px;
	text-align: center;
}

.jn-highlights-box {
	border: 1px dashed #111;
	box-sizing: border-box;
	margin: 26px 0;
	padding: 0 16px 13px;
}

.jn-highlights-label {
	background: #111;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 10px;
	padding: 6px 13px;
	position: relative;
	top: -1px;
}

.jn-highlights-box ol {
	margin: 0;
	padding-left: 20px;
}

.jn-highlights-box li {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	margin-bottom: 4px;
}

.jn-article-body {
	color: #242424;
	font-size: 15px;
	line-height: 1.84;
}

.jn-article-body p {
	margin: 0 0 18px;
}

.jn-article-body h2,
.jn-article-body h3 {
	color: #111;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 29px 0 12px;
}

.jn-article-body h2 {
	font-size: 22px;
}

.jn-article-body h3 {
	font-size: 19px;
}

.jn-article-body ul,
.jn-article-body ol {
	margin-bottom: 20px;
	margin-left: 20px;
}

.jn-also-read {
	align-items: center;
	border: 1px dashed #111;
	border-radius: var(--radius);
	display: flex;
	gap: 13px;
	margin: 22px 0;
	min-height: 76px;
	padding: 10px 12px;
}

.jn-also-read-thumb {
	display: block;
	flex: 0 0 auto;
}

.jn-also-read span {
	color: var(--primary-red);
	display: block;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 4px;
}

.jn-also-read a:last-child {
	color: #111;
	display: block;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.jn-tags-row {
	border-top: 1px solid var(--border-light);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
	padding-top: 16px;
}

.jn-tags-row a {
	background: #111;
	border-radius: 2px;
	color: #fff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 6px 9px;
}

.jn-share-controls {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.jn-share-row {
	border-top: 1px solid var(--border-light);
	margin: 24px 0 18px;
	padding-top: 18px;
}

.jn-share-label {
	color: #777;
	display: block;
	flex-basis: 100%;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 1.4px;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.jn-share-controls a,
.jn-share-controls button {
	align-items: center;
	border: 0;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	justify-content: center;
	min-height: 26px;
	padding: 6px 10px;
}

.jn-share-controls a:hover,
.jn-share-controls button:hover {
	color: #fff;
	filter: brightness(0.94);
}

.jn-share-facebook {
	background: var(--facebook-blue);
}

.jn-share-whatsapp {
	background: var(--whatsapp-green);
}

.jn-share-x {
	background: var(--x-black);
}

.jn-share-telegram {
	background: var(--telegram-blue);
}

.jn-share-copy {
	background: #687080;
}

.jn-share-native {
	background: #7b4be8;
}

.jn-share-rail {
	flex-direction: column;
	position: fixed;
	right: 0;
	top: 34%;
	z-index: 120;
}

.jn-share-rail a,
.jn-share-rail button {
	border-radius: 3px 0 0 3px;
	height: 37px;
	min-height: 0;
	padding: 0;
	width: 38px;
}

.jn-share-rail span {
	font-size: 0;
}

.jn-share-rail .jn-share-facebook span::before {
	content: "f";
	font-size: 13px;
}

.jn-share-rail .jn-share-whatsapp span::before {
	content: "WA";
	font-size: 10px;
}

.jn-share-rail .jn-share-x span::before {
	content: "X";
	font-size: 12px;
}

.jn-share-rail .jn-share-telegram span::before {
	content: "TG";
	font-size: 10px;
}

.jn-share-rail .jn-share-copy span::before {
	content: "CP";
	font-size: 10px;
}

.jn-share-rail .jn-share-native span::before {
	content: "SH";
	font-size: 10px;
}

.jn-author-box {
	align-items: center;
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	display: flex;
	gap: 15px;
	margin: 22px 0;
	padding: 16px;
}

.jn-author-box-avatar {
	border-radius: 999px;
	flex: 0 0 auto;
	height: 72px;
	width: 72px;
}

.jn-author-box h2 {
	align-items: center;
	display: flex;
	font-size: 15px;
	font-weight: 800;
	gap: 4px;
	line-height: 1.2;
	margin: 0 0 5px;
}

.jn-author-box p {
	color: #444;
	font-size: 12px;
	line-height: 1.55;
	margin: 0;
}

.jn-join-banners {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 18px 0;
}

.jn-join-banner {
	align-items: center;
	border-radius: 4px;
	display: flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: space-between;
	min-height: 38px;
	padding: 7px 12px;
}

.jn-join-banner span {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.jn-join-banner span::before {
	border-radius: 999px;
	color: #fff;
	content: "+";
	display: inline-flex;
	font-size: 13px;
	height: 18px;
	justify-content: center;
	line-height: 17px;
	width: 18px;
}

.jn-join-banner strong {
	border-radius: 2px;
	color: #fff;
	font-size: 11px;
	padding: 5px 14px;
}

.jn-join-whatsapp {
	background: #e8fff0;
	border: 1px solid rgba(37, 189, 65, 0.55);
	color: #10842b;
}

.jn-join-whatsapp span::before,
.jn-join-whatsapp strong {
	background: var(--whatsapp-green);
}

.jn-join-facebook {
	background: #eef7ff;
	border: 1px solid rgba(24, 119, 242, 0.32);
	color: #0a5fc3;
}

.jn-join-facebook span::before,
.jn-join-facebook strong {
	background: var(--telegram-blue);
}

.jn-more-news h2 {
	align-items: center;
	background: var(--primary-red);
	border-radius: 3px;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 900;
	gap: 7px;
	line-height: 1;
	margin: 28px 0 23px;
	padding: 10px 13px;
}

.jn-more-news h2::before {
	content: "+";
	font-size: 17px;
}

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

.jn-related-card > a,
.jn-related-card .jn-related-image,
.jn-related-card .jn-image-fallback {
	border-radius: 4px;
	height: 105px;
	width: 100%;
}

.jn-related-card h3 {
	font-size: 13px;
	line-height: 1.35;
	margin-top: 8px;
}

.jn-auto-load-next {
	border-top: 1px solid var(--border-light);
	margin-top: 30px;
	padding-top: 20px;
}

.jn-auto-load-label {
	color: var(--primary-red);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1.1px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.jn-auto-load-status {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 12px;
}

.jn-auto-post-card {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	display: grid;
	gap: 16px;
	grid-template-columns: 220px minmax(0, 1fr);
	padding: 14px;
}

.jn-auto-post-media,
.jn-auto-post-media .jn-auto-post-image,
.jn-auto-post-media .jn-image-fallback {
	aspect-ratio: 16 / 10;
	border-radius: 4px;
	height: 100%;
	min-height: 138px;
	overflow: hidden;
	width: 100%;
}

.jn-auto-post-body h2 {
	font-size: 21px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0 0 8px;
}

.jn-auto-post-body p {
	color: #333;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 10px;
}

.jn-auto-post-link {
	color: var(--primary-red);
	font-size: 13px;
	font-weight: 900;
}

.jn-auto-post-card + .jn-auto-post-card {
	margin-top: 16px;
}

.jn-auto-load-manual {
	margin-top: 16px;
	text-align: center;
}

.jn-auto-load-manual-link {
	background: var(--primary-red);
	border-radius: 999px;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	padding: 12px 26px;
}

.jn-auto-load-manual-link:hover,
.jn-auto-load-manual-link:focus {
	background: var(--primary-red-hover);
	color: #fff;
}

.jn-comments-shell {
	margin-top: 32px;
}

.jn-comments-toggle {
	align-items: flex-start;
	background: #fff;
	border: 1px solid #111;
	border-radius: 999px;
	color: #111;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 4px;
	line-height: 1.2;
	padding: 10px 18px;
	text-align: left;
	width: 100%;
}

.jn-comments-toggle span {
	font-size: 16px;
	font-weight: 900;
}

.jn-comments-toggle small {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 700;
}

.jn-comments-toggle[aria-expanded="true"] {
	border-color: var(--primary-red);
	color: var(--primary-red);
}

.jn-comments-region {
	margin-top: 18px;
}

.jn-comment-intent {
	background: #f7f7f7;
	border-left: 3px solid var(--primary-red);
	color: #333;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	margin-bottom: 14px;
	padding: 10px 12px;
}

#comments {
	margin-top: 40px;
}

#comments .comments-title {
	font-size: 18px;
}

#reply-title {
	border: 1px solid #111;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 16px;
	padding: 7px 18px;
	text-align: left;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	border: 1px solid var(--border-light);
	border-radius: 0;
	box-sizing: border-box;
	font-size: 13px;
	margin-bottom: 9px;
	min-height: 36px;
	padding: 8px 10px;
	width: 100%;
}

.comment-form textarea {
	min-height: 180px;
}

.comment-form .comment-form-cookies-consent {
	align-items: center;
	display: flex;
	font-size: 12px;
	gap: 7px;
}

.comment-form .form-submit input[type="submit"] {
	background: var(--primary-red);
	border: 0;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	padding: 10px 18px;
}

.jn-archive-header {
	margin-bottom: 22px;
}

.jn-archive-header h1 {
	color: var(--text-dark);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 13px;
	padding-bottom: 11px;
	position: relative;
}

.jn-archive-header h1::after {
	background: #111;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 58px;
}

.jn-archive-description {
	border-top: 3px solid #e7e7e7;
	color: #222;
	font-size: 14px;
	line-height: 1.7;
	padding-top: 13px;
}

.jn-archive-description p {
	margin: 0;
}

.jn-archive-grid {
	display: grid;
	gap: 24px 20px;
	grid-template-columns: 1fr 1fr;
}

.jn-archive-card {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.jn-archive-card-media,
.jn-archive-card-media .jn-card-image,
.jn-archive-card-media .jn-image-fallback {
	height: 220px;
	width: 100%;
}

.jn-archive-card .jn-meta-row,
.jn-archive-card h2 {
	margin-left: 12px;
	margin-right: 12px;
}

.jn-archive-card h2 {
	font-size: 16px;
	line-height: 1.42;
	margin-bottom: 14px;
}

.jn-pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
	margin: 32px 0 10px;
}

.jn-pagination .page-numbers {
	align-items: center;
	border: 1px solid var(--border-light);
	border-radius: 4px;
	color: #111;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	height: 35px;
	justify-content: center;
	min-width: 35px;
	padding: 0 11px;
}

.jn-pagination .current {
	background: var(--primary-red);
	border-color: var(--primary-red);
	color: #fff;
}

.jn-pagination a:hover {
	border-color: var(--primary-red);
	color: var(--primary-red);
}

.jn-search-result-heading {
	align-items: center;
	color: #333;
	display: flex;
	font-size: 20px;
	gap: 14px;
	margin: 0 0 23px;
}

.jn-search-chip {
	align-items: center;
	background: #f3f3f3;
	border: 1px solid #d8d8d8;
	border-radius: 999px;
	color: #111;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	gap: 8px;
	letter-spacing: 1.5px;
	line-height: 1;
	padding: 8px 14px;
}

.jn-search-chip::before {
	border: 2px solid currentColor;
	border-radius: 999px;
	content: "";
	height: 10px;
	position: relative;
	width: 10px;
}

.jn-search-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.jn-search-card {
	align-items: flex-start;
	display: grid;
	gap: 22px;
	grid-template-columns: 290px minmax(0, 1fr);
}

.jn-search-card-media,
.jn-search-card-media .jn-card-image,
.jn-search-card-media .jn-image-fallback {
	border-radius: 4px;
	height: 182px;
	width: 290px;
}

.jn-search-card h2 {
	font-size: 22px;
	line-height: 1.32;
	margin: 0 0 9px;
}

.jn-search-card p {
	font-size: 15px;
	line-height: 1.62;
}

.jn-page-content h1 {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 24px;
}

.jn-entry-content {
	color: #333;
	font-size: 16px;
	line-height: 1.75;
	max-width: 780px;
}

.jn-entry-content h2,
.jn-entry-content h3 {
	color: #222;
	font-weight: 800;
	letter-spacing: 0;
	margin: 25px 0 10px;
}

.jn-entry-content h2 {
	font-size: 24px;
}

.jn-entry-content h3 {
	font-size: 20px;
}

.jn-entry-content p {
	margin: 0 0 17px;
}

.jn-not-found {
	margin: 40px auto 32px;
	max-width: 680px;
	text-align: center;
}

.jn-not-found h1 {
	color: #1b2330;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 18px;
}

.jn-not-found p {
	color: #2f3948;
	font-size: 20px;
	line-height: 1.5;
	margin: 0 0 28px;
}

.jn-not-found .search-form {
	display: flex;
	margin: 0 auto;
	max-width: 520px;
}

.jn-not-found .search-field {
	border: 1px solid #d9dce2;
	border-radius: 4px 0 0 4px;
	flex: 1 1 auto;
	min-height: 52px;
	padding: 10px 14px;
}

.jn-not-found .search-submit {
	background: #fff;
	border: 1px solid #d9dce2;
	border-left: 0;
	border-radius: 0 4px 4px 0;
	color: #222;
	font-weight: 800;
	padding: 0 18px;
}

.jn-404-categories {
	border-top: 1px solid var(--border-light);
	margin: 0 auto 8px;
	max-width: 780px;
	padding-top: 28px;
	text-align: center;
}

.jn-404-categories-label {
	color: var(--text-muted);
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1.2px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.jn-404-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.jn-404-chip {
	background: var(--soft-surface);
	border: 1px solid var(--border-light);
	border-radius: 999px;
	color: var(--text-dark);
	font-size: 13px;
	font-weight: 700;
	padding: 8px 16px;
}

.jn-404-chip:hover,
.jn-404-chip:focus {
	background: var(--primary-red);
	border-color: var(--primary-red);
	color: #fff;
}

.jn-site-footer {
	background: var(--footer-bg);
	color: #d8d8d8;
	padding-top: 44px;
}

.jn-footer-grid {
	display: grid;
	gap: 44px;
	grid-template-columns: 1.55fr 0.9fr 0.9fr 1.45fr;
	padding-bottom: 37px;
}

.jn-site-footer .jn-wordmark {
	color: #fff;
}

.jn-footer-brand p {
	color: #e2e2e2;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.72;
	margin: 17px 0 0;
	max-width: 330px;
}

.jn-footer-grid h2 {
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 21px;
	padding-bottom: 10px;
	position: relative;
}

.jn-footer-grid h2::after {
	background: #d6ae00;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 70px;
}

.jn-footer-menu li {
	margin-bottom: 10px;
}

.jn-footer-menu a {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
}

.jn-footer-menu a::before {
	color: #fff;
	content: "\203a";
	font-size: 20px;
	line-height: 1;
}

.jn-footer-menu a:hover {
	color: #d6ae00;
}

.jn-follow-card {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	display: grid;
	gap: 8px 14px;
	grid-template-columns: 52px minmax(0, 1fr);
	padding: 17px;
}

.jn-rss-mark {
	align-items: center;
	background: #fff;
	border-radius: 999px;
	color: var(--footer-bg);
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.jn-follow-card strong,
.jn-follow-card small {
	display: block;
}

.jn-follow-card strong {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}

.jn-follow-card small {
	color: #f4f4f4;
	font-size: 12px;
	font-weight: 700;
	margin-top: 3px;
}

.jn-whatsapp-cta {
	background: var(--whatsapp-green);
	border-radius: 999px;
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 800;
	grid-column: 1 / -1;
	line-height: 1;
	padding: 11px 18px;
	text-align: center;
}

.jn-whatsapp-cta:hover {
	background: #18a832;
	color: #fff;
}

.jn-social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
	margin-top: 17px;
}

.jn-social-icons a {
	align-items: center;
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	height: 29px;
	justify-content: center;
	line-height: 1;
	width: 29px;
}

.jn-social-icons a:hover {
	color: #fff;
	transform: translateY(-1px);
}

.jn-social-facebook {
	background: var(--facebook-blue);
}

.jn-social-x {
	background: var(--x-black);
}

.jn-social-instagram {
	background: var(--instagram-pink);
}

.jn-social-youtube {
	background: var(--youtube-red);
}

.jn-social-telegram {
	background: var(--telegram-blue);
}

.jn-social-rss {
	background: var(--rss-orange);
}

.jn-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.26);
	padding: 20px 0;
	text-align: center;
}

.jn-footer-bottom p {
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	margin: 0;
}

@media (max-width: 1100px) {
	.jn-primary-menu {
		gap: 17px;
	}

	.jn-primary-menu a {
		font-size: 13px;
	}

	.jn-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.jn-sidebar {
		position: static;
	}

	.jn-single-layout .jn-single-article {
		max-width: none;
	}
}

@media (max-width: 980px) {
	.jn-primary-nav {
		display: none;
	}

	.jn-mobile-toggle {
		display: inline-flex;
	}

	.jn-hero-news,
	.jn-grid-2col,
	.jn-split-home-sections,
	.jn-feature-list-layout,
	.jn-footer-grid {
		grid-template-columns: 1fr;
	}

	.jn-grid-4col,
	.jn-archive-grid,
	.jn-related-grid {
		grid-template-columns: 1fr 1fr;
	}

	.jn-hero-feature,
	.jn-hero-media {
		min-height: 330px;
	}

	.jn-share-rail {
		display: none;
	}
}

@media (max-width: 760px) {
	.jn-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.jn-header-row {
		min-height: 52px;
	}

	.jn-wordmark-text {
		font-size: 18px;
	}

	.jn-sub-menu {
		gap: 17px;
	}

	.jn-sub-menu a {
		font-size: 12px;
	}

	.jn-layout {
		gap: 28px;
		padding-top: 20px;
	}

	.jn-hero-news {
		gap: 18px;
		padding-top: 20px;
	}

	.jn-hero-feature,
	.jn-hero-media {
		min-height: 265px;
	}

	.jn-horizontal-card,
	.jn-search-card,
	.jn-auto-post-card {
		grid-template-columns: 1fr;
	}

	.jn-horizontal-card-media,
	.jn-horizontal-card-media .jn-card-image,
	.jn-horizontal-card-media .jn-image-fallback,
	.jn-search-card-media,
	.jn-search-card-media .jn-card-image,
	.jn-search-card-media .jn-image-fallback,
	.jn-auto-post-media,
	.jn-auto-post-media .jn-auto-post-image,
	.jn-auto-post-media .jn-image-fallback {
		height: 205px;
		width: 100%;
	}

	.jn-byline-strip {
		align-items: flex-start;
		flex-direction: column;
	}

	.jn-follow-pills {
		justify-content: flex-start;
	}

	.jn-article-header h1 {
		font-size: 28px;
	}

	.jn-search-result-heading {
		align-items: flex-start;
		flex-direction: column;
		font-size: 17px;
		gap: 9px;
	}

	.jn-ad-slot {
		min-height: 170px;
	}

	.jn-not-found {
		margin: 28px auto 24px;
	}

	.jn-not-found h1 {
		font-size: 32px;
	}

	.jn-not-found p {
		font-size: 17px;
	}
}

@media (max-width: 560px) {
	.jn-grid-4col,
	.jn-archive-grid,
	.jn-related-grid {
		grid-template-columns: 1fr;
	}

	.jn-section-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.jn-section-head h2,
	.jn-web-stories-head h2 {
		font-size: 22px;
	}

	.jn-web-stories {
		margin-left: -4px;
		margin-right: -4px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.jn-story-card {
		flex-basis: 148px;
		height: 235px;
	}

	.jn-slider-next {
		height: 44px;
		right: -3px;
		width: 44px;
	}

	.jn-author-box,
	.jn-also-read {
		align-items: flex-start;
		flex-direction: column;
	}

	.jn-join-banner {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.jn-footer-grid {
		gap: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
