/*
  davidjaco.me
  Hand-written, covers only what the site actually uses.
*/

/* ---------- Reset ---------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	min-height: 100%;
	background-color: #fff;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
}

img {
	max-width: 100%;
	display: inline-block;
	vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Alte Haas Grotesk", Arial, sans-serif;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 10px;
}

p {
	margin-top: 0;
	margin-bottom: 10px;
}

/* ---------- Custom font ---------- */

@font-face {
	font-family: "Alte Haas Grotesk";
	src: url("/assets/fonts/AlteHaasGroteskRegular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Alte Haas Grotesk";
	src: url("/assets/fonts/AlteHaasGroteskBold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ---------- Nav ---------- */

.nav {
	position: fixed;
	top: 28px;
	left: 20px;
	z-index: 10;
}

.site-logo {
	color: #151716;
	text-decoration: none;
	font-family: "Alte Haas Grotesk", Arial, sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}

.site-logo:hover {
	color: #000;
}

/* ---------- Page content ---------- */

.content {
	max-width: 700px;
	margin: 100px auto 60px;
	padding: 0 20px;
}

.page-title {
	margin-top: 10px;
	margin-bottom: 30px;
	font-family: "Alte Haas Grotesk", Arial, sans-serif;
	font-weight: 700;
	color: #000;
	font-size: 22px;
	line-height: 1.2;
	text-align: center;
}

/* ---------- Posts ---------- */

.posts {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.post-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 18px;
	line-height: 24px;
	color: #151716;
}

.post-meta {
	display: block;
	margin-top: 4px;
	margin-bottom: 15px;
	color: #777;
	white-space: break-spaces;
	font-size: 14px;
}

.post-body img {
	display: block;
	width: 50%;
	margin: 0 auto;
}

.post-body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15.5px;
	font-weight: 370;
	line-height: 1.5;
	letter-spacing: 0;
}

.closing-note {
	text-align: center;
	color: #333;
	margin-top: 20px;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 767px) {
	.nav {
		position: static;
		padding: 24px 15px 0;
	}

	.content {
		margin-top: 40px;
	}
}
