.article-heading {
	padding: 35px 0 0;
	background: var(--soft);
}

.article-heading h1 {
	margin: 0 0 24px;
	font-size: clamp(44px, 5vw, 76px);
	line-height: .98;
	letter-spacing: -.05em;
}

.article-tools {
	display: flex;
	justify-content: end;
	gap: 10px;
	margin-bottom: 28px;
}

.article-tools a {
	display: grid;
	place-items: center;
	width: 35px;
	height: 35px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--muted);
	font-size: 17px;
	text-decoration: none;
}

.article-tools a:hover {
	border-color: var(--red);
	color: var(--red);
}

.article-hero {
	aspect-ratio: 2.55;
}

.article-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 760px);
	gap: 80px;
	justify-content: center;
}

.article-layout aside {
	position: sticky;
	top: 30px;
	align-self: start;
}

.article-layout aside > a {
	display: block;
	margin: 9px 0;
	color: var(--muted);
	font-size: 13px;
	text-decoration: none;
}

.article-layout aside > a:hover {
	color: var(--red);
}

.article-download {
	margin-top: 34px;
	padding: 20px;
	background: #f0f1f2;
}

.article-download h3 {
	margin: 0 0 8px;
}

.article-download p {
	color: var(--muted);
	font-size: 13px;
}

.article-download .button {
	width: 100%;
	min-height: 42px;
	padding: 0 8px;
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
	font-size: 11px;
}

.article-layout article > p {
	color: var(--muted);
	font-size: 15px;
}

.article-layout article h2 {
	margin: 38px 0 14px;
	padding-left: 16px;
	border-left: 3px solid var(--red);
	font-size: 26px;
}

.article-image-pair {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 22px 0;
}

.article-image-pair .img_box {
	aspect-ratio: 1.6;
}

blockquote {
	margin: 30px 0;
	padding: 28px 30px;
	border-left: 3px solid var(--red);
	background: #f0f1f2;
	font-size: 24px;
	line-height: 1.35;
}

blockquote cite {
	display: block;
	margin-top: 16px;
	color: var(--muted);
	font-size: 13px;
	font-style: normal;
}

.article-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	margin-top: 32px;
	padding: 25px 30px;
	background: var(--red);
	color: #fff;
}

.article-callout h3 {
	margin: 0 0 4px;
	font-size: 23px;
}

.article-callout p {
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 13px;
}

.article-callout .button {
	border-color: #fff;
	background: #fff;
	color: var(--red);
	white-space: nowrap;
}

.article-related-products .section-heading,
.article-related-news .section-heading {
	align-items: center;
}

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

.article-news-card {
	display: block;
	border: 1px solid var(--line);
	background: #fff;
	text-decoration: none;
}

.article-news-card .img_box {
	aspect-ratio: 1.55;
}

.article-news-card .eyebrow,
.article-news-card h3,
.article-news-card p {
	margin-right: 18px;
	margin-left: 18px;
}

.article-news-card .eyebrow {
	margin-top: 17px;
	margin-bottom: 8px;
	font-size: 10px;
}

.article-news-card h3 {
	margin-top: 0;
	margin-bottom: 9px;
	font-size: 16px;
	line-height: 1.2;
}

.article-news-card p {
	min-height: 44px;
	color: var(--muted);
	font-size: 12px;
}

@media only screen and (max-width: 1440px) {
	.article-news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 768px) {
	.article-heading h1 {
		font-size: 42px;
	}

	.article-hero {
		aspect-ratio: 1.45;
	}

	.article-layout {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.article-layout aside {
		position: static;
	}

	.article-image-pair,
	.article-news-grid {
		grid-template-columns: 1fr;
	}

	.article-callout {
		display: block;
	}

	.article-callout .button {
		margin-top: 20px;
	}
}
