/* =========================================================
   NEWS WEBSITE
   SINGLE ARTICLE / NEWS PAGE
   Clean Editorial UI
========================================================= */


/* =========================================================
   SINGLE PAGE
========================================================= */

.single-main {
	padding: 28px 0 60px;
	background: #f7f8fa;
}

.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
}

.single-article {
	min-width: 0;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.news-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;

	margin-bottom: 18px;
	padding: 9px 12px;

	border: 1px solid #e5e7eb;
	border-radius: 8px;

	background: #fff;

	color: #6b7280;

	font-size: 11px;
	line-height: 1.5;
}

.news-breadcrumb a {
	color: #2563eb;
	font-weight: 700;
	text-decoration: none;
}

.news-breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb-separator {
	color: #9ca3af;
}

.breadcrumb-current {
	max-width: 480px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.single-header {
	padding: 4px 0 20px;
}

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

	margin-bottom: 11px;
	padding: 5px 9px;

	border-radius: 5px;

	background: #eff6ff;
	color: #1d4ed8;

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

	line-height: 1;
	text-decoration: none;

	text-transform: uppercase;
	letter-spacing: .03em;
}

.news-category:hover {
	background: #dbeafe;
	color: #1e40af;
}


.single-header h1 {
	max-width: 1000px;

	margin: 0 0 14px;

	color: #111827;

	font-size: clamp(30px, 4vw, 48px);

	font-weight: 800;
	line-height: 1.12;

	letter-spacing: -.035em;

	text-wrap: balance;
}


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

.single-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;

	color: #6b7280;

	font-size: 11.5px;
	line-height: 1.5;
}

.single-meta a {
	color: #1d4ed8;
	font-weight: 700;
	text-decoration: none;
}

.single-meta a:hover {
	text-decoration: underline;
}

.meta-dot {
	color: #9ca3af;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.single-featured-wrap {
	margin: 0;
	padding: 0;
}

.single-featured {
	display: block;

	width: 100%;
	height: auto;

	aspect-ratio: 16 / 9;

	object-fit: cover;

	border-radius: 10px;

	background: #e5e7eb;

	box-shadow: 0 4px 18px rgba(15, 23, 42, .08);
}

.single-featured-wrap figcaption {
	margin-top: 7px;

	color: #6b7280;

	font-size: 10px;
	line-height: 1.5;

	text-align: center;
}

/* =========================================================
   ARTICLE SHARE BOX
========================================================= */

.news-share {
	width: 100%;
	margin: 24px 0;
	padding: 14px 16px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	box-sizing: border-box;

	border: 1px solid #e5e7eb;
	border-radius: 10px;

	background: #ffffff;

	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}


/* =========================================================
   LEFT - SHARE HEADER
========================================================= */

.share-header {
	flex: 1 1 auto;
	min-width: 0;

	margin: 0;
	padding: 0;
}

.share-title {
	margin: 0 0 2px;

	color: #111827;

	font-family: inherit;
	font-size: 15px;
	font-weight: 800;

	line-height: 1.35;
}

.share-subtitle {
	margin: 0;

	color: #6b7280;

	font-family: inherit;
	font-size: 11px;
	font-weight: 500;

	line-height: 1.4;
}


/* =========================================================
   RIGHT - SHARE BUTTONS
========================================================= */

.share-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;

	flex: 0 0 auto;

	gap: 7px;

	margin: 0;
	padding: 0;
}


/* =========================================================
   SHARE BUTTON
========================================================= */

.share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 36px;
	height: 36px;

	flex: 0 0 36px;

	padding: 0;

	box-sizing: border-box;

	border: 1px solid transparent;
	border-radius: 7px;

	background: #fff;

	text-decoration: none;

	cursor: pointer;

	transition:
		color 0.18s ease,
		background-color 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}


/* =========================================================
   SVG
========================================================= */

.share-icon {
	display: block;

	width: 17px;
	height: 17px;

	flex: 0 0 17px;

	fill: currentColor;

	pointer-events: none;
}


/* =========================================================
   WHATSAPP
========================================================= */

