.pat-container--single-news {
	opacity: 0;
	visibility: hidden;
}

.pat-container--single-news .page__content {
	--p-padding--left-right: 100px;
	padding: 136px 100px;
	width: 100%;
	max-width: calc(1340px + 2 * var(--p-padding--left-right));
	margin: 0 auto;
}

.pat-container--single-news.pat-container {
	/* background-color: var(--color-blue); */
}

.pat-container--single-news article .entry-header {
	--h-padding: 36px;
	display: flex;
	align-items: center;
	gap: 60px;
	height: 670px;
	background-color: rgba(255, 255, 255, 0.95);
	padding: var(--h-padding);
	border-radius: var(--border-radius);
	position: relative;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.entry-header .post__close-button {
	border-radius: var(--border-radius-pane);
	border: 1px solid var(--color-border);
	width: 57px;
	height: 49px;
	background-color: white;
	position: absolute;
	top: 25px;
	left: 25px;
}

.entry-header .post__close-button a {
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
	position: relative;
}

.entry-header .post__close-button:before, 
.entry-header .post__close-button:after {
	width: 22px;
	height: 2px;
	background-color: #767679;
	position: absolute;
	left: 50%;
	top: 50%;
	content: '';
}

.entry-header .post__close-button:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.entry-header .post__close-button:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.entry-header .post__info {
	width: 50%;
	padding-left: 80px;
}

.entry-header .post__info h1 {
	font-size: 43px; /* ::reusable */
	font-weight: var(--font-weight--medium);
}

.entry-header .post__info {

}

.entry-header .news-thumbnail {
	width: 50%;
	height: 100%;
	border-radius: var(--border-radius-pane);
	overflow: hidden;
}

.entry-header .news-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pat-container--single-news .post__single__categories {
	position: absolute;
	left: var(--h-padding);
	bottom: var(--h-padding);
}

.pat-container--single-news article h2 {
	font-size: 24px; /* ::reusable */
	font-weight: var(--font-weight--medium); /* ::reusable */
}

.pat-container--single-news article h2:not(:first-child),
.pat-container--single-news article h3:not(:first-child),
.pat-container--single-news article h4:not(:first-child),
.pat-container--single-news article h5:not(:first-child),
.pat-container--single-news article h6:not(:first-child) {
	margin-top: 40px;
}

.pat-container--single-news article .entry-content * {
	color: var(--color-blue);
}

/* The container consisting of content + recent posts */
.entry-content__container {
	padding: 71px 20px;
	max-width: calc(1140px + 2 * 20px);
	margin: 0 auto;
	display: flex;
	gap: 45px;
	justify-content: center;
}

/* Child A */
.entry-content {
	width: calc(100% - 300px);
}

/* Child B */
.recent-posts {
	width: 300px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.recent-posts .recent-posts-header {
	color: #797983;
	font-size: 16px;
	font-weight: var(--font-weight--medium);
}

.recent-posts article {
	display: flex;
	gap: 25px;
}

.recent-posts .recent-news-thumbnail {
	border-radius: var(--border-radius-pane);
	overflow: hidden;
	width: 87px;
	height: 87px;
}

.recent-posts .recent-news-thumbnail a {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.recent-posts .recent-news-thumbnail img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.recent-posts .recent-news-title {
	font-size: 15px;
	font-weight: var(--font-weight--medium);
	width: calc(100% - 87px);
	color: var(--color-blue);
}

.recent-posts .recent-news-title a {
	color: var(--color-blue);
}

.entry-footer {
	display: flex;
	gap: 2px;
	max-width: calc(1750px + 2 * 100px);
    padding: 0 100px;
    margin: 0 auto;
}

.entry-footer > a {
	width: 50%;
	height: 300px;
	position: relative;
	display: flex;
	justify-content: center;
    flex-direction: column;
}

.entry-footer .next-post__background {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	border-radius: var(--border-radius);
	overflow: hidden;
	width: 100%;
	height: 100%;

	background-color: var(--color-blue);
}

.entry-footer .next-post__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.32;
}

.entry-footer .prev-next-post__heading,
.entry-footer .prev-next-post__title {
	font-size: 16px;
	font-weight: var(--font-weight--medium);
}

.entry-footer .prev-next-post {
	position: relative;
	z-index: 1;
	max-width: 350px;
	margin: 0 auto;
}

.entry-footer .prev-next-post__heading {
	color: var(--color-gold);
	margin-bottom: 20px;
}

.entry-footer .prev-next-post__title {
	color: white;
}