* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #CDE7F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Homepage */
.page-home {
  font-family: 'Inter', sans-serif;
  color: #414141;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .container {
  max-width: 650px;
  width: 100%;
  padding: 0 32px;
}

.page-home h1 {
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 0;
}

.page-home .bio {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-top: 28px;
}

.page-home .bio p + p {
  margin-top: 28px;
}

.page-home h2 {
  font-size: 16px;
  font-weight: 600;
  color: #232323;
  margin-top: 48px;
}

.page-home .articles {
  list-style: none;
  margin-top: 16px;
}

.page-home .articles li + li {
  margin-top: 14px;
}

.page-home .articles a {
  font-size: 16px;
  font-weight: 400;
  color: #0012BD;
  text-decoration: underline;
}

.page-home .articles a:hover {
  opacity: 0.7;
}

/* Article pages */
.page-article {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #121212;
}

.page-article .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

.page-article .back-link {
  font-size: 16px;
  font-weight: 400;
  color: #747474;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-article .back-link:hover {
  opacity: 0.7;
}

.page-article .back-link svg {
  width: 14px;
  height: 14px;
}

.page-article h1 {
  font-size: 36px;
  font-weight: 600;
  color: #111111;
  margin-top: 15px;
  line-height: 1.2;
}

.page-article .content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 24px;
}

.page-article .content p + p {
  margin-top: 18px;
}

.page-article .content strong {
  font-weight: 600;
}

.page-article .content em {
  font-style: italic;
}

.page-article .content img {
  display: block;
  max-width: 75%;
  height: auto;
  margin: 24px 0;
}

@media (max-width: 700px) {
  .page-article .container {
    padding: 80px 32px 40px;
  }

  .page-article .content img {
    max-width: 100%;
  }
}