.share-whatsapp {
	color: #25d366;
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.share-whatsapp:hover {
	color: #fff;
	background: #25d366;
	border-color: #25d366;

	transform: translateY(-2px);

	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}


/* =========================================================
   FACEBOOK
========================================================= */

.share-facebook {
	color: #1877f2;
	background: #eff6ff;
	border-color: #bfdbfe;
}

.share-facebook:hover {
	color: #fff;
	background: #1877f2;
	border-color: #1877f2;

	transform: translateY(-2px);

	box-shadow: 0 4px 10px rgba(24, 119, 242, 0.25);
}


/* =========================================================
   X
========================================================= */

.share-x {
	color: #111827;
	background: #f9fafb;
	border-color: #d1d5db;
}

.share-x:hover {
	color: #fff;
	background: #000;
	border-color: #000;

	transform: translateY(-2px);

	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   TELEGRAM
========================================================= */

.share-telegram {
	color: #229ed9;
	background: #f0f9ff;
	border-color: #bae6fd;
}

.share-telegram:hover {
	color: #fff;
	background: #229ed9;
	border-color: #229ed9;

	transform: translateY(-2px);

	box-shadow: 0 4px 10px rgba(34, 158, 217, 0.25);
}


/* =========================================================
   LINKEDIN
========================================================= */

.share-linkedin {
	color: #0a66c2;
	background: #eff6ff;
	border-color: #bfdbfe;
}

.share-linkedin:hover {
	color: #fff;
	background: #0a66c2;
	border-color: #0a66c2;

	transform: translateY(-2px);

	box-shadow: 0 4px 10px rgba(10, 102, 194, 0.25);
}


/* =========================================================
   PINTEREST
========================================================= */

.share-pinterest {
	color: #e60023;
	background: #fff1f2;
	border-color: #fecdd3;
}

.share-pinterest:hover {
	color: #fff;
	background: #e60023;
	border-color: #e60023;

	transform: translateY(-2px);

	box-shadow: 0 4px 10px rgba(230, 0, 35, 0.25);
}


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

.share-button:focus-visible {
	outline: 3px solid rgba(59, 130, 246, 0.3);
	outline-offset: 2px;
}


/* =========================================================
   ACTIVE
========================================================= */

.share-button:active {
	transform: translateY(0);
	box-shadow: none;
}


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

@media (max-width: 600px) {

	.news-share {
		padding: 12px;

		gap: 12px;
	}

	.share-title {
		font-size: 14px;
	}

	.share-subtitle {
		font-size: 10px;
	}

	.share-buttons {
		gap: 5px;
	}

	.share-button {
		width: 32px;
		height: 32px;

		flex-basis: 32px;

		border-radius: 6px;
	}

	.share-icon {
		width: 15px;
		height: 15px;

		flex-basis: 15px;
	}
}


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

@media (max-width: 430px) {

	.news-share {
		padding: 11px;

		gap: 8px;
	}

	.share-title {
		font-size: 13px;
	}

	.share-subtitle {
		display: none;
	}

	.share-buttons {
		gap: 4px;
	}

	.share-button {
		width: 30px;
		height: 30px;

		flex-basis: 30px;
	}

	.share-icon {
		width: 14px;
		height: 14px;

		flex-basis: 14px;
	}
}

/* =========================================================
   ARTICLE CONTENT
========================================================= */

.news-content {
	margin-top: 24px;

	color: #1f2937;

	font-size: 17px;
	line-height: 1.85;

	overflow-wrap: break-word;
}

.news-content > * {
	max-width: 100%;
}

.news-content p {
	margin: 0 0 20px;
}

.news-content p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   CONTENT HEADINGS
========================================================= */

.news-content h2 {
	margin: 38px 0 15px;

	padding-bottom: 8px;

	border-bottom: 2px solid #e5e7eb;

	color: #111827;

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

	line-height: 1.3;
}

.news-content h3 {
	margin: 30px 0 12px;

	color: #111827;

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

	line-height: 1.35;
}

.news-content h4 {
	margin: 25px 0 10px;

	color: #111827;

	font-size: 19px;
	font-weight: 750;
}


/* =========================================================
   CONTENT LINKS
========================================================= */

.news-content a {
	color: #1d4ed8;

	font-weight: 650;

	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.news-content a:hover {
	color: #1e40af;
}


/* =========================================================
   LISTS
========================================================= */

.news-content ul,
.news-content ol {
	margin: 0 0 22px;
	padding-left: 26px;
}

.news-content li {
	margin-bottom: 8px;
}

.news-content li::marker {
	color: #2563eb;
	font-weight: 800;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.news-content blockquote {
	margin: 28px 0;

	padding: 16px 19px;

	border-left: 4px solid #2563eb;
	border-radius: 0 8px 8px 0;

	background: #f8fafc;

	color: #374151;

	font-size: 16px;
}

.news-content blockquote p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   CONTENT IMAGES
========================================================= */

.news-content img {
	display: block;

	max-width: 100%;
	height: auto;

	margin: 25px auto;

	border-radius: 8px;
}


/* =========================================================
   TABLE
========================================================= */

/* =========================================================
   WORDPRESS CONTENT TABLE
========================================================= */

.news-content table {
	width: 100%;
	max-width: 100%;
	margin: 25px 0;

	border-collapse: collapse;
	border-spacing: 0;

	table-layout: auto;

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

	background: #ffffff;

	/* Long words/content ko layout se bahar jaane se roke */
	overflow-wrap: anywhere;
	word-break: normal;
}

/* =========================================================
   TABLE CELLS
========================================================= */

.news-content th,
.news-content td {
	padding: 10px 12px;

	border: 1px solid #e5e7eb;

	text-align: left;
	vertical-align: middle;

	overflow-wrap: anywhere;
	word-wrap: break-word;

	min-width: 0;
}

/* =========================================================
   TABLE HEADER
========================================================= */

.news-content th {
	background: #f8fafc;
	color: #111827;

	font-weight: 800;
}

/* =========================================================
   TABLE BODY
========================================================= */

.news-content td {
	background: #ffffff;
	color: #374151;
}

/* Alternate rows */
.news-content tbody tr:nth-child(even) td {
	background: #fafafa;
}

/* Hover */
.news-content tbody tr:hover td {
	background: #f8fafc;
}

/* =========================================================
   LINKS INSIDE TABLE
========================================================= */

.news-content table a {
	max-width: 100%;

	color: #2563eb;
	text-decoration: underline;

	overflow-wrap: anywhere;
	word-break: break-word;
}

.news-content table a:hover {
	color: #1d4ed8;
}

/* =========================================================
   IMAGES INSIDE TABLE
========================================================= */

.news-content table img {
	display: block;

	max-width: 100%;
	height: auto;
}

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

@media (max-width: 767px) {

	.news-content table {
		width: 100%;
		max-width: 100%;

		margin: 20px 0;

		font-size: 13px;

		table-layout: fixed;
	}

	.news-content th,
	.news-content td {
		padding: 8px 9px;

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

		overflow-wrap: anywhere;
		word-break: break-word;
	}

}

/* =========================================================
   VIDEO / IFRAME
========================================================= */

.news-content iframe {
	display: block;

	width: 100%;
	max-width: 100%;

	margin: 25px auto;

	border: 0;
	border-radius: 8px;
}


/* =========================================================
   PAGE LINKS
========================================================= */

.news-page-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;

	margin-top: 28px;
	padding-top: 18px;

	border-top: 1px solid #e5e7eb;

	color: #6b7280;

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

.news-page-links > span:first-child {
	margin-right: 4px;
}

.news-page-links > span:not(:first-child),
.news-page-links > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 30px;
	height: 30px;

	padding: 0 9px;

	border: 1px solid #e5e7eb;
	border-radius: 6px;

	background: #fff;
	color: #374151;

	text-decoration: none;
}

.news-page-links > a:hover,
.news-page-links .post-page-numbers.current {
	border-color: #2563eb;
	background: #2563eb;
	color: #fff;
}


/* =========================================================
   TAGS
========================================================= */

.post-tags {
	margin-top: 30px;
	padding-top: 18px;

	border-top: 1px solid #e5e7eb;
}

.tags-label {
	display: block;

	margin-bottom: 9px;

	color: #374151;

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

.tag-links {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

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

	padding: 6px 10px;

	border: 1px solid #dbe2ea;
	border-radius: 999px;

	background: #fff;
	color: #374151;

	font-size: 10.5px;
	font-weight: 650;

	text-decoration: none;
}

.post-tags a:hover {
	border-color: #2563eb;
	background: #eff6ff;
	color: #1d4ed8;
}


/* =========================================================
   RELATED NEWS
========================================================= */

.related-posts {
	margin-top: 30px;
	padding: 20px;

	border: 1px solid #e5e7eb;
	border-radius: 10px;

	background: #fff;

	box-shadow: 0 3px 14px rgba(15, 23, 42, .035);
}

.section-heading {
	margin-bottom: 16px;
}

.section-kicker {
	display: block;

	margin-bottom: 3px;

	color: #2563eb;

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

	text-transform: uppercase;
	letter-spacing: .08em;
}

.section-heading h2 {
	margin: 0;

	color: #111827;

	font-size: 21px;
	font-weight: 800;
	line-height: 1.3;
}

.related-grid {
	display: grid;

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

	gap: 12px;
}

.related-card {
	display: flex;

	min-width: 0;
	overflow: hidden;

	border: 1px solid #e5e7eb;
	border-radius: 8px;

	background: #fff;

	transition:
		transform .18s ease,
		box-shadow .18s ease,
		border-color .18s ease;
}

.related-card:hover {
	transform: translateY(-2px);

	border-color: #bfdbfe;

	box-shadow: 0 7px 18px rgba(15, 23, 42, .07);
}

.related-image {
	flex: 0 0 115px;

	width: 115px;
	height: 82px;

	overflow: hidden;

	background: #f3f4f6;
}

.related-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform .25s ease;
}

.related-card:hover .related-image img {
	transform: scale(1.04);
}

.related-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;

	min-width: 0;

	padding: 9px 10px;
}

.related-category {
	display: block;

	margin-bottom: 4px;

	color: #2563eb;

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

	text-transform: uppercase;

	text-decoration: none;
}

.related-copy h3 {
	margin: 0 0 5px;

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

	line-height: 1.4;
}

.related-copy h3 a {
	display: -webkit-box;

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

	overflow: hidden;

	color: #111827;

	text-decoration: none;
}

.related-copy h3 a:hover {
	color: #2563eb;
}

.related-copy time {
	color: #6b7280;

	font-size: 9px;
}


/* =========================================================
   AUTHOR BOX
========================================================= */

.news-author-box {
	display: flex;
	align-items: flex-start;
	gap: 15px;

	margin-top: 28px;
	padding: 18px;

	border: 1px solid #e5e7eb;
	border-radius: 10px;

	background: #fff;
}

.author-avatar {
	flex: 0 0 80px;

	width: 80px;
	height: 80px;
}

.author-avatar-img {
	display: block;

	width: 80px;
	height: 80px;

	object-fit: cover;

	border-radius: 50%;

	border: 1px solid #e5e7eb;
}

.author-info {
	min-width: 0;
}

.author-label {
	display: block;

	margin-bottom: 3px;

	color: #2563eb;

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

	text-transform: uppercase;
	letter-spacing: .08em;
}

.author-info h2 {
	margin: 0 0 7px;

	font-size: 18px;
	line-height: 1.3;
}

.author-info h2 a {
	color: #111827;
	text-decoration: none;
}

.author-info h2 a:hover {
	color: #2563eb;
}

.author-info p {
	margin: 0 0 8px;

	color: #6b7280;

	font-size: 12px;
	line-height: 1.65;
}

.author-link {
	color: #2563eb;

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

	text-decoration: none;
}

.author-link:hover {
	text-decoration: underline;
}


/* =========================================================
   PREVIOUS / NEXT
========================================================= */

.post-nav {
	display: grid;

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

	gap: 12px;

	margin-top: 25px;
}

.post-nav-item {
	display: flex;
	align-items: center;
	gap: 12px;

	min-width: 0;

	padding: 12px;

	border: 1px solid #e5e7eb;
	border-radius: 8px;

	background: #fff;
	color: #111827;

	text-decoration: none;

	transition:
		transform .18s ease,
		border-color .18s ease,
		box-shadow .18s ease;
}

.post-nav-item:hover {
	transform: translateY(-2px);

	border-color: #bfdbfe;

	box-shadow: 0 6px 17px rgba(15, 23, 42, .06);
}

.post-nav-image {
	flex: 0 0 78px;

	width: 78px;
	height: 58px;

	overflow: hidden;

	border-radius: 6px;

	background: #f3f4f6;
}

.post-nav-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}

.post-nav-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	color: #2563eb;

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

.post-nav-content {
	display: flex;
	flex-direction: column;

	justify-content: center;

	min-width: 0;
	flex: 1;
}

.post-nav-label {
	display: flex;
	align-items: center;
	gap: 4px;

	margin-bottom: 4px;

	color: #2563eb;

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

	text-transform: uppercase;
	letter-spacing: .04em;
}

.post-nav-item strong {
	display: -webkit-box;

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

	overflow: hidden;

	font-size: 12px;
	line-height: 1.45;
}

.post-nav-item small {
	margin-top: 5px;

	color: #6b7280;

	font-size: 9px;
}

.next-post {
	text-align: right;
}

.next-post .post-nav-content {
	align-items: flex-end;
}

.next-post .post-nav-label {
	justify-content: flex-end;
}


/* =========================================================
   COMMENTS
========================================================= */

.news-comments-section {
	margin-top: 30px;
	padding-top: 25px;

	border-top: 1px solid #e5e7eb;
}

.news-comments-section .comments-title {
	margin: 0 0 17px;

	color: #111827;

	font-size: 21px;
}

.news-comments-section .comment-list {
	margin: 0;
	padding: 0;

	list-style: none;
}

.news-comments-section .comment {
	margin-bottom: 14px;
	padding: 14px;

	border: 1px solid #e5e7eb;
	border-radius: 8px;

	background: #fff;
}

.news-comments-section .comment-content {
	font-size: 14px;
	line-height: 1.7;
}

.news-comments-section .comment-meta {
	margin-bottom: 7px;

	color: #6b7280;

	font-size: 10px;
}

.news-comments-section textarea,
.news-comments-section input[type="text"],
.news-comments-section input[type="email"],
.news-comments-section input[type="url"] {
	width: 100%;
	box-sizing: border-box;

	padding: 10px 11px;

	border: 1px solid #d1d5db;
	border-radius: 7px;

	background: #fff;

	font-size: 13px;
}

.news-comments-section textarea:focus,
.news-comments-section input:focus {
	border-color: #2563eb;

	outline: none;

	box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}


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

.single-sidebar {
	display: grid;
	align-content: start;

	gap: 16px;

	min-width: 0;
}

.news-widget {
	padding: 16px;

	border: 1px solid #e5e7eb;
	border-radius: 9px;

	background: #fff;

	box-shadow: 0 3px 14px rgba(15, 23, 42, .035);
}

.news-widget h2 {
	margin: 0 0 12px;

	color: #111827;

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

	line-height: 1.3;
}


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

.single-sidebar .search-form {
	display: flex;
	gap: 6px;
	width: 100%;
}

.single-sidebar .search-form label {
	flex: 1;
	min-width: 0;
	margin: 0;
}

.single-sidebar .search-field {
	display: block;

	width: 100%;
	box-sizing: border-box;

	height: 38px;

	padding: 0 10px;

	border: 1px solid #d1d5db;
	border-radius: 7px;

	background: #fff;

	color: #111827;

	font-size: 11px;
}

.single-sidebar .search-field:focus {
	border-color: #2563eb;

	outline: none;

	box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.single-sidebar .search-submit {
	height: 38px;

	padding: 0 12px;

	border: 1px solid #2563eb;
	border-radius: 7px;

	background: #2563eb;
	color: #fff;

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

	cursor: pointer;
}

.single-sidebar .search-submit:hover {
	background: #1d4ed8;
	border-color: #1d4ed8;
}


/* =========================================================
   CATEGORY INTERNAL LINKS
========================================================= */

.sidebar-category-list {
	margin: 0;
	padding: 0;

	list-style: none;
}

.sidebar-category-list li + li {
	border-top: 1px solid #f0f1f3;
}

.sidebar-category-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;

	padding: 9px 2px;

	color: #374151;

	font-size: 11.5px;
	font-weight: 650;

	text-decoration: none;
}

.sidebar-category-list li a:hover {
	color: #2563eb;
}

.category-arrow {
	color: #9ca3af;
}


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

.popular-list {
	display: grid;
	gap: 10px;
}

.popular-item {
	display: flex;
	gap: 9px;

	min-width: 0;

	padding-bottom: 10px;

	border-bottom: 1px solid #f0f1f3;

	color: #111827;

	text-decoration: none;
}

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

.popular-item img {
	flex: 0 0 70px;

	width: 70px;
	height: 48px;

	object-fit: cover;

	border-radius: 6px;
}

.popular-item > span {
	display: flex;
	flex-direction: column;

	min-width: 0;
}

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

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

	overflow: hidden;

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

.popular-item small {
	margin-top: 3px;

	color: #6b7280;

	font-size: 9px;
}

.popular-item:hover strong {
	color: #2563eb;
}


/* =========================================================
   CATEGORY MORE LINK
========================================================= */

.category-more-link a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;

	color: #2563eb;

	font-size: 11px;
	font-weight: 750;

	text-decoration: none;
}

