/* Alpha Recursion - Clean Stylesheet */

/* Font Faces */
@font-face {
  font-display: swap;
  font-family: "PT Sans";
  src: url('PT_Sans-Web-Regular.woff2') format('woff2'),
       url('PT_Sans-Web-Regular.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: "PT Sans";
  src: url('PT_Sans-Web-Bold.woff2') format('woff2'),
       url('PT_Sans-Web-Bold.woff') format('woff');
  font-weight: 700;
}

@font-face {
  font-display: swap;
  font-family: "PT Sans";
  src: url('PT_Sans-Web-Italic.woff2') format('woff2'),
       url('PT_Sans-Web-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Hanken Grotesk";
  src: url('HankenGrotesk_wght_.woff2') format('woff2'),
       url('HankenGrotesk_wght_.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: "Lato";
  src: url('Lato-Regular.woff2') format('woff2'),
       url('Lato-Regular.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: "Lato";
  src: url('Lato-Bold.woff2') format('woff2'),
       url('Lato-Bold.woff') format('woff');
  font-weight: 700;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Layout */
.page {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.page--narrow {
  max-width: 525px;
}

.page--home {
  max-width: 360px;
  padding-top: 60px;
}

/* Typography */
h1 {
  font-family: "PT Sans", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}

h3 {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

p {
  margin-bottom: 0;
  line-height: 1.65;
}

.body-text {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.body-text--hanken {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.subtitle {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

strong, .bold {
  font-weight: 700;
}

em, .italic {
  font-style: italic;
}

.bold-italic {
  font-weight: 700;
  font-style: italic;
}

.meta-label {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.section-title {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.closing-text {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

/* Separator */
.separator {
  font-family: Geneva, Tahoma, Verdana, sans-serif;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

/* Spacer */
.spacer {
  height: 1em;
}

/* Lists */
ul {
  list-style: disc;
  padding-left: 30px;
  margin: 0;
}

ul li {
  margin-bottom: 2px;
}

/* Blockquotes */
blockquote {
  padding-left: 40px;
  padding-right: 40px;
  margin: 0;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nav-link {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  color: #000;
}

.nav-link:hover {
  color: #333;
}

.nav-link--blue {
  color: #00e;
}

.nav-link--blue:hover {
  color: #00a;
}

/* Navigation list items (indented links) */
.nav-item {
  padding-left: 15px;
  margin-bottom: 0;
}

.nav-description {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.73;
  padding-left: 15px;
}

/* Responsive */
@media (max-width: 640px) {
  .page {
    padding: 24px 16px 40px;
  }

  h1 {
    font-size: 24px;
  }

  h3 {
    font-size: 14px;
  }
}
