:root {
  color-scheme: light;
  --text: #292b2c;
  --link: #0275d8;
  --content-width: 900px;
}

* {
  box-sizing: border-box;
}

html {
  background: #ffffff;
  font-size: 16px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: var(--link);
}

a:visited {
  color: var(--link);
}

a:hover,
a:focus-visible {
  color: #111111;
}

.wrapper {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-right: 60px;
  padding-left: 60px;
}

.site-header {
  min-height: 112px;
  padding-top: 14px;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.site-title {
  margin: 0;
  line-height: 70px;
  white-space: nowrap;
}

.site-title a,
.site-title a:visited {
  color: #111111;
  font-size: 32.5px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav {
  margin-top: 15px;
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.site-nav a:visited {
  display: block;
  padding: 12px 20px;
  color: #111111;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content {
  padding: 60px 0;
}

.page-header {
  margin-bottom: 60px;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: 52.5px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
}

.home .page-header {
  min-height: 60px;
  margin-bottom: 0;
}

.content p {
  margin: 0 0 1rem;
}

.title-image {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.archive-line {
  max-width: 780px;
}

@media (max-width: 760px) {
  .wrapper {
    padding-right: 28px;
    padding-left: 28px;
  }

  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    display: block;
  }

  .site-title {
    line-height: 1.35;
  }

  .site-title a,
  .site-title a:visited {
    font-size: 29px;
  }

  .site-nav {
    margin: 15px -10px 0;
  }

  .site-nav ul {
    flex-wrap: wrap;
  }

  .site-nav a,
  .site-nav a:visited {
    padding: 10px;
    font-size: 17px;
  }

  .page-content {
    padding: 45px 0;
  }

  .page-header {
    margin-bottom: 45px;
  }

  h1 {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-title a,
  .site-title a:visited {
    font-size: 27px;
  }

  .site-nav a,
  .site-nav a:visited {
    font-size: 15px;
  }
}
