html.light-mode .kol-blog-discover-hero,
html.dark-mode .kol-blog-discover-hero {
	position: relative;
	grid-column: 1 / -1;
	flex: 0 0 100%;
	flex-basis: 100%;
	width: 100%;
	min-width: 0;
	margin: 3px 0 5px 0;
	border-radius: 8px;
	overflow: hidden;
	color: #ffffff;
	background: #07120f;
	box-sizing: border-box;
}

.kol-blog-discover-hero,
.kol-blog-discover-hero * {
	box-sizing: border-box;
}

.kol-blog-discover-hero__slides {
	position: relative;
	min-height: 340px;
}

.kol-blog-discover-hero__slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
	align-items: center;
	gap: 22px;
	min-height: 340px;
	padding: 34px 48px 44px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease;
}

.kol-blog-discover-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.kol-blog-discover-hero__slide--one {
	background:
		radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.25), transparent 29%),
		linear-gradient(112deg, #041615 0%, #0c4330 54%, #a06f19 100%);
}

.kol-blog-discover-hero__slide--two {
	background:
		radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.2), transparent 30%),
		linear-gradient(112deg, #0a1022 0%, #243d74 51%, #8f3154 100%);
}

.kol-blog-discover-hero__slide--three {
	background:
		radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.22), transparent 30%),
		linear-gradient(112deg, #16100a 0%, #5c3721 50%, #0b5f68 100%);
}

.kol-blog-discover-hero__slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.18), transparent 34%);
	pointer-events: none;
}

.kol-blog-discover-hero__copy,
.kol-blog-discover-hero__authors,
.kol-blog-discover-hero__dots {
	position: relative;
	z-index: 2;
}

.kol-blog-discover-hero__copy {
	max-width: 610px;
	min-width: 0;
}

.kol-blog-discover-hero__eyebrow {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
}

.kol-blog-discover-hero__title {
	max-width: 640px;
	margin: 0 0 18px;
	font-size: 58px;
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
	color: #ffffff;
	overflow-wrap: anywhere;
}

.kol-blog-discover-hero__slide--two .kol-blog-discover-hero__title {
	font-size: 52px;
}

.kol-blog-discover-hero__body {
	max-width: 560px;
	margin: 0 0 24px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.28;
	color: rgba(255, 255, 255, 0.94);
}

.kol-blog-discover-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 7px;
	background: #ffffff;
	color: #06110f;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.kol-blog-discover-hero__button:hover,
.kol-blog-discover-hero__button:focus {
	color: #06110f;
	text-decoration: none;
	transform: translateY(-1px);
}

.kol-blog-discover-hero__authors {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 250px;
	padding: 12px 6px 28px;
}

.kol-blog-discover-hero__author {
	position: relative;
	width: 178px;
	margin: 0;
	text-align: center;
	transition: transform 180ms ease;
	z-index: 2;
}

.kol-blog-discover-hero__author--1 {
	transform: translate(28px, 28px) rotate(-5deg);
	z-index: 2;
}

.kol-blog-discover-hero__author--2 {
	width: 208px;
	transform: translateY(-8px);
	z-index: 3;
}

.kol-blog-discover-hero__author--3 {
	transform: translate(-28px, 34px) rotate(5deg);
	z-index: 1;
}

.kol-blog-discover-hero__author--1:hover,
.kol-blog-discover-hero__author--1:focus-within {
	transform: translate(28px, 16px) rotate(-5deg) scale(1.08);
	z-index: 5;
}

.kol-blog-discover-hero__author--2:hover,
.kol-blog-discover-hero__author--2:focus-within {
	transform: translateY(-20px) scale(1.08);
	z-index: 5;
}

.kol-blog-discover-hero__author--3:hover,
.kol-blog-discover-hero__author--3:focus-within {
	transform: translate(-28px, 22px) rotate(5deg) scale(1.08);
	z-index: 5;
}

.kol-blog-discover-hero__author-link {
	display: block;
	color: #ffffff;
	text-decoration: none;
}

.kol-blog-discover-hero__author-link:hover,
.kol-blog-discover-hero__author-link:focus {
	color: #ffffff;
	text-decoration: none;
}