.category-more-link a:hover {
	text-decoration: underline;
}


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

.news-empty {
	margin: 0;
	padding: 12px;

	border-radius: 7px;

	background: #f8fafc;

	color: #6b7280;

	font-size: 11px;
	text-align: center;
}


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

@media (max-width: 1000px) {

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

		gap: 20px;
	}

	.single-header h1 {
		font-size: clamp(29px, 4.5vw, 41px);
	}

	.news-content {
		font-size: 16.5px;
	}

}


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

@media (max-width: 900px) {

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

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

}


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

@media (max-width: 650px) {

	.single-main {
		padding: 15px 0 40px;
	}

	.news-breadcrumb {
		margin-bottom: 13px;
		padding: 8px 10px;

		font-size: 9.5px;
	}

	.breadcrumb-current {
		max-width: 190px;
	}


	.single-header {
		padding: 4px 0 15px;
	}

	.news-category {
		margin-bottom: 8px;
		padding: 5px 8px;

		font-size: 8.5px;
	}

	.single-header h1 {
		margin-bottom: 10px;

		font-size: 28px;
		line-height: 1.17;
		letter-spacing: -.025em;
	}

	.single-meta {
		gap: 5px;
		font-size: 10px;
	}


	.single-featured {
		border-radius: 8px;
	}


	/* SHARE */

	.news-share {
		display: block;

		margin: 17px 0 20px;
		padding: 11px 0;
	}

	.share-label {
		display: block;
		margin-bottom: 8px;
	}

	.share-buttons {
		gap: 5px;
	}

	.share-button {
		min-height: 30px;
		padding: 0 8px;

		font-size: 9px;
	}

	.share-text {
		display: none;
	}


	/* CONTENT */

	.news-content {
		margin-top: 19px;

		font-size: 16px;
		line-height: 1.78;
	}

	.news-content h2 {
		margin-top: 30px;
		font-size: 23px;
	}

	.news-content h3 {
		margin-top: 25px;
		font-size: 20px;
	}

	.news-content blockquote {
		padding: 14px;
		font-size: 15px;
	}

 

	/* RELATED */

	.related-posts {
		margin-top: 24px;
		padding: 14px;
		border-radius: 8px;
	}

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

	.related-grid {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.related-image {
		flex-basis: 105px;
		width: 105px;
		height: 76px;
	}


	/* AUTHOR */

	.news-author-box {
		gap: 12px;

		margin-top: 23px;
		padding: 14px;

		border-radius: 8px;
	}

	.author-avatar {
		flex-basis: 62px;

		width: 62px;
		height: 62px;
	}

	.author-avatar-img {
		width: 62px;
		height: 62px;
	}

	.author-info h2 {
		font-size: 16px;
	}

	.author-info p {
		font-size: 11px;
	}


	/* PREVIOUS / NEXT */

	.post-nav {
		grid-template-columns: 1fr;
		margin-top: 20px;
	}

	.post-nav-item {
		padding: 11px;
		gap: 10px;
	}

	.post-nav-image {
		flex-basis: 70px;
		width: 70px;
		height: 53px;
	}

	.post-nav-item strong {
		font-size: 11.5px;
	}

	.next-post {
		text-align: left;
	}

	.next-post .post-nav-content {
		align-items: flex-start;
	}

	.next-post .post-nav-label {
		justify-content: flex-start;
	}


	/* SIDEBAR */

	.single-sidebar {
		grid-template-columns: 1fr;
	}

}


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

@media (max-width: 420px) {

	.single-header h1 {
		font-size: 25px;
	}

	.single-meta {
		font-size: 9.5px;
	}

	.news-content {
		font-size: 15.5px;
		line-height: 1.76;
	}

	.related-image {
		flex-basis: 95px;
		width: 95px;
		height: 70px;
	}

	.related-copy h3 {
		font-size: 12px;
	}

	.news-author-box {
		padding: 12px;
	}

	.post-nav-item {
		padding: 10px;
	}

	.post-nav-image {
		flex-basis: 62px;
		width: 62px;
		height: 48px;
	}

}


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

.news-breadcrumb a:focus-visible,
.news-category:focus-visible,
.news-content a:focus-visible,
.post-tags a:focus-visible,
.related-card a:focus-visible,
.author-link:focus-visible,
.post-nav-item:focus-visible,
.popular-item:focus-visible,
.share-button:focus-visible,
.single-sidebar .search-field:focus-visible,
.single-sidebar .search-submit:focus-visible,
.news-page-links a:focus-visible {

	outline: 2px solid #2563eb;
	outline-offset: 3px;
}


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

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}

}
