.smax-news-hero {
	position: relative;
	display: flex;
	min-height: 360px;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	color: #fff;
	background: #28292d;
}

.smax-news-hero__inner {
	position: relative;
	z-index: 2;
	padding-top: 8px;
	padding-bottom: 8px;
}

.smax-news-hero__eyebrow,
.smax-news-entry__eyebrow {
	margin: 0 0 12px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
}

.smax-news-hero h1,
.smax-news-entry__header h1 {
	margin: 0;
	font-size: 48px;
	line-height: 1.12;
}

.smax-news-hero p:last-child {
	max-width: 560px;
	margin: 18px 0 0;
	font-size: 19px;
	line-height: 1.55;
}

.smax-news-archive {
	padding: 64px 0 84px;
}

.smax-news-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.smax-news-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	text-align: left;
	overflow: hidden;
	border: 0;
	border-radius: 5px;
	box-shadow: 0 3px 20px rgba(26, 35, 40, 0.12);
}

.smax-news-card__media {
	display: block;
	background: #4a5154;
	line-height: 0;
}

.smax-news-card__image,
.smax-news-entry__cover {
	display: block;
	width: 100%;
	object-fit: cover;
	background: #4a5154;
}

.smax-news-card__image {
	height: clamp(165px, 12vw, 240px);
	aspect-ratio: auto;
}

.smax-news-card__image--empty,
.smax-news-entry__cover--empty {
	background: linear-gradient(135deg, #4a5154 0 72%, var(--blue) 72% 100%);
}

.smax-news-card__body {
	display: flex;
	min-height: 300px;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px 32px 26px;
}

.smax-news-card h3 {
	min-height: 0;
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.smax-news-card h3 a {
	color: var(--ink);
	text-decoration: none;
}

.smax-news-card p {
	margin: 0;
	color: #7b7e82;
	font-size: 14px;
	line-height: 1.58;
}


.smax-news-card__link {
	margin-top: auto;
	color: var(--blue);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.smax-news-card__link:hover {
	color: #c95105;
}

.smax-news-card__date {
	display: block;
	padding: 16px 32px;
	color: #9a9da0;
	border-top: 1px solid #ededed;
	font-size: 14px;
	line-height: 1.35;
}

.smax-news-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 52px;
}

.smax-news-pagination .page-numbers {
	display: inline-flex;
	min-width: 40px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	color: var(--ink);
	border: 1px solid #d5d9dc;
	text-decoration: none;
}

.smax-news-pagination .current,
.smax-news-pagination a:hover {
	color: #fff;
	border-color: var(--blue);
	background: var(--blue);
}

.smax-news-empty {
	margin: 0;
	padding: 70px 0;
	text-align: center;
}

.smax-news-entry {
	max-width: 1040px;
	padding-top: 78px;
	padding-bottom: 84px;
}

.smax-news-entry__header {
	max-width: 900px;
	margin-bottom: 34px;
}

.smax-news-entry__header h1 {
	font-size: 48px;
}

.smax-news-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 22px;
	color: #6b7379;
	font-size: 15px;
}

.smax-news-entry__meta span::before {
	display: inline-block;
	width: 4px;
	height: 4px;
	margin: 0 16px 3px 0;
	border-radius: 50%;
	background: var(--blue);
	content: '';
}

.smax-news-entry__cover-wrap {
	margin-bottom: 48px;
}

.smax-news-entry__cover {
	max-height: 570px;
	aspect-ratio: 16 / 9;
}

.smax-news-entry__layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 60px;
	align-items: start;
}

.smax-news-entry__layout--no-toc {
	grid-template-columns: minmax(0, 1fr);
}

.smax-news-entry__layout--no-toc .smax-news-entry__content {
	max-width: 730px;
	margin: 0 auto;
}

.smax-news-toc {
	position: sticky;
	top: 24px;
	padding: 22px;
	border-top: 3px solid var(--blue);
	background: #f3f5f6;
}

.smax-news-toc p {
	margin: 0 0 14px;
	font-weight: 700;
}

.smax-news-toc ol {
	margin: 0;
	padding-left: 20px;
}

.smax-news-toc li + li {
	margin-top: 10px;
}

.smax-news-toc a {
	color: #505960;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
}

.smax-news-toc a:hover {
	color: var(--blue);
}

.smax-news-entry__content {
	min-width: 0;
	color: #30373b;
	font-size: 17px;
	line-height: 1.75;
}

.smax-news-entry__content > :first-child {
	margin-top: 0;
}

.smax-news-entry__content h2 {
	margin: 48px 0 18px;
	color: var(--ink);
	font-size: 29px;
	line-height: 1.25;
	scroll-margin-top: 24px;
}

.smax-news-entry__content h3 {
	margin: 32px 0 14px;
	color: var(--ink);
	font-size: 22px;
}

.smax-news-entry__content p,
.smax-news-entry__content ul,
.smax-news-entry__content ol {
	margin: 0 0 22px;
}

.smax-news-entry__content li + li {
	margin-top: 8px;
}

.smax-news-entry__content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 30px auto;
}

.smax-news-entry__content table {
	width: 100%;
	margin: 28px 0;
	border-collapse: collapse;
	font-size: 15px;
}

.smax-news-entry__content th,
.smax-news-entry__content td {
	padding: 12px;
	border: 1px solid #d9dfe2;
	vertical-align: top;
	text-align: left;
}

.smax-news-entry__content th {
	color: #fff;
	background: #4a5154;
}

.smax-news-recent {
	padding: 70px 0 84px;
	background: #f3f5f6;
}

.smax-news-recent h2 {
	margin: 0 0 28px;
	font-size: 32px;
}

@media (max-width: 900px) {
	.smax-news-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.smax-news-entry__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.smax-news-toc {
		position: static;
	}
}

@media (max-width: 640px) {
	.smax-news-hero,
	.smax-news-entry {
		padding-top: 54px;
		padding-bottom: 56px;
	}

	.smax-news-hero h1,
	.smax-news-entry__header h1 {
		font-size: 34px;
	}

	.smax-news-archive__grid {
		grid-template-columns: 1fr;
	}

	.smax-news-card__image {
		height: auto;
		aspect-ratio: 1.75 / 1;
	}

	.smax-news-card__body {
		min-height: 0;
		padding: 32px 28px 38px;
	}

	.smax-news-card h3 {
		margin-bottom: 18px;
		font-size: 25px;
	}

	.smax-news-card__date {
		padding: 18px 28px;
	}

	.smax-news-entry__content {
		font-size: 16px;
	}

	.smax-news-entry__content h2 {
		font-size: 25px;
	}

	.smax-news-entry__content table {
		display: block;
		overflow-x: auto;
	}
}