.kol-blog-discover-hero__author img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border: 5px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	object-fit: cover;
	background: #080808;
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.kol-blog-discover-hero__author figcaption {
	display: block;
	max-width: 100%;
	margin-top: 9px;
	padding: 0 4px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.15;
	color: #ffffff;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.kol-blog-discover-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 20px;
	display: flex;
	gap: 12px;
	transform: translateX(-50%);
}

.kol-blog-discover-hero__dot {
	width: 16px;
	height: 16px;
	padding: 0;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.kol-blog-discover-hero__dot.is-active {
	background: #ffffff;
}

html.light-mode .kol-blog-discover,
html.dark-mode .kol-blog-discover {
	padding: 30px;
	border-radius: 8px;
	box-sizing: border-box;
}

html.light-mode .kol-blog-discover {
	background: #ffffff;
	color: #1f2937;
	border: 1px solid #e5e7eb;
}

html.dark-mode .kol-blog-discover {
	background: #1a1a1a;
	color: #e0e0e0;
	border: 1px solid #333333;
}

html.light-mode .kol-blog-discover-header,
html.dark-mode .kol-blog-discover-header {
	margin-bottom: 30px;
}

html.light-mode .kol-blog-discover-header h2,
html.dark-mode .kol-blog-discover-header h2 {
	margin: 0 0 8px 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.25;
}

html.light-mode .kol-blog-discover-header p {
	color: #6b7280;
	margin: 0;
}

html.dark-mode .kol-blog-discover-header p {
	color: #9ca3af;
	margin: 0;
}

html.light-mode .kol-blog-discover-tabs,
html.dark-mode .kol-blog-discover-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	border-bottom: 1px solid;
	margin-bottom: 16px;
	padding-bottom: 12px;
}

html.light-mode .kol-blog-discover-tabs {
	border-bottom-color: #e5e7eb;
}

html.dark-mode .kol-blog-discover-tabs {
	border-bottom-color: #333333;
}

html.light-mode .kol-discover-tab-description,
html.dark-mode .kol-discover-tab-description {
	margin: 0 0 20px 0;
	font-size: 14px;
	min-height: 20px;
}

html.light-mode .kol-discover-tab-description {
	color: #6b7280;
}

html.dark-mode .kol-discover-tab-description {
	color: #9ca3af;
}

html.light-mode .kol-discover-tab-btn,
html.dark-mode .kol-discover-tab-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 32px;
	padding: 0 15px;
	border-width: 1px;
	border-style: solid;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: none;
	box-sizing: border-box;
}

