

.article {
	gap: 64px;
	display: flex;
	justify-content: space-between;
}

.article {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.article h1 {
	color: #363636;
	margin-bottom: 17px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.article .body {
	gap: 17px;
	display: flex;
	flex-direction: column;
}

.article .author {
	color: gray;
	font-size: 0.95em;
}

.article .content {
	line-height: 1.75;
}

.article .content p {
	margin-bottom: 27px;
}

.article .photoset {
	gap: 17px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.article .photoset a {
	width: 100%;
}

.article .photoset img {
	width: 100%;
}

.article .rx {
	min-width: 236px;
	padding-top: 105px;
}

.journal-article time {
	color: #706f6f;
	display: block;
	margin-bottom: 17px;
}

.journal-article .lx {
	flex-basis: 900px;
}

.journal-article .photo-wrap {
	width: 900px;
	height: 420px;
	overflow: hidden;
	position: relative;
}

.journal-article .mainphoto {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center; /* eg. also right bottom */
}

.article.articles .content {
	display: flex;
	flex-flow: column;
}

/* mobile */
@media (max-width: 768px) {

	.article {
		gap: 0;
		flex-wrap: wrap;
	}

	.article h1 {
		font-size: 20px;
	}

	.article .body {
		gap: 0;
	}

	.article .lx {
		flex-basis: 100%;
	}

	.article .rx {
		width: 100%;
		padding-top: initial;
	}

	.article .photo-wrap {
		width: 100%;
		height: auto;
		overflow: hidden;
		position: relative;
	}

	.article .author {
		display: none;
	}

} /* mobile */

/* Tablets: Portrait + Landscape */
@media (min-width: 769px) and (max-width: 1024px) { 

	.article .lx {
		flex-basis: 70%;
	}

	.article .rx {
		width: 29%;
	}

	.journal-article .photo-wrap {
		width: 100%;
	}

}