/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background: 0 0;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

:root {
  --bg: #101317;
  --bg-subtle: #171b21;
  --bar: #17284d;
  --bar-ink: #dbe4f7;
  --ink: #e4e7ec;
  --ink-muted: #8b93a3;
  --border: #262b33;
  --accent: #7ea3ec;
  --accent-hover: #a9c3f4;
  --accent-post: #e0a860;
  color-scheme: dark;
}

:root[data-theme=dark] {
  --bg: #101317;
  --bg-subtle: #171b21;
  --bar: #17284d;
  --bar-ink: #dbe4f7;
  --ink: #e4e7ec;
  --ink-muted: #8b93a3;
  --border: #262b33;
  --accent: #7ea3ec;
  --accent-hover: #a9c3f4;
  --accent-post: #e0a860;
  color-scheme: dark;
}

:root[data-theme=light] {
  --bg: #f8f9fb;
  --bg-subtle: #eef1f5;
  --bar: #2650b0;
  --bar-ink: #f2f5fc;
  --ink: #1b1f23;
  --ink-muted: #667085;
  --border: #dde2e8;
  --accent: #2952b3;
  --accent-hover: #17307a;
  --accent-post: #a86a1f;
  color-scheme: light;
}

/*  Reset & basics
 * ------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/*  Typography
 * ------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 12px;
}

h1 {
  font-size: 26px;
  line-height: 1.3;
}

h2 {
  font-size: 21px;
  line-height: 1.35;
}

h3 {
  font-size: 18px;
  line-height: 1.4;
}

h4 {
  font-size: 16px;
  line-height: 1.4;
}

p {
  margin: 0 0 16px;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

hr {
  border: solid var(--border);
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 24px;
  height: 0;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

/*  Links
 * ------------------------------------ */
a {
  color: var(--accent);
  text-decoration: none;
  outline: 0;
}

a:hover, a:focus {
  color: var(--accent-hover);
}

/*  Selection
 * ------------------------------------ */
::selection {
  background: var(--accent);
  color: var(--bg);
}

::-moz-selection {
  background: var(--accent);
  color: var(--bg);
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

body {
  -webkit-tap-highlight-color: var(--accent);
}

/*  Focus states
 * ------------------------------------ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header.site-header {
  background: var(--bar);
  color: var(--bar-ink);
  height: 42px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header.site-header .logo {
  color: var(--bar-ink);
  font-weight: 700;
  font-size: 15.5px;
}
header.site-header nav.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header.site-header nav.site-nav a {
  color: var(--bar-ink);
  opacity: 0.82;
  font-size: 13.5px;
  font-weight: 600;
}
header.site-header nav.site-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
header.site-header .theme-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--bar-ink);
  opacity: 0.82;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
}
header.site-header .theme-toggle:hover {
  opacity: 1;
  text-decoration: underline;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  margin-top: 40px;
}
footer.site-footer .wrap {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
}
footer.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}
footer.site-footer .footer-sep {
  margin: 0 8px;
  color: var(--border);
}

.intro {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px;
}

.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--bg);
}
.card:hover {
  border-color: var(--accent);
}
.card:hover .card-thumb-wrap {
  border-bottom-color: var(--accent);
}
.card:hover .title {
  color: var(--accent);
  text-decoration: underline;
}

.card-thumb-wrap {
  aspect-ratio: 16/10;
  background: var(--bg-subtle);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.meta {
  font-size: 12px;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}
.meta .kind {
  text-transform: lowercase;
}
.meta .kind.project {
  color: var(--accent);
  font-weight: 600;
}
.meta .kind.post {
  color: var(--accent-post);
  font-weight: 600;
}

.title {
  font-size: 16.5px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: var(--ink);
}

.excerpt {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 620px) {
  .feed {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 400px) {
  .feed {
    grid-template-columns: 1fr;
  }
}
.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 620px) {
  .wrap {
    padding: 0 14px;
  }
}
.page-content {
  max-width: 640px;
  margin: 32px auto 60px;
}
.page-content h1 {
  font-size: 24px;
  margin: 0 0 16px;
}
.page-content p {
  font-size: 15px;
  line-height: 1.65;
}

.post-container {
  max-width: 640px;
  margin: 32px auto 60px;
  position: relative;
  display: block;
}

.post-back {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.post-back:hover {
  color: var(--accent);
}

.post-meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.post-meta .kind {
  text-transform: lowercase;
}
.post-meta .kind.project {
  color: var(--accent);
  font-weight: 600;
}
.post-meta .kind.post {
  color: var(--accent-post);
  font-weight: 600;
}

.post-title {
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 26px;
}

img {
  max-width: 100%;
}

a:hover img {
  opacity: 0.85;
}

.image-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.image-container:hover .overlay {
  opacity: 1;
}
.image-container .image {
  display: block;
  width: 100%;
  height: auto;
}
.image-container .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.image-container .text {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*# sourceMappingURL=all.css.map */