/**
 * News (2026-09-26): the News category label and the sidebar "Cricket News"
 * card. See inc/psp-news.php.
 */

/* ---------------------------------------------------------------------
 * News label: any category link to /category/news/ (post header pill,
 * card chips, carousel chips) reads as news — red with a live dot.
 * !important: several chip styles upstream set their own colours.
 * ------------------------------------------------------------------- */
.cat-links a[href$="/category/news/"],
a.cricket-story__cat[href$="/category/news/"],
a.cricket-sidebar-pills__pill[href$="/category/news/"] {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-color: transparent !important;
	background: #e0323f !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}
/* On story cards the label has no padding of its own. */
a.cricket-story__cat[href$="/category/news/"] {
	padding: 4px 9px;
	border-radius: 999px;
}
a.cricket-story__cat[href$="/category/news/"]::before {
	background: #ffffff !important;
}
/* Light mode recolours category links (cricket-light.css, same specificity,
   loads later); the News label keeps its white text on red. */
html[data-theme="light"] .cat-links a[href$="/category/news/"],
html[data-theme="light"] .cat-links a[href$="/category/news/"]:visited,
html[data-theme="light"] a.cricket-story__cat[href$="/category/news/"],
html[data-theme="light"] a.cricket-story__cat[href$="/category/news/"]:visited,
html[data-theme="light"] a.cricket-sidebar-pills__pill[href$="/category/news/"] {
	background: #e0323f !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}
.cat-links a[href$="/category/news/"]::before,
a.cricket-sidebar-pills__pill[href$="/category/news/"]::before {
	content: '';
	flex: none;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ffffff;
}

/* ---------------------------------------------------------------------
 * Sidebar card
 * ------------------------------------------------------------------- */
.cricket-news-side {
	margin-bottom: 20px;
	padding-bottom: 16px;
}
.cricket-news-side__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
}
.cricket-news-side .cricket-sidebar-card__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.cricket-news-side__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e0323f;
	box-shadow: 0 0 0 0 rgba( 224, 50, 63, 0.5 );
	animation: psp-news-ping 1.8s ease-out infinite;
}
.cricket-news-side__date {
	color: #5c6c89;
	font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.cricket-news-side__list {
	display: grid;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: psp-news;
}
.cricket-news-side__list li {
	margin: 0;
	padding: 0;
	counter-increment: psp-news;
}
.cricket-news-side__list a {
	display: grid;
	grid-template-columns: 22px minmax( 0, 1fr );
	column-gap: 10px;
	padding: 9px 8px;
	border-radius: 10px;
	color: #16233c !important;
	text-decoration: none !important;
	transition: background 0.2s;
}
.cricket-news-side__list a::before {
	content: counter( psp-news );
	grid-row: 1 / span 2;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border-radius: 50%;
	background: #13213b;
	color: #ffffff;
	font: 800 11px/1 'Outfit', 'PT Sans', sans-serif;
}
.cricket-news-side__list li:first-child a::before {
	background: #e0323f;
}
.cricket-news-side__list a:hover,
.cricket-news-side__list a:focus-visible {
	background: #f3f6fb;
}
.cricket-news-side__list a:focus-visible {
	outline: 2px solid #ffb020;
	outline-offset: 1px;
}
.cricket-news-side__topic {
	grid-column: 2;
	color: #a15c00;
	font: 700 10px/1.3 'JetBrains Mono', ui-monospace, monospace;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.cricket-news-side__title {
	grid-column: 2;
	margin-top: 2px;
	font: 700 14px/1.35 'Outfit', 'PT Sans', sans-serif;
}
.cricket-news-side__list a:hover .cricket-news-side__title {
	color: #1e5087;
}
.cricket-news-side__cta {
	display: block;
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 999px;
	background: #13213b;
	color: #ffffff !important;
	font: 700 13px/1 'Outfit', 'PT Sans', sans-serif;
	text-align: center;
	text-decoration: none !important;
	transition: background 0.2s;
}
.cricket-news-side__cta:hover,
.cricket-news-side__cta:focus-visible {
	background: #e0323f;
}

@keyframes psp-news-ping {
	70% {
		box-shadow: 0 0 0 7px rgba( 224, 50, 63, 0 );
	}
	100% {
		box-shadow: 0 0 0 0 rgba( 224, 50, 63, 0 );
	}
}
@media ( prefers-reduced-motion: reduce ) {
	.cricket-news-side__dot {
		animation: none;
	}
}

/* =====================================================================
 * News pages redesign (2026-09-26, mockup signed off): the News article
 * and the News category page. Markup: inc/psp-news-pages.php.
 *
 * Page-level colours come from --pn-* tokens (dark by default, flipped
 * for light mode below). Everything inside the white reading card uses
 * fixed "paper" colours, the same in both modes, like other articles.
 * Story blocks sit inside .entry-content, where the legacy normaliser
 * (cricket-article.css) forces colours and sizes with !important; the
 * long prefix and !important below are there to win against it.
 * =================================================================== */

.psp-news-page,
.psp-news-hero {
	--pn-ink: #e8eef9;
	--pn-text: #c6d3ea;
	--pn-mute: #9aabc9;
	--pn-panel: rgba( 15, 33, 64, 0.88 );
	--pn-panel2: #132a4f;
	--pn-line: #223a63;
	--pn-line2: #35558a;
	--pn-red-text: #ff8a93;
	--pn-gold: #ffb020;
	--pn-display: 'Outfit', 'PT Sans', system-ui, sans-serif;
	--pn-mono: 'JetBrains Mono', ui-monospace, monospace;
}
html[data-theme="light"] .psp-news-page,
html[data-theme="light"] .psp-news-hero {
	--pn-ink: #13213b;
	--pn-text: #2a3651;
	--pn-mute: #5c6c89;
	--pn-panel: #ffffff;
	--pn-panel2: #eef3fa;
	--pn-line: #dbe3ef;
	--pn-line2: #b9c7dc;
	--pn-red-text: #c42a3a;
	--pn-gold: #a15c00;
}

/* ---- shared bits --------------------------------------------------- */
.psp-news-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: #e0323f;
	color: #ffffff;
	font: 700 11px/1 'Outfit', 'PT Sans', sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.psp-news-pill::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ffffff;
}
.psp-news-edition {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
}
.psp-news-edition__day {
	color: var( --pn-mute, #5c6c89 );
	font: 700 11px/1.3 'JetBrains Mono', ui-monospace, monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.psp-news-live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var( --pn-red-text );
	font: 700 11px/1 var( --pn-mono );
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.psp-news-live i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e0323f;
	animation: psp-news-ping 1.8s ease-out infinite;
}
.psp-news-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #ffb020;
	color: #0a1830 !important;
	font: 700 14px/1 'Outfit', 'PT Sans', sans-serif;
	text-decoration: none !important;
	transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.psp-news-btn:hover,
.psp-news-btn:focus-visible {
	transform: translateY( -1px );
}
.psp-news-btn:focus-visible,
.psp-news-page a:focus-visible,
.psp-news-hero a:focus-visible,
.psp-news-idx a:focus-visible,
.psp-news-idx__more:focus-visible {
	outline: 2px solid #ffb020;
	outline-offset: 2px;
}
.psp-news-btn--ink {
	background: #13213b;
	color: #ffffff !important;
}
.psp-news-btn--ink:hover,
.psp-news-btn--ink:focus-visible {
	background: #e0323f;
}
.psp-news-btn--ghost {
	border-color: var( --pn-line2 );
	background: transparent;
	color: var( --pn-ink ) !important;
}
.psp-news-btn--ghost:hover,
.psp-news-btn--ghost:focus-visible {
	border-color: #ffb020;
}
.psp-news-btn--tg {
	width: 100%;
	background: #17709f; /* Telegram blue, darkened for 5.4:1 with white text. */
	color: #ffffff !important;
}
.psp-news-btn--tg:hover,
.psp-news-btn--tg:focus-visible {
	background: #125a80;
}

/* ---- Headline index (article + lead card) -------------------------- */
.psp-news-idx {
	margin: 0 0 26px;
	padding: 16px 16px 12px;
	border: 1px solid #e3e9f3;
	border-radius: 16px;
	background: #f6f8fc;
}
.psp-news-idx .psp-news-idx__title {
	margin: 0 0 10px !important;
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
	color: #5c6c89 !important;
	font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase;
}
.psp-news-idx .psp-news-idx__title::before,
.psp-news-idx .psp-news-idx__title::after {
	content: none !important;
}
.psp-news-idx__list {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 2px 18px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	counter-reset: psp-news-idx;
}
.psp-news-idx__list li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	counter-increment: psp-news-idx;
}
.psp-news-idx__list li::before {
	content: none !important;
}
.psp-news-idx__list a {
	display: grid;
	grid-template-columns: 24px minmax( 0, 1fr );
	column-gap: 10px;
	padding: 8px 6px;
	border-radius: 10px;
	color: #13213b !important;
	text-decoration: none !important;
	transition: background 0.2s;
}
.psp-news-idx__list a::before {
	content: counter( psp-news-idx );
	grid-row: 1 / span 2;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #13213b;
	color: #ffffff;
	font: 800 11px/1 'Outfit', 'PT Sans', sans-serif;
}
.psp-news-idx__list li:first-child a::before {
	background: #e0323f;
}
.psp-news-idx__list a:hover {
	background: #e8eef8;
}
.psp-news-idx__topic {
	grid-column: 2;
	color: #a15c00;
	font: 700 10px/1.4 'JetBrains Mono', ui-monospace, monospace;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.psp-news-idx__head {
	grid-column: 2;
	margin-top: 1px;
	color: #13213b;
	font: 700 14.5px/1.35 'Outfit', 'PT Sans', sans-serif;
}
.psp-news-idx__list a:hover .psp-news-idx__head {
	color: #1e5087;
}
.psp-news-idx__more {
	display: block;
	margin: 6px 0 2px;
	padding: 8px 6px;
	border: 0;
	background: none;
	color: #1e5087;
	font: 700 13.5px/1 'Outfit', 'PT Sans', sans-serif;
	cursor: pointer;
}
.psp-news-idx__more::after {
	content: " \2193";
}
@media ( min-width: 601px ) {
	.psp-news-idx__more {
		display: none !important;
	}
}
@media ( max-width: 600px ) {
	.psp-news-idx__list {
		grid-template-columns: minmax( 0, 1fr );
	}
	.psp-news-idx.is-clipped .psp-news-idx__list li:nth-child( n + 6 ) {
		display: none;
	}
}

/* ---- News article: header ----------------------------------------- */
.psp-news-hero {
	display: grid;
	grid-template-columns: minmax( 0, 1.15fr ) minmax( 0, 1fr );
	gap: 34px;
	align-items: center;
	padding: 34px 32px 6px;
	color: var( --pn-ink );
}
.psp-news-hero--no-image {
	grid-template-columns: minmax( 0, 1fr );
}
.psp-news-hero__crumb {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
	color: var( --pn-mute );
	font: 700 11px/1 var( --pn-mono );
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.psp-news-hero__crumb a {
	color: var( --pn-red-text ) !important;
	text-decoration: none !important;
}
body.single .cricket-content-page .psp-news-hero .psp-news-hero__title {
	margin: 14px 0 12px;
	padding: 0;
	border: 0;
	background: none;
	color: var( --pn-ink ) !important;
	-webkit-text-fill-color: currentColor;
	font: 800 clamp( 26px, 3.4vw, 40px ) / 1.12 var( --pn-display ) !important;
	letter-spacing: -0.01em;
	text-transform: none !important;
	text-shadow: none;
	text-wrap: balance;
}
body.single .cricket-content-page .psp-news-hero .psp-news-hero__title::before,
body.single .cricket-content-page .psp-news-hero .psp-news-hero__title::after {
	content: none !important;
}
.psp-news-hero__stand {
	max-width: 60ch;
	margin: 0 0 18px;
	color: var( --pn-text );
	font: 400 17px/1.55 'PT Sans', system-ui, sans-serif;
}
.psp-news-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	color: var( --pn-mute );
	font: 700 11px/1.3 var( --pn-mono );
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.psp-news-meta > * + *::before {
	content: "\00b7";
	margin-right: 14px;
	color: var( --pn-line2 );
}
.psp-news-meta__author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var( --pn-ink ) !important;
	text-decoration: none !important;
}
.psp-news-meta__avatar {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #3a86e0;
	color: #ffffff;
	font: 800 10px/1 'Outfit', sans-serif;
	letter-spacing: 0;
}
.psp-news-hero__media {
	margin: 0;
	overflow: hidden;
	border: 1px solid var( --pn-line );
	border-radius: 18px;
	box-shadow: 0 24px 50px -28px rgba( 0, 0, 0, 0.7 );
	aspect-ratio: 16 / 10;
}
.psp-news-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media ( max-width: 860px ) {
	.psp-news-hero {
		grid-template-columns: minmax( 0, 1fr );
		gap: 18px;
		padding: 18px 16px 0;
	}
	.psp-news-hero__media {
		order: -1;
	}
	.psp-news-hero__stand {
		font-size: 15.5px;
	}
}

/* ---- News article: sticky story bar -------------------------------- */
/* Fixed, not sticky: an ancestor of the article body clips overflow, which
   stops position:sticky. cricket-news.js lines it up with the body column. */
.psp-news-bar {
	height: 0;
}
.psp-news-bar__in {
	position: fixed;
	z-index: 90;
	top: calc( var( --psp-news-top, 0px ) + 10px );
	left: var( --psp-news-left, 16px );
	width: var( --psp-news-width, calc( 100% - 32px ) );
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 7px 8px 7px 16px;
	border-radius: 999px;
	background: #13213b;
	box-shadow: 0 12px 30px -12px rgba( 10, 24, 48, 0.6 );
	color: #ffffff;
	opacity: 0;
	pointer-events: none;
	transform: translateY( -8px );
	transition: opacity 0.2s, transform 0.2s;
}
.psp-news-bar.is-on .psp-news-bar__in {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}
.psp-news-bar__n {
	flex: none;
	color: #ffb020;
	font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.psp-news-bar__t {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	color: #ffffff;
	font: 700 13.5px/1.2 'Outfit', 'PT Sans', sans-serif;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.psp-news-bar__next {
	flex: none;
	padding: 8px 12px;
	border: 0;
	border-radius: 999px;
	background: rgba( 255, 255, 255, 0.14 );
	color: #ffffff;
	font: 700 12.5px/1 'Outfit', 'PT Sans', sans-serif;
	cursor: pointer;
}
.psp-news-bar__next:hover {
	background: #e0323f;
}

/* ---- News article: stories ----------------------------------------- */
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story {
	position: relative;
	margin: 0 !important;
	padding: 26px 0 26px 70px !important;
	border: 0 !important;
	border-top: 1px solid #e3e9f3 !important;
	border-radius: 0 !important;
	background: none !important;
	box-shadow: none !important;
	transform: none !important;
	scroll-margin-top: 170px;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story::before {
	content: attr( data-n );
	position: absolute;
	top: 26px;
	left: 0;
	color: #e0323f;
	font: 800 34px/1 'Outfit', 'PT Sans', sans-serif;
	font-variant-numeric: tabular-nums;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-kicker {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	margin: 0 0 8px !important;
	font-size: 12px !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-kicker .aicn-topic {
	padding: 5px 8px !important;
	border-radius: 6px;
	background-color: #fff4df !important;
	color: #a15c00 !important;
	font: 700 10.5px/1.2 'JetBrains Mono', ui-monospace, monospace !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-kicker .aicn-when {
	color: #5c6c89 !important;
	font: 700 10.5px/1.2 'JetBrains Mono', ui-monospace, monospace !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story h2.aimpa-match__title {
	margin: 0 0 12px !important;
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
	color: #13213b !important;
	font: 800 25px/1.22 'Outfit', 'PT Sans', sans-serif !important;
	text-wrap: balance;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story h2.aimpa-match__title::before,
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story h2.aimpa-match__title::after {
	content: none !important;
	display: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story > p:not( .aicn-why ) {
	margin: 0 0 14px !important;
	color: #2a3651 !important;
	font-size: 17px !important;
	line-height: 1.7 !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote {
	margin: 18px 0 !important;
	padding: 2px 0 2px 20px !important;
	border: 0 !important;
	border-left: 3px solid #ffb020 !important;
	border-radius: 0 !important;
	background: none !important;
	box-shadow: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote::before,
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote::after,
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote p::before,
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote p::after {
	content: none !important;
	display: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote,
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote * {
	text-align: left !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote p {
	margin: 0 0 8px !important;
	color: #13213b !important;
	font: 600 19px/1.45 'Outfit', 'PT Sans', sans-serif !important;
	font-style: normal !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news blockquote.aicn-quote cite {
	color: #5c6c89 !important;
	display: block;
	font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace !important;
	font-style: normal !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news p.aicn-why {
	display: grid;
	grid-template-columns: auto minmax( 0, 1fr );
	gap: 12px;
	align-items: baseline;
	margin: 16px 0 0 !important;
	padding: 13px 16px !important;
	border: 0 !important;
	border-radius: 12px;
	background-color: #13213b !important;
	color: #e8eef9 !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news p.aicn-why strong {
	color: #ffb020 !important;
	font: 700 10.5px/1.5 'JetBrains Mono', ui-monospace, monospace !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news a.aicn-back {
	display: inline-block;
	margin-top: 14px;
	color: #1e5087 !important;
	font: 700 12.5px/1 'Outfit', 'PT Sans', sans-serif !important;
	text-decoration: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news a.aicn-back:hover {
	color: #e0323f !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news p.aimpa-lede {
	margin: 0 0 26px !important;
	color: #2a3651 !important;
	font-size: 19px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
}

/* Quick hits become an "In brief" grid; section headings stay plain. */
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news > h2 {
	margin: 30px 0 14px !important;
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
	color: #13213b !important;
	font: 800 22px/1.2 'Outfit', 'PT Sans', sans-serif !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news > h2::before,
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news > h2::after {
	content: none !important;
	display: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news ul.aimpa-points {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 10px;
	margin: 0 0 8px !important;
	padding: 16px !important;
	border: 0 !important;
	border-radius: 16px;
	background: #f3f6fb !important;
	list-style: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news ul.aimpa-points li {
	margin: 0 !important;
	padding: 11px 13px !important;
	border: 1px solid #e3e9f3;
	border-radius: 12px;
	background-color: #ffffff !important;
	color: #2a3651 !important;
	font-size: 14.5px !important;
	line-height: 1.5 !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news ul.aimpa-points li::before {
	content: none !important;
	display: none !important;
}

/* FAQ: fold-open questions. */
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-faq {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item {
	border-bottom: 1px solid #e3e9f3;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 0;
	list-style: none;
	cursor: pointer;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item summary::-webkit-details-marker {
	display: none;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item summary::after {
	content: "+";
	flex: none;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f3f6fb;
	color: #13213b;
	font: 700 18px/1 'Outfit', sans-serif;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item[open] summary::after {
	content: "\2013";
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item summary:focus-visible {
	outline: 2px solid #ffb020;
	outline-offset: 2px;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item h3.aimpa-faq__q {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
	color: #13213b !important;
	font: 700 16.5px/1.35 'Outfit', 'PT Sans', sans-serif !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item h3.aimpa-faq__q::before,
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item h3.aimpa-faq__q::after {
	content: none !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news details.aicn-faq-item p {
	margin: 0 0 14px !important;
	color: #2a3651 !important;
}

/* Closing call to action: navy band. */
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-cta {
	margin: 30px 0 0 !important;
	padding: 22px !important;
	border: 0 !important;
	border-radius: 16px;
	background: linear-gradient( 120deg, #13213b, #1e3d6e ) !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-cta p {
	color: #c6d3ea !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-cta p.aimpa-cta__title {
	color: #ffffff !important;
	font: 800 20px/1.25 'Outfit', 'PT Sans', sans-serif !important;
}
body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aimpa-cta a.aimpa-cta__link {
	color: #ffffff !important;
}

@media ( max-width: 600px ) {
	body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story {
		padding: 22px 0 !important;
	}
	body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story::before {
		content: "Story " attr( data-n ) " / " attr( data-of );
		position: static;
		display: block;
		margin-bottom: 8px;
		font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}
	body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story h2.aimpa-match__title {
		font-size: 21px !important;
	}
	body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news .aicn-story > p:not( .aicn-why ) {
		font-size: 16px !important;
	}
	body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news p.aimpa-lede {
		font-size: 17px !important;
	}
	body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news p.aicn-why {
		grid-template-columns: minmax( 0, 1fr );
		gap: 4px;
	}
	body.psp-news-article .cricket-content-page .entry-content .aimpa-article.aicn-news ul.aimpa-points {
		grid-template-columns: minmax( 0, 1fr );
		padding: 10px !important;
	}
	.psp-news-bar__in {
		gap: 8px;
		padding-left: 12px;
	}
}

/* ---- News category page -------------------------------------------- */
.psp-news-page {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	color: var( --pn-ink );
}
.psp-news-page__in {
	display: grid;
	gap: 30px;
	max-width: 1220px;
	margin: 0 auto;
	padding: 34px 0 50px;
}
.psp-news-head {
	display: grid;
	grid-template-columns: minmax( 0, 1fr ) auto;
	gap: 20px;
	align-items: end;
	padding-bottom: 24px;
	border-bottom: 1px solid var( --pn-line );
}
.psp-news-page .psp-news-head__title {
	margin: 12px 0 8px;
	color: var( --pn-ink );
	font: 800 clamp( 38px, 5vw, 56px ) / 1 var( --pn-display );
	letter-spacing: -0.01em;
}
.psp-news-head__sub {
	max-width: 58ch;
	margin: 0;
	color: var( --pn-mute );
	font: 400 16.5px/1.5 'PT Sans', system-ui, sans-serif;
}
.psp-news-stats {
	display: flex;
	gap: 10px;
}
.psp-news-stat {
	min-width: 132px;
	padding: 12px 16px;
	border: 1px solid var( --pn-line );
	border-radius: 14px;
	background: var( --pn-panel );
}
.psp-news-stat b {
	display: block;
	color: var( --pn-ink );
	font: 800 26px/1 var( --pn-display );
	font-variant-numeric: tabular-nums;
}
.psp-news-stat small {
	color: var( --pn-mute );
	font: 700 10px/1.3 var( --pn-mono );
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.psp-news-layout {
	display: grid;
	grid-template-columns: minmax( 0, 1fr ) 320px;
	gap: 28px;
	align-items: start;
}
.psp-news-feed {
	display: grid;
	gap: 30px;
	min-width: 0;
}

/* Lead card */
.psp-news-lead {
	overflow: hidden;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 22px 50px -24px rgba( 0, 0, 0, 0.55 );
	color: #13213b;
}
html[data-theme="light"] .psp-news-lead {
	border: 1px solid #dbe3ef;
	box-shadow: 0 18px 40px -26px rgba( 19, 33, 59, 0.35 );
}
.psp-news-lead__top {
	display: grid;
	grid-template-columns: minmax( 0, 1.05fr ) minmax( 0, 1fr );
	gap: 24px;
	padding: 22px;
}
.psp-news-lead__top--text {
	grid-template-columns: minmax( 0, 1fr );
}
.psp-news-lead__media {
	display: block;
	overflow: hidden;
	border-radius: 14px;
	aspect-ratio: 4 / 3;
}
.psp-news-lead__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.psp-news-lead:hover .psp-news-lead__media img {
	transform: scale( 1.03 );
}
.psp-news-lead .psp-news-edition__day {
	color: #5c6c89;
}
.psp-news-lead__title {
	margin: 12px 0 10px;
	font: 800 clamp( 22px, 2.4vw, 28px ) / 1.15 'Outfit', 'PT Sans', sans-serif;
	text-wrap: balance;
}
.psp-news-lead__title a {
	color: #13213b !important;
	text-decoration: none !important;
}
.psp-news-lead__title a:hover {
	color: #1e5087 !important;
}
.psp-news-lead__lede {
	margin: 0 0 14px;
	color: #2a3651;
	font-size: 15.5px;
	line-height: 1.55;
}
.psp-news-lead__meta,
.psp-news-row__count {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	color: #5c6c89;
	font: 700 11px/1.3 'JetBrains Mono', ui-monospace, monospace;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.psp-news-lead__meta span + span::before {
	content: "\00b7";
	margin-right: 14px;
	color: #b9c4d8;
}
.psp-news-lead .psp-news-btn {
	margin-top: 18px;
}
.psp-news-lead .psp-news-idx {
	margin: 0;
	padding: 16px 22px 18px;
	border: 0;
	border-top: 1px solid #e3e9f3;
	border-radius: 0;
}

/* Earlier briefings */
.psp-news-sec {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}
.psp-news-sec h2 {
	margin: 0;
	color: var( --pn-ink );
	font: 800 22px/1.1 var( --pn-display );
}
.psp-news-sec small {
	color: var( --pn-mute );
	font: 700 11px/1 var( --pn-mono );
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.psp-news-rows {
	display: grid;
	gap: 12px;
}
.psp-news-row {
	display: grid;
	grid-template-columns: 78px minmax( 0, 1fr ) 150px;
	gap: 18px;
	align-items: start;
	padding: 16px;
	border: 1px solid var( --pn-line );
	border-radius: 16px;
	background: var( --pn-panel );
	transition: transform 0.2s, border-color 0.2s;
}
.psp-news-row:hover {
	border-color: var( --pn-line2 );
	transform: translateY( -2px );
}
.psp-news-row__day {
	padding: 10px 4px;
	border-radius: 12px;
	background: var( --pn-panel2 );
	text-align: center;
}
.psp-news-row__day b {
	display: block;
	color: var( --pn-ink );
	font: 800 26px/1 var( --pn-display );
	font-variant-numeric: tabular-nums;
}
.psp-news-row__day small {
	color: var( --pn-mute );
	font: 700 10px/1.3 var( --pn-mono );
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.psp-news-row__title {
	margin: 0 0 8px;
	font: 700 17px/1.3 var( --pn-display );
	text-wrap: balance;
}
.psp-news-row__title a {
	color: var( --pn-ink ) !important;
	text-decoration: none !important;
}
.psp-news-row__title a:hover {
	color: #ffb020 !important;
}
html[data-theme="light"] .psp-news-row__title a:hover {
	color: #1e5087 !important;
}
.psp-news-row__heads {
	display: grid;
	gap: 3px;
	margin: 0 0 10px;
	padding: 0;
	color: var( --pn-mute );
	font-size: 14px;
	line-height: 1.45;
	list-style: none;
}
.psp-news-row__heads li::before {
	content: "\2014";
	margin-right: 8px;
	color: var( --pn-line2 );
}
.psp-news-row__count {
	color: var( --pn-gold );
}
.psp-news-row__media {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 4 / 3;
}
.psp-news-row__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.psp-news-pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

/* Empty state */
.psp-news-empty {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 46px 24px;
	border: 1px dashed var( --pn-line2 );
	border-radius: 20px;
	background: var( --pn-panel );
	text-align: center;
}
.psp-news-empty h2 {
	margin: 0;
	color: var( --pn-ink );
	font: 800 24px/1.2 var( --pn-display );
}
.psp-news-empty p {
	max-width: 46ch;
	margin: 0 0 8px;
	color: var( --pn-mute );
}

/* Sidebar */
.psp-news-aside {
	display: grid;
	gap: 18px;
	min-width: 0;
}
.psp-news-tg {
	padding: 18px;
	border: 1px solid var( --pn-line );
	border-radius: 16px;
	background: var( --pn-panel );
}
.psp-news-tg h2 {
	margin: 0 0 8px;
	color: var( --pn-ink );
	font: 800 17px/1.2 var( --pn-display );
}
.psp-news-tg p {
	margin: 0 0 14px;
	color: var( --pn-mute );
	font-size: 14px;
	line-height: 1.5;
}

@media ( max-width: 991px ) {
	.psp-news-layout {
		grid-template-columns: minmax( 0, 1fr );
	}
}
@media ( max-width: 700px ) {
	.psp-news-page__in {
		gap: 22px;
		padding: 18px 0 36px;
	}
	.psp-news-head {
		grid-template-columns: minmax( 0, 1fr );
	}
	.psp-news-stats {
		gap: 8px;
	}
	.psp-news-stat {
		flex: 1;
		min-width: 0;
		padding: 10px 12px;
	}
	.psp-news-stat b {
		font-size: 21px;
	}
	.psp-news-lead__top {
		grid-template-columns: minmax( 0, 1fr );
		gap: 14px;
		padding: 14px;
	}
	.psp-news-lead .psp-news-idx {
		padding: 12px 10px 14px;
	}
	.psp-news-row {
		grid-template-columns: 58px minmax( 0, 1fr );
		gap: 12px;
		padding: 12px;
	}
	.psp-news-row__media {
		display: none;
	}
	.psp-news-row__day b {
		font-size: 21px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.psp-news-live i {
		animation: none;
	}
	.psp-news-bar__in,
	.psp-news-row,
	.psp-news-btn,
	.psp-news-lead__media img {
		transition: none;
	}
	.psp-news-row:hover,
	.psp-news-btn:hover,
	.psp-news-lead:hover .psp-news-lead__media img {
		transform: none;
	}
}

/* ---------------------------------------------------------------------
 * Homepage "Cricket News" section (2026-09-26): psp_homepage_news_section()
 * reuses the "Latest predictions & analysis" grid and cards
 * (cricket-home-v2.css); only the news accents live here.
 * ------------------------------------------------------------------- */
.site-content-row > .psp-news-home {
	width: 100%;
	flex: 0 0 100%;
}
.cricket-latest.psp-news-home {
	padding-block: 72px 30px;
}
.cricket-story__flag.psp-news-home__flag {
	background: #e0323f;
	color: #ffffff;
	box-shadow: 0 6px 16px rgba( 224, 50, 63, 0.35 );
}
/* Headline cards (a story from the latest briefing, no image). */
.psp-news-home__story .cricket-story__body {
	position: relative;
	flex: 1 1 auto;
	justify-content: flex-start;
	padding: 18px 18px 18px 64px;
}
.psp-news-home__num {
	position: absolute;
	top: 16px;
	left: 18px;
	color: #e0323f;
	font: 800 26px/1 'Outfit', 'PT Sans', sans-serif;
	font-variant-numeric: tabular-nums;
}
.psp-news-home__story .cricket-story__title {
	font-size: 17px;
}
.psp-news-home__why {
	margin: 0;
	color: var( --psp-h-muted, #9aabc9 );
	font-size: 14px;
	line-height: 1.5;
}
html[data-theme="light"] .psp-news-home__why {
	color: #4c5872;
}
.psp-news-home__story .cricket-story__meta {
	margin-top: auto;
}
@media ( max-width: 640px ) {
	.cricket-latest.psp-news-home {
		padding-block: 48px 20px;
	}
	.psp-news-home .cricket-story.psp-news-home__story .cricket-story__body {
		padding: 14px 14px 14px 54px;
	}
	.psp-news-home__num {
		top: 14px;
		left: 14px;
		font-size: 22px;
	}
}
