/* Recent Posts List — no background is set; the list sits transparently
   on whatever container it is placed in. */

.rpl-list {
	--rpl-date: #16294b;        /* dark navy date */
	--rpl-title: #ffffff;       /* white titles */
	--rpl-excerpt: #f1f1f4;     /* near-white excerpt text */
	--rpl-divider: rgba(255, 255, 255, 0.45);

	font-family: 'Noto Serif', Georgia, 'Times New Roman', serif;
	padding: 0.5rem 2rem;
	margin: 0;
}

.rpl-item {
	padding: 1.75rem 0 2rem;
	border-bottom: 1px dotted var(--rpl-divider);
}

.rpl-item:last-child {
	border-bottom: none;
}

.rpl-date {
	color: var(--rpl-date);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.rpl-title {
	margin: 0 0 0.85rem;
	font-size: 2.1rem;
	font-weight: 400;
	line-height: 1.2;
}

.rpl-title a {
	color: var(--rpl-title);
	text-decoration: none;
}

.rpl-title a:hover,
.rpl-title a:focus {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.rpl-excerpt {
	color: var(--rpl-excerpt);
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	max-width: 60ch;
}

@media (max-width: 600px) {
	.rpl-list {
		padding: 0.25rem 1.25rem;
	}

	.rpl-title {
		font-size: 1.6rem;
	}

	.rpl-excerpt,
	.rpl-date {
		font-size: 1.05rem;
	}
}
