.container {
	max-width: 800px;
	padding-left: 1rem;
    padding-right: 1rem;
}

ul.article-list {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
}

ul.article-list li {
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: baseline;
	gap: 1.5rem;
	margin-bottom: 0.75rem;
	list-style-type: none;
}

.article-date {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	color: var(--secondary);
	font-size: 0.9rem;
	white-space: nowrap;
}

.article-title {
	text-decoration: none;
	font-weight: 500;
}

nav a.brand {
	text-decoration: none;
	color: inherit;
}

section {
	margin-bottom: 0;
}

main.container {
	margin-bottom: 0;
}

hr {
	margin: 1.5rem 0;
}

nav.pagination {
	margin-top: 1rem;
	margin-bottom: 0;
}

footer.container {
	padding-top: 0;
	margin-top: 0;
}

footer {
	text-align: left;
}

footer p {
	margin-bottom: 0;
}

footer small {
	line-height: 1.2;
	display: block;
}

.footer-credentials {
	display: block;
}

.footer-credentials span {
	display: inline;
}

.footer-credentials .separator {
	display: inline;
	margin: 0 0.1rem;
}

@media (max-width: 600px) {
	footer {
		text-align: center;
	}

	.footer-credentials span {
		display: block;
		margin-bottom: 0.1rem;
	}

	.footer-credentials .separator {
		display: none;
	}

	ul.article-list li {
		grid-template-columns: 1fr;
		gap: 0.25rem;
		margin-bottom: 1.25rem;
	}

	.article-date {
		font-size: 0.8rem;
	}
}
