/* reset */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* page */
body {
  font-family: 'Nunito', sans-serif;
  background: #ffffff;
  color: #2b2b2b;
  line-height: 1.7;
}

/* layout */
.inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* header */
.site-header {
  border-bottom: 1px solid #e6dfe6;
  margin-bottom: 24px;
}

.site-header h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
}

.subtitle {
  margin-top: 6px;
  color: #777;
}

/* cards / posts */
.card {
  background: #faf7fa;
  border: 1px solid #eadfe8;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 22px;
}

/* post header */
.post-header {
  margin-bottom: 10px;
}

.post-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.post-date {
  font-size: 14px;
  color: #888;
}

/* body text */
.post-body p {
  margin: 10px 0;
}

.post-body ul {
  margin: 8px 0 8px 20px;
}

/* blockquote = little thoughts */
blockquote {
  margin: 14px 0;
  padding: 12px 16px;
  background: #f2eef3;
  border-left: 4px solid #d7bfd4;
  border-radius: 12px;
  color: #555;
}

/* links */
a {
  color: #b76ea8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #8f4f82;
}

/* footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid #e6dfe6;
  padding-top: 16px;
  font-size: 14px;
  color: #777;
}