﻿html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  border-style: solid;
  border-width: 0;
  border-color: currentColor;
  margin: 0;
  padding: 0;
}
body {
  height: 100%;
  background: var(--background, #fffffe);
  color: var(--color, #292929);
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 1.125rem;
  line-height: 1.54;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: 'liga', 'tnum', 'case', 'calt', 'zero', 'ss01', 'locl';
  -moz-font-feature-settings: 'liga', 'tnum', 'case', 'calt', 'zero', 'ss01', 'locl';
  font-feature-settings: 'liga', 'tnum', 'case', 'calt', 'zero', 'ss01', 'locl';
  -webkit-font-variant-ligatures: contextual;
  -moz-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
::selection {
  background: var(--accent, #0074d9);
  color: var(--background, #fffffe);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 200ms linear;
}
a:hover {
  color: var(--accent, #0074d9);
}
b, strong {
  font-weight: 500;
}
ul, ol {
  list-style-position: outside;
  padding-left: 1.5rem;
  margin-top: 1rem;
}
ul {
  list-style-type: square;
}
blockquote {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent, #0074d9);
  font-style: italic;
  color: var(--color-80, rgba(41,41,41,0.80));
}
table {
  border-collapse: collapse;
  caption-side: bottom;
  overflow-x: auto;
  min-width: 100%;
  border: 1px solid var(--color-30, rgba(41,41,41,0.30));
  margin-top: 1rem;
}
td, th {
  border: 1px solid var(--color-30, rgba(41,41,41,0.30));
  padding: 0.5rem;
  text-align: left;
}
th {
  font-weight: 500;
}
hr {
  width: 100%;
  border: none;
  background: var(--color-10, rgba(41,41,41,0.10));
  height: 1px;
  margin-top: 2rem;
}
pre {
  white-space: pre-wrap;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  font-size: 0.95rem;
  border: 1px solid var(--color-10, rgba(41,41,41,0.10));
  padding: 1rem;
  margin-top: 1rem;
  overflow: auto;
  font-family: 'Inconsolata', 'SF Mono', 'Cascadia Code', Consolas, monospace;
  line-height: 1.6;
}
code, kbd {
  color: var(--accent, #0074d9);
  font-family: 'Inconsolata', 'SF Mono', 'Cascadia Code', Consolas, monospace;
  background: var(--color-30, rgba(41,41,41,0.30));
  padding: 1px 6px;
  margin: 0 2px;
  font-size: 0.95rem;
}
pre code {
  background: transparent;
  padding: 0;
  margin: 0;
}
mark {
  background: var(--accent, #0074d9);
  color: var(--background, #fffffe);
  padding: 1px 6px;
  margin: 0 2px;
  font-size: 0.95rem;
}
:focus-visible {
  outline: 2px solid var(--accent, #0074d9);
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 400;
  color: var(--color, #292929);
}
h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
* + h1, * + h2 {
  margin-top: 5rem;
}
* + h3, * + h4, * + h5 {
  margin-top: 3rem;
}
* + p {
  margin-top: 2rem;
}
h2 + p, h3 + p, h4 + p {
  margin-top: 1rem;
}
.layout-wrapper {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100vh;
}
.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 4rem;
}
.header {
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.header__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 1rem auto 0;
  max-width: 48.75rem;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--color-10, rgba(41,41,41,0.10));
}
.site-title {
  font-size: 1.25rem;
  margin: 1rem 0;
  font-weight: 500;
}
.site-title a {
  color: var(--color, #292929);
  text-decoration: none;
}
.site-title a:hover {
  color: var(--accent, #0074d9);
}
.nav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  margin: 0;
}
.nav__list li {
  margin-right: 2rem;
}
.nav__list li:last-child {
  margin-right: 0;
}
.nav__list a {
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
  margin: 1rem 0;
}
.nav__list a:hover, .nav__list a[aria-current="page"] {
  color: var(--color, #292929);
  text-decoration: underline;
}
.hero {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
}
.hero p {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: var(--color-80, rgba(41,41,41,0.80));
  max-width: 36rem;
}
.hero__social-links {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-top: 2rem;
  padding-left: 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.hero__social-links > li {
  margin-right: 2rem;
  margin-top: 1rem;
}
.hero__social-links a {
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
}
.hero__social-links a:hover {
  color: var(--accent, #0074d9);
}
.post-list__wrapper {
  margin-top: 6rem;
}
.post-list__heading {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.post-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.post-list__item {
  display: flex;
  flex-direction: column;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--color-10, rgba(41,41,41,0.10));
}
.post-list__item:last-child {
  border-bottom: 1px solid var(--color-10, rgba(41,41,41,0.10));
}
.post-list__meta {
  font-size: 0.875rem;
  color: var(--color-80, rgba(41,41,41,0.80));
}
.post-list__meta > * + * {
  margin-left: 1rem;
}
.post-list__title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
.post-list__title a {
  color: var(--color, #292929);
  text-decoration: none;
}
.post-list__title a:hover {
  color: var(--accent, #0074d9);
  text-decoration: underline;
}
.post-list__tags {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.post-list__tags a {
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
  margin-right: 1rem;
}
.post-list__tags a:hover {
  color: var(--accent, #0074d9);
}
.post-list__excerpt {
  margin-top: 1rem;
  color: var(--color-80, rgba(41,41,41,0.80));
  max-width: 40rem;
}
.post-list__read-more {
  width: fit-content;
  font-size: 1rem;
  text-transform: capitalize;
  margin-top: 1rem;
  text-decoration: underline;
  color: var(--color, #292929);
}
.post-list__read-more:hover {
  color: var(--accent, #0074d9);
}
.post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3rem;
}
.post > * + * {
  margin-top: 4rem;
}
.post__header h1 {
  line-height: 1.25;
}
.post__details {
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.post__details > * + * {
  margin-left: 0.5rem;
}
.post__content {
  word-wrap: break-word;
  min-width: 0;
}
.post__aside {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-10, rgba(41,41,41,0.10));
}
.post__tags {
  opacity: 0.8;
  font-size: 0.875rem;
}
.post__tags a {
  margin-right: 0.5rem;
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
}
.post__tags a:hover {
  color: var(--accent, #0074d9);
}
.post__pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post__pagination a {
  display: flex;
  align-items: center;
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
  max-width: 48%;
}
.post__pagination a:hover {
  color: var(--accent, #0074d9);
}
.post__pagination span {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.post__pagination > *:only-child {
  margin-left: auto;
  margin-right: auto;
}
.tags {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.tags .post-tag {
  margin-right: 1rem;
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
}
.tags .post-tag:hover {
  color: var(--accent, #0074d9);
}
.footer {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 4rem;
  width: 100%;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 48.75rem;
  width: 100%;
  font-size: 1rem;
  border-top: 1px solid var(--color-10, rgba(41,41,41,0.10));
}
.footer__content > * {
  margin-top: 2rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding-left: 0;
  font-size: 0.875rem;
}
.footer__links li {
  margin-right: 2rem;
}
.footer__links li:last-child {
  margin-right: 0;
}
.footer__links a {
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--accent, #0074d9);
}
.footer__attribution {
  font-size: 0.875rem;
  color: var(--color-80, rgba(41,41,41,0.80));
}
.not-found {
  text-align: center;
  padding: 6rem 0;
}
.not-found h1 {
  font-size: 5rem;
  color: var(--accent, #0074d9);
  letter-spacing: 0.05em;
}
.not-found p {
  font-size: 1.25rem;
  color: var(--color-80, rgba(41,41,41,0.80));
  margin-top: 1rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  padding-left: 0;
}
.card {
  background: var(--background, #fffffe);
  border: 1px solid var(--color-10, rgba(41,41,41,0.10));
  padding: 1.6rem;
}
.card h4 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.card p {
  color: var(--color-80, rgba(41,41,41,0.80));
  font-size: 0.95rem;
  margin: 0 0 1.1rem;
}
.btn {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--accent, #0074d9);
  color: var(--accent, #0074d9);
  background: transparent;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--accent, #0074d9);
  color: var(--background, #fffffe);
}
.tag, .badge {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--color-10, rgba(41,41,41,0.10));
  color: var(--color-80, rgba(41,41,41,0.80));
  text-decoration: none;
  margin-right: 0.5rem;
}
a.tag:hover, a.badge:hover {
  color: var(--accent, #0074d9);
  border-color: var(--accent, #0074d9);
}
.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-80, rgba(41,41,41,0.80));
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.breadcrumb li + li::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--color-30, rgba(41,41,41,0.30));
}
.breadcrumb li.active {
  color: var(--color, #292929);
}
.progress-wrapper {
  margin: 1rem 0;
}
.progress-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-80, rgba(41,41,41,0.80));
  margin-bottom: 0.4rem;
}
progress {
  width: 100%;
  height: 0.5rem;
  border: 1px solid var(--color-10, rgba(41,41,41,0.10));
  background: var(--background, #fffffe);
}
progress::-webkit-progress-bar {
  background: var(--background, #fffffe);
}
progress::-webkit-progress-value {
  background: var(--accent, #0074d9);
}
progress::-moz-progress-bar {
  background: var(--accent, #0074d9);
}
.alert {
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-10, rgba(41,41,41,0.10));
  border-left: 3px solid var(--accent, #0074d9);
  margin: 1.25rem 0;
  font-size: 0.95rem;
}
.icon {
  font-size: 1.15em;
  line-height: 1;
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
.post__header h1 {
    font-size: 1.875rem;
  }
.header__content {
    flex-direction: column;
    align-items: flex-start;
  }
.nav__list {
    flex-wrap: wrap;
  }
.post__pagination {
    flex-direction: column;
    align-items: flex-start;
  }
.post__pagination a {
    max-width: 100%;
  }
.post__pagination > *:only-child {
    margin-left: 0;
    margin-right: 0;
  }
}
@media print {
  .header, .footer, .post__aside, .post__pagination {
    display: none;
  }
body {
    background: #ffffff;
    color: #000000;
    font-size: 12pt;
  }
}