html.light-mode .kol-discover-tab-btn {
	background: linear-gradient(to bottom, #e2e2e2, #d4d4d4);
	border-top-color: #f0f0f0;
	border-left-color: #f0f0f0;
	border-right-color: #b0b0b0;
	border-bottom-color: #b0b0b0;
	color: #2d2d2d;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

html.dark-mode .kol-discover-tab-btn {
	background: linear-gradient(to bottom, #383838, #343434);
	border-top-color: #555555;
	border-left-color: #555555;
	border-right-color: #282828;
	border-bottom-color: #282828;
	color: white;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.35);
}

html.light-mode .kol-discover-tab-btn.active,
html.dark-mode .kol-discover-tab-btn.active {
	background: linear-gradient(to bottom, #ccfff6, #99ffe8);
	border: 2px solid #00cc99;
	color: #007755;
	box-shadow: 0 0 0 3px rgba(0, 204, 153, 0.15), 0 4px 8px rgba(0, 204, 153, 0.2);
}

html.light-mode .kol-discover-tab-btn:hover,
html.dark-mode .kol-discover-tab-btn:hover {
	transform: none;
	text-decoration: none;
}

html.light-mode .kol-discover-tab-content,
html.dark-mode .kol-discover-tab-content {
	display: none;
}

html.light-mode .kol-discover-tab-content.active,
html.dark-mode .kol-discover-tab-content.active {
	display: block;
}

html.light-mode .kol-discover-posts,
html.dark-mode .kol-discover-posts {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

html.light-mode .kol-discover-post-card,
html.dark-mode .kol-discover-post-card {
	display: flex;
	gap: 20px;
	padding: 20px;
	border: 1px solid;
	border-radius: 8px;
	box-sizing: border-box;
}

html.light-mode .kol-discover-post-card {
	background: #f9fafb;
	border-color: #e5e7eb;
}

html.dark-mode .kol-discover-post-card {
	background: #2a2a2a;
	border-color: #333333;
}

html.light-mode .kol-discover-post-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

html.dark-mode .kol-discover-post-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

html.light-mode .kol-discover-post-content,
html.dark-mode .kol-discover-post-content {
	flex: 1;
	min-width: 0;
}

html.light-mode .kol-discover-post-content h3,
html.dark-mode .kol-discover-post-content h3 {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

html.light-mode .kol-discover-post-content h3 a,
html.dark-mode .kol-discover-post-content h3 a {
	color: inherit;
	text-decoration: none;
}

html.light-mode .kol-discover-post-content h3 a:hover,
html.dark-mode .kol-discover-post-content h3 a:hover {
	text-decoration: underline;
}

html.light-mode .kol-discover-post-meta,
html.dark-mode .kol-discover-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 12px;
}

html.light-mode .kol-discover-post-meta {
	color: #6b7280;
}

html.dark-mode .kol-discover-post-meta {
	color: #9ca3af;
}

html.light-mode .kol-discover-post-meta a,
html.dark-mode .kol-discover-post-meta a {
	color: inherit;
	text-decoration: none;
	font-weight: 500;
}

html.light-mode .kol-discover-post-meta a:hover,
html.dark-mode .kol-discover-post-meta a:hover {
	text-decoration: underline;
}

html.light-mode .kol-discover-domain::before,
html.dark-mode .kol-discover-domain::before,
html.light-mode .kol-discover-date::before,
html.dark-mode .kol-discover-date::before {
	content: ' - ';
}

html.light-mode .kol-discover-excerpt,
html.dark-mode .kol-discover-excerpt {
	margin: 0 0 12px 0;
	line-height: 1.5;
	font-size: 14px;
}

html.light-mode .kol-discover-excerpt {
	color: #4b5563;
}

html.dark-mode .kol-discover-excerpt {
	color: #b8bcc5;
}

html.light-mode .kol-discover-post-actions,
html.dark-mode .kol-discover-post-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

html.light-mode .kol-discover-like-btn,
html.light-mode .kol-discover-comment-btn,
html.light-mode .kol-discover-star-btn,
html.dark-mode .kol-discover-like-btn,
html.dark-mode .kol-discover-comment-btn,
html.dark-mode .kol-discover-star-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 32px;
	padding: 0 15px;
	border-width: 1px;
	border-style: solid;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: none;
	box-sizing: border-box;
}

html.light-mode .kol-discover-like-btn,
html.light-mode .kol-discover-comment-btn,
html.light-mode .kol-discover-star-btn {
	background: linear-gradient(to bottom, #e2e2e2, #d4d4d4);
	border-top-color: #f0f0f0;
	border-left-color: #f0f0f0;
	border-right-color: #b0b0b0;
	border-bottom-color: #b0b0b0;
	color: #2d2d2d;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

html.dark-mode .kol-discover-like-btn,
html.dark-mode .kol-discover-comment-btn,
html.dark-mode .kol-discover-star-btn {
	background: linear-gradient(to bottom, #383838, #343434);
	border-top-color: #555555;
	border-left-color: #555555;
	border-right-color: #282828;
	border-bottom-color: #282828;
	color: white;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.35);
}

html.light-mode .kol-discover-like-btn:hover,
html.light-mode .kol-discover-comment-btn:hover,
html.light-mode .kol-discover-star-btn:hover,
html.dark-mode .kol-discover-like-btn:hover,
html.dark-mode .kol-discover-comment-btn:hover,
html.dark-mode .kol-discover-star-btn:hover {
	transform: none;
	text-decoration: none;
}

html.light-mode .kol-discover-like-btn i,
html.light-mode .kol-discover-comment-btn i,
html.light-mode .kol-discover-star-btn i,
html.dark-mode .kol-discover-like-btn i,
html.dark-mode .kol-discover-comment-btn i,
html.dark-mode .kol-discover-star-btn i {
	width: 14px;
	height: 14px;
}

html.light-mode .kol-discover-like-btn.active i,
html.dark-mode .kol-discover-like-btn.active i {
	color: #dc2626;
}

html.light-mode .kol-discover-star-btn.active i,
html.dark-mode .kol-discover-star-btn.active i {
	color: #f59e0b;
}

html.light-mode .kol-discover-like-btn span,
html.light-mode .kol-discover-comment-btn span,
html.light-mode .kol-discover-star-btn span,
html.dark-mode .kol-discover-like-btn span,
html.dark-mode .kol-discover-comment-btn span,
html.dark-mode .kol-discover-star-btn span {
	display: inline-block;
	min-width: 20px;
	text-align: center;
}

html.light-mode .kol-discover-post-image,
html.dark-mode .kol-discover-post-image {
	width: 200px;
	height: 150px;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
}

html.light-mode .kol-discover-post-image img,
html.dark-mode .kol-discover-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

html.light-mode .kol-blog-no-posts,
html.dark-mode .kol-blog-no-posts {
	text-align: center;
	padding: 40px 20px;
}

html.light-mode .kol-blog-no-posts {
	color: #6b7280;
}

html.dark-mode .kol-blog-no-posts {
	color: #9ca3af;
}

@media (max-width: 768px) {
	html.light-mode .kol-blog-discover-hero,
	html.dark-mode .kol-blog-discover-hero {
		margin-top: 3px;
		margin-bottom: 18px;
	}

	.kol-blog-discover-hero__slides {
		min-height: 430px;
	}

	.kol-blog-discover-hero__slide {
		grid-template-columns: 1fr;
		align-content: start;
		gap: 12px;
		min-height: 430px;
		padding: 22px 18px 48px;
	}

	.kol-blog-discover-hero__copy {
		max-width: 100%;
	}

	.kol-blog-discover-hero__eyebrow {
		margin-bottom: 8px;
		font-size: 12px;
	}

	.kol-blog-discover-hero__title {
		max-width: 100%;
		margin-bottom: 10px;
		font-size: 34px;
		line-height: 1;
	}

	.kol-blog-discover-hero__slide--two .kol-blog-discover-hero__title {
		font-size: 27px;
		line-height: 1.04;
	}

	.kol-blog-discover-hero__body {
		max-width: 100%;
		margin-bottom: 14px;
		font-size: 15px;
		line-height: 1.28;
	}

	.kol-blog-discover-hero__button {
		min-height: 38px;
		padding: 0 16px;
		font-size: 14px;
	}

	.kol-blog-discover-hero__authors {
		min-height: 150px;
		padding: 0 0 18px;
	}

	.kol-blog-discover-hero__author {
		width: 104px;
	}

	.kol-blog-discover-hero__author--1 {
		transform: translate(18px, 14px) rotate(-5deg);
	}

	.kol-blog-discover-hero__author--2 {
		width: 122px;
		transform: translateY(-2px);
	}

	.kol-blog-discover-hero__author--3 {
		transform: translate(-18px, 16px) rotate(5deg);
	}

	.kol-blog-discover-hero__author--1:hover,
	.kol-blog-discover-hero__author--1:focus-within {
		transform: translate(18px, 6px) rotate(-5deg) scale(1.06);
	}

	.kol-blog-discover-hero__author--2:hover,
	.kol-blog-discover-hero__author--2:focus-within {
		transform: translateY(-10px) scale(1.06);
	}

	.kol-blog-discover-hero__author--3:hover,
	.kol-blog-discover-hero__author--3:focus-within {
		transform: translate(-18px, 8px) rotate(5deg) scale(1.06);
	}

	.kol-blog-discover-hero__author img {
		border-width: 4px;
	}

	.kol-blog-discover-hero__author figcaption {
		font-size: 12px;
	}

	.kol-blog-discover-hero__dots {
		bottom: 16px;
	}

	html.light-mode .kol-discover-post-card,
	html.dark-mode .kol-discover-post-card {
		flex-direction: column;
	}

	html.light-mode .kol-discover-post-image,
	html.dark-mode .kol-discover-post-image {
		width: 100%;
		height: 250px;
	}
}

@media (max-width: 420px) {
	.kol-blog-discover-hero__slides,
	.kol-blog-discover-hero__slide {
		min-height: 405px;
	}

	.kol-blog-discover-hero__slide {
		padding: 18px 14px 44px;
	}

	.kol-blog-discover-hero__title {
		font-size: 29px;
	}

	.kol-blog-discover-hero__slide--two .kol-blog-discover-hero__title {
		font-size: 24px;
	}

	.kol-blog-discover-hero__body {
		font-size: 14px;
	}

	.kol-blog-discover-hero__author {
		width: 88px;
	}

	.kol-blog-discover-hero__author--2 {
		width: 104px;
	}
}

html.light-mode .kol-blog-discover--news,
html.dark-mode .kol-blog-discover--news {
	border: 0;
	border-radius: 0;
	font-family: Georgia, 'Times New Roman', serif;
	padding: 0 0 36px;
}

html.light-mode .kol-blog-discover--news {
	background: #ffffff;
	color: #111111;
}

html.dark-mode .kol-blog-discover--news {
	background: #101214;
	color: #f4f4f4;
}

.kol-discover-hero-categories {
	align-items: center;
	display: flex;
	flex: 0 0 100%;
	flex-wrap: nowrap;
	gap: 16px;
	grid-column: 1 / -1;
	margin: 0 0 5px;
	overflow: hidden;
	padding: 0 4px;
	text-overflow: clip;
	width: 100%;
	white-space: nowrap;
	box-sizing: border-box;
}

.kol-discover-hero-categories span,
.kol-discover-hero-categories__scroller a {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 16px;
	line-height: 1.2;
	text-decoration: none;
}

.kol-discover-hero-categories span {
	color: #0b5f94;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.kol-discover-hero-categories__scroller {
	display: flex;
	flex: 1 1 auto;
	gap: 17px;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.kol-discover-hero-categories__scroller::-webkit-scrollbar {
	display: none;
}

.kol-discover-hero-categories__scroller a {
	color: inherit;
	flex: 0 0 auto;
	font-weight: 700;
}

.kol-discover-hero-categories__scroller a:hover,
.kol-discover-hero-categories__scroller a:focus {
	color: #0b5f94;
	text-decoration: none;
}

.kol-discover-news-masthead {
	align-items: end;
	border-bottom: 2px solid currentColor;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 12px;
	padding: 18px 0 12px;
}

.kol-discover-news-masthead__eyebrow {
	color: #0b5f94;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 900;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.kol-discover-news-masthead h2 {
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	font-size: 58px;
	font-weight: 900;
	line-height: 0.9;
	margin: 0;
	text-transform: uppercase;
}

.kol-discover-news-masthead > p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 4px;
	text-align: right;
}

.kol-discover-category-strip {
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.22);
	display: flex;
	gap: 22px;
	margin: 0 0 28px;
	overflow-x: auto;
	padding: 11px 0 12px;
	white-space: nowrap;
}

html.dark-mode .kol-discover-category-strip {
	border-bottom-color: rgba(255, 255, 255, 0.22);
}

.kol-discover-category-strip span,
.kol-discover-category-strip a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.kol-discover-category-strip span {
	color: #0b5f94;
	text-transform: uppercase;
}

.kol-discover-category-strip a {
	color: inherit;
}

.kol-discover-top-story {
	border-bottom: 3px double rgba(0, 0, 0, 0.35);
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
	margin: 0 0 34px;
	padding-bottom: 30px;
}

html.dark-mode .kol-discover-top-story {
	border-bottom-color: rgba(255, 255, 255, 0.35);
}

.kol-discover-top-story__rail {
	border-left: 1px solid rgba(0, 0, 0, 0.18);
	padding-left: 24px;
}

html.dark-mode .kol-discover-top-story__rail {
	border-left-color: rgba(255, 255, 255, 0.22);
}

.kol-discover-top-story__rail > h2 {
	border-bottom: 2px solid #0b5f94;
	color: #5c4a3a;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 14px;
	text-transform: uppercase;
}

html.dark-mode .kol-discover-top-story__rail > h2 {
	color: #ddd2c7;
}

.kol-discover-news-section {
	border-top: 1px solid rgba(0, 0, 0, 0.28);
	margin-top: 30px;
	padding-top: 20px;
}

html.dark-mode .kol-discover-news-section {
	border-top-color: rgba(255, 255, 255, 0.28);
}

.kol-discover-news-section__header {
	align-items: baseline;
	display: grid;
	gap: 14px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	margin-bottom: 18px;
}

.kol-discover-news-section__header p {
	color: #0b5f94;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 900;
	margin: 0;
}

.kol-discover-news-section__header h2 {
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 0.95;
	margin: 0;
	text-transform: uppercase;
}

.kol-discover-news-section__header a {
	color: #0b5f94;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.kol-discover-news-section__grid {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.75fr));
}

.kol-discover-news-card {
	min-width: 0;
}

.kol-discover-news-card__image {
	background: #e5e7eb;
	display: block;
	margin-bottom: 12px;
	overflow: hidden;
	width: 100%;
}

.kol-discover-news-card__image img {
	aspect-ratio: 16 / 10;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.kol-discover-news-card__kicker {
	color: #0b5f94;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 900;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.kol-discover-news-card h3 {
	color: inherit;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.05;
	margin: 0 0 8px;
}

.kol-discover-news-card h3 a {
	color: inherit;
	text-decoration: none;
}

.kol-discover-news-card h3 a:hover,
.kol-discover-news-card h3 a:focus {
	color: #0b5f94;
	text-decoration: none;
}

.kol-discover-news-card p {
	color: inherit;
	font-size: 16px;
	line-height: 1.35;
	margin: 0 0 10px;
}

.kol-discover-news-card__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
	opacity: 0.78;
}

.kol-discover-news-card__meta a {
	color: inherit;
	text-decoration: none;
}

.kol-discover-news-card--lead h3 {
	font-size: 42px;
	line-height: 0.98;
}

.kol-discover-news-card--lead p {
	font-size: 19px;
	line-height: 1.35;
	max-width: 720px;
}

.kol-discover-news-card--feature {
	border-right: 1px solid rgba(0, 0, 0, 0.18);
	padding-right: 22px;
}

html.dark-mode .kol-discover-news-card--feature {
	border-right-color: rgba(255, 255, 255, 0.22);
}

.kol-discover-news-card--feature h3 {
	font-size: 30px;
	line-height: 1;
}

.kol-discover-news-card--headline {
	border-bottom: 1px solid rgba(0, 0, 0, 0.16);
	margin-bottom: 14px;
	padding: 0 0 14px;
}

html.dark-mode .kol-discover-news-card--headline {
	border-bottom-color: rgba(255, 255, 255, 0.2);
}

.kol-discover-news-card--headline .kol-discover-news-card__image,
.kol-discover-news-card--headline .kol-discover-news-card__kicker,
.kol-discover-news-card--headline p {
	display: none;
}

.kol-discover-news-card--headline h3 {
	font-size: 20px;
	line-height: 1.12;
}

.kol-discover-news-card--compact {
	border-left: 1px solid rgba(0, 0, 0, 0.14);
	padding-left: 18px;
}

html.dark-mode .kol-discover-news-card--compact {
	border-left-color: rgba(255, 255, 255, 0.2);
}

.kol-discover-news-card--compact h3 {
	font-size: 20px;
	line-height: 1.08;
}

.kol-discover-news-card--compact p {
	font-size: 14px;
}

@media (max-width: 900px) {
	.kol-discover-top-story,
	.kol-discover-news-section__grid {
		grid-template-columns: 1fr;
	}

	.kol-discover-top-story__rail,
	.kol-discover-news-card--feature,
	.kol-discover-news-card--compact {
		border-left: 0;
		border-right: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.kol-discover-news-card--compact {
		border-top: 1px solid rgba(0, 0, 0, 0.14);
		padding-top: 16px;
	}

	html.dark-mode .kol-discover-news-card--compact {
		border-top-color: rgba(255, 255, 255, 0.2);
	}
}

@media (max-width: 640px) {
	.kol-discover-news-masthead {
		align-items: start;
		flex-direction: column;
	}

	.kol-discover-news-masthead h2 {
		font-size: 42px;
	}

	.kol-discover-news-masthead > p {
		text-align: left;
	}

	.kol-discover-news-card--lead h3,
	.kol-discover-news-section__header h2 {
		font-size: 32px;
	}

	.kol-discover-news-section__header {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.kol-discover-news-section__header a {
		grid-column: 2;
	}
}

.kol-category-archive {
	background: #ffffff;
	color: #111111;
	font-family: Georgia, 'Times New Roman', serif;
	padding: 0 0 34px;
}

html.dark-mode .kol-category-archive {
	background: #101214;
	color: #f4f4f4;
}

.kol-category-archive-masthead {
	border-bottom: 3px solid currentColor;
	margin-bottom: 22px;
	padding-bottom: 14px;
}

.kol-category-archive-masthead__eyebrow {
	color: #0b5f94;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 900;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.kol-category-archive-masthead h1 {
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	font-size: 58px;
	font-weight: 900;
	line-height: 0.92;
	margin: 0;
	text-transform: uppercase;
}

.kol-category-archive-masthead p:last-child {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	margin: 10px 0 0;
	max-width: 780px;
}

.kol-category-archive-lead {
	border-bottom: 3px double rgba(0, 0, 0, 0.32);
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
	margin-bottom: 28px;
	padding-bottom: 26px;
}

html.dark-mode .kol-category-archive-lead {
	border-bottom-color: rgba(255, 255, 255, 0.32);
}

.kol-category-archive-lead__main .kol-category-archive-card h2 {
	font-size: 40px;
	line-height: 0.98;
}

.kol-category-archive-lead__rail {
	border-left: 1px solid rgba(0, 0, 0, 0.18);
	padding-left: 22px;
}

html.dark-mode .kol-category-archive-lead__rail {
	border-left-color: rgba(255, 255, 255, 0.22);
}

.kol-category-archive-lead__rail h2 {
	border-bottom: 2px solid #0b5f94;
	color: #5c4a3a;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 14px;
	text-transform: uppercase;
}

html.dark-mode .kol-category-archive-lead__rail h2 {
	color: #ddd2c7;
}

.kol-category-archive-lead__rail .kol-category-archive-card {
	padding-bottom: 14px;
}

.kol-category-archive-lead__rail .kol-category-archive-card__image,
.kol-category-archive-lead__rail .kol-category-archive-card__body > p:not(.kol-category-archive-card__kicker) {
	display: none;
}

.kol-category-archive-lead__rail .kol-category-archive-card h2 {
	border-bottom: 0;
	color: inherit;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 8px;
	text-transform: none;
}

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

.kol-category-archive-card {
	border-top: 1px solid rgba(0, 0, 0, 0.18);
	min-width: 0;
	padding-top: 14px;
}

html.dark-mode .kol-category-archive-card {
	border-top-color: rgba(255, 255, 255, 0.22);
}

.kol-category-archive-card__image {
	background: #e5e7eb;
	display: block;
	margin-bottom: 12px;
	overflow: hidden;
	width: 100%;
}

.kol-category-archive-card__image img {
	aspect-ratio: 16 / 10;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.kol-category-archive-card__kicker {
	color: #0b5f94;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 900;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.kol-category-archive-card h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.06;
	margin: 0 0 9px;
}

.kol-category-archive-card h2 a {
	color: inherit;
	text-decoration: none;
}

.kol-category-archive-card h2 a:hover,
.kol-category-archive-card h2 a:focus {
	color: #0b5f94;
	text-decoration: none;
}

.kol-category-archive-card__body > p:not(.kol-category-archive-card__kicker) {
	font-size: 15px;
	line-height: 1.35;
	margin: 0 0 10px;
}

.kol-category-archive-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
	opacity: 0.78;
}

.kol-category-archive-load {
	display: flex;
	justify-content: center;
	padding-top: 28px;
}

.kol-category-archive-load-more {
	background: #0b5f94;
	border: 0;
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 900;
	min-height: 42px;
	padding: 0 22px;
}

.kol-category-archive-load-more:disabled {
	cursor: default;
	opacity: 0.62;
}

.kol-category-archive-empty {
	border: 1px dashed rgba(0, 0, 0, 0.24);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	padding: 24px;
}

html.dark-mode .kol-category-archive-empty {
	border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 900px) {
	.kol-category-archive-lead,
	.kol-category-archive-grid {
		grid-template-columns: 1fr;
	}

	.kol-category-archive-lead__rail {
		border-left: 0;
		padding-left: 0;
	}
}

@media (max-width: 640px) {
	.kol-category-archive-masthead h1,
	.kol-category-archive-lead__main .kol-category-archive-card h2 {
		font-size: 34px;
	}
}
