article {
	margin: 40px 0;
}

figure {
	align-items: center;
	display: grid;
	justify-content: center;
	gap: 10px;
}

figcaption {
	font-size: 90%;
	font-style: italic;
}

header {
	border-bottom: 2px solid hsl(0, 0%, 30%);
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 10em;
	padding: 10px 0;
}

header h1, header .author, header .date {
	margin: 0;
}

header .byline {
	align-self: center;
	font-size: 90%;
	text-align: right;
}

img {
	max-width: 100%;
	height: auto;
}

.links {
	display: grid;
	gap: 10px;
}

@media screen and (max-width: 600px) {
	header {
		gap: 10px;
		grid-template-columns: 1fr;
	}

	header .byline {
		text-align: left;
	}
}