/* Pico CSS overrides and customizations */

/* Font customization */
:root {
	--pico-font-family: "Source Sans 3", sans-serif;
	--pico-line-height: 1.6;
}

body {
	background-color: #fdfbf5;
	color: #33302e;
}

/* Page header navigation */
.page-header {
	background-color: transparent;
	border-bottom: none;
	padding: 0;
}

.page-header nav {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 1rem 2rem;
}

.page-header nav ul {
	display: flex;
	list-style: none;
	gap: 1rem;
	margin: 0;
	padding: 0;
	margin-left: auto;
}

.page-header nav ul li {
	margin: 0;
}

.page-header .home-link {
	text-decoration: none;
	color: inherit;
}

.page-header-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Post styling */
.post {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.post:last-child {
	border-bottom: none;
}

.post-header {
	margin-bottom: 1.5rem;
}

.post-title-and-date {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.post-title-and-date h2 {
	margin: 0;
}

.post-title-and-date h2 a {
	color: inherit;
	text-decoration: none;
}

.post-title-and-date h2 a:hover {
	color: var(--pico-primary);
}

.post-title-and-date .post-date {
	color: #666;
	white-space: nowrap;
	font-size: 0.9rem;
}

.post-description {
	font-style: italic;
	font-size: 1.2rem;
	color: #745381;
	margin: 0;
}

.post-content {
	margin-top: 1rem;
}

/* Utility classes */
.block-label {
	margin-bottom: -1rem;
}