/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:ital,wght@0,400;0,600;1,400&display=swap');

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Crimson Pro', serif;
	color: #2c3e50;
	margin: 1em 0 0.25em 0;
	line-height: 1.3;
}

h1 {
	font-size: 2.5em;
	font-weight: 600;
}

h2 {
	font-size: 2em;
	font-weight: 600;
}

h3 {
	font-size: 1.5em;
	font-weight: 600;
}

p {
	margin-bottom: 1em;
}

/* Navigation */
nav {
	padding: 2em 0;
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 2em;
}

nav a {
	color: #2c3e50;
	text-decoration: none;
	margin-right: 2em;
	font-weight: 600;
}

nav a:hover {
	color: #3498db;
}

/* Links */
a {
	color: #3498db;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Lists */
ul {
	margin-left: 2em;
	margin-bottom: 1em;
}

li {
	margin-bottom: 0.5em;
}

/* Sections */
section {
	margin: 2em 0;
}

/* Date styling */
.date {
	color: #7f8c8d;
	font-size: 0.9em;
	font-style: italic;
}

/* Footer */
footer {
	margin-top: 4em;
	padding-top: 2em;
	border-top: 1px solid #e8e8e8;
	color: #7f8c8d;
	font-size: 0.9em;
}