.single-body-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(280px, 320px);
	justify-content: center;
	align-items: start;
	gap: 64px;
	margin-bottom: 56px;
}

.single-body-main {
	min-width: 0;
}

.article-share {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 22px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--line);
}

.article-share-label {
	color: var(--navy);
	font: 800 11px/1 var(--sans);
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.article-share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.article-share-button {
	width: 38px;
	height: 38px;
	display: grid;
	flex: 0 0 38px;
	place-items: center;
	border: 1px solid var(--navy);
	border-radius: 50%;
	color: var(--navy);
	background: transparent;
	transition:
		color 160ms ease,
		background-color 160ms ease,
		transform 160ms ease;
}

.article-share-button:hover,
.article-share-button:focus-visible {
	color: var(--white);
	background: var(--navy);
	transform: translateY(-1px);
}

.article-share-button svg {
	width: 17px;
	height: 17px;
	display: block;
	fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
	.article-share-button {
		transition: none;
	}
}

.single-body-main .article-content,
.single-body-main .article-footer {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

.single-sidebar {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 30px;
	min-width: 0;
}

.sidebar-widget {
	padding-top: 16px;
	border-top: 3px solid var(--navy);
}

.sidebar-widget-title {
	margin: 0 0 16px;
	color: var(--navy);
	font-size: 25px;
	line-height: 1.05;
}

.sidebar-widget > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-widget > ul li {
	padding: 11px 0;
	border-bottom: 1px solid var(--line);
}

.sidebar-widget > ul li:last-child {
	border-bottom: 0;
}

.sidebar-widget > ul a {
	font-size: 17px;
	line-height: 1.2;
}

.latest-posts-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.latest-posts-list li {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 13px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.latest-posts-list li:first-child {
	padding-top: 0;
}

.latest-posts-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.latest-post-thumb {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e7e3dc;
}

.latest-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.latest-posts-list h3 {
	margin: 0 0 7px;
	font-size: 16px;
	line-height: 1.16;
}

.latest-posts-list time,
.related-post-row time {
	color: var(--muted);
	font: 700 10px/1.3 var(--sans);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sidebar-ad-placeholder {
	min-height: 250px;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 8px;
	border: 1px solid var(--line);
	color: #838892;
	background:
		linear-gradient(135deg, rgb(8 34 65 / 0.025), transparent),
		#f3f1ed;
	font-family: var(--sans);
	text-align: center;
}

.sidebar-ad-placeholder span {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sidebar-ad-placeholder strong {
	color: #a0a4ab;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.sidebar-ad-widgets .sidebar-widget {
	padding-top: 0;
	border-top: 0;
}

.sidebar-ad-widgets img {
	display: block;
	max-width: 100%;
	height: auto;
}

.sidebar-ad-widgets iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	border: 0;
}

.related-posts {
	padding-top: 44px;
	padding-bottom: 52px;
	border-top: 1px solid var(--navy);
	border-bottom: 1px solid var(--line);
}

.related-posts-heading {
	margin-bottom: 24px;
}

.related-posts-heading h2 {
	margin: 0;
	color: var(--navy);
	font-size: 38px;
	line-height: 1;
}

.related-posts-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 44px;
}

.related-post-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin-bottom: 17px;
	background: #e7e3dc;
}

.related-post-image img,
.related-row-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.related-post-lead h3 {
	margin: 0 0 10px;
	font-size: 31px;
	line-height: 1.08;
}

.related-post-lead p {
	margin: 0;
	color: #575c64;
	font-size: 15px;
}

.related-posts-list {
	display: grid;
	align-content: start;
	gap: 0;
}

.related-post-row {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 18px;
	padding: 0 0 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--line);
}

.related-post-row:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.related-row-image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e7e3dc;
}

.related-post-row h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.12;
}

@media (max-width: 980px) {
	.single-body-layout {
		grid-template-columns: minmax(0, 760px);
		gap: 50px;
	}

	.single-sidebar {
		position: static;
		top: auto;
	}
}

@media (max-width: 700px) {
	.single-body-layout {
		gap: 42px;
		margin-bottom: 44px;
	}

	.related-posts {
		padding-top: 36px;
		padding-bottom: 42px;
	}

	.related-posts-heading h2 {
		font-size: 32px;
	}

	.related-posts-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.related-post-lead h3 {
		font-size: 27px;
	}

	.related-post-row {
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 14px;
	}

	.related-post-row h3 {
		font-size: 18px;
	}

	.sidebar-ad-placeholder {
		min-height: 210px;
	}
}
