@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

:root {
  --body-background: #fdfcfc;
  --body-background-foreground: #e6ebfb;
  --body-background-url: url("/assets/images/topography-light.svg");
  --section-background: rgb(254, 249, 245);
  --border: #7c84ae;
  --text: rgb(25, 25, 25);
  --shadow: rgb(227, 227, 227);
  --accent: #394aa5;
  --accent-2: #7583cf;
  --header-logo: #4556ed;
  --code-background: white;
  --code-color: black;
  --section-width: 600px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-background: hsl(192, 16%, 6%);
    --body-background-foreground: #2b2f45;
    --body-background-url: url("/assets/images/topography-dark.svg");
    --section-background: rgb(31, 30, 39);
    --border: #becfe4;
    --text: hsl(240, 1%, 83%);
    --shadow: hsl(198, 92%, 12%);
    --accent: #648ebe;
    --accent-2: #385b84;
    --header-logo: #418ee1;
    --code-background: rgba(0, 0, 0, 0.45);
    --code-color: #d2d2d2;
  }
}

@font-face {
  font-family: "PT Root UI";
  src: url("/assets/fonts/pt-root-ui_medium.woff2") format("woff2"), url("/assets/fonts/pt-root-ui_medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PT Root UI";
  src: url("/assets/fonts/pt-root-ui_bold.woff2") format("woff2"), url("/assets/fonts/pt-root-ui_bold.woff") format("woff");
  font-weight: 700;
  font-style: bold;
}
a, a:visited {
  font-family: "PT Root UI", sans-serif;
  color: var(--text);
  opacity: 90%;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  cursor: pointer;
}
a:hover, a:visited:hover {
  color: var(--accent);
  opacity: 95%;
  font-weight: 700;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  position: absolute;
  padding-bottom: 45px;
}

body {
  background-color: var(--body-background);
  background-image: var(--body-background-url);
}

blockquote {
  border-left: 2px var(--accent) solid;
  border-bottom: 4px var(--accent) solid;
  padding-left: 17px;
  padding-bottom: 12px;
  margin-left: 20px;
  margin-block: 2.5em;
}

code {
  background: var(--code-background);
  font-family: monospace;
  border-radius: 3px;
  padding: 2px 5px;
  font-size: 0.9em;
  margin: 2px;
  display: inline-block;
  color: var(--code-color);
}

pre {
  max-width: 100%;
  overflow: auto;
  background: var(--code-background);
  border-radius: 5px;
  border: 1px solid var(--border);
}
pre code {
  background: none;
  padding: 10px;
  display: inline-block;
}

@media (prefers-color-scheme: dark) {
  pre {
    border: none;
  }
}
section {
  --handle-padding: 3px;
  --handle-width: 6px;
  box-shadow: calc(var(--handle-width) * -0.5 - var(--handle-padding)) 0px 0 calc(-1 * var(--handle-padding)) var(--accent);
  border: solid 1px var(--border);
  padding: 35px;
  max-width: var(--section-width);
  background: var(--section-background);
  margin: 5vw;
  margin-left: 25vw;
  word-break: break-word;
}
section.footer {
  --handle-padding: 3px;
}
section:nth-of-type(2n + 1):not(:first-child) {
  margin-left: 15vw;
}
@media (max-width: 600px) {
  section {
    margin-left: 8vw;
    padding: 14px;
  }
  section:nth-of-type(2n + 1):not(:first-child) {
    margin-left: 5vw;
  }
}

h1, h2, h3 {
  font-family: "PT Serif", Georgia, sans-serif;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1.3rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

p {
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}
p a::before {
  content: "➤ ";
}

figcaption {
  font-style: italic;
  text-align: center;
  font-size: 0.9em;
  margin-top: 4px;
}

.kg-card {
  max-width: 100%;
}
.kg-card img.kg-image {
  max-width: inherit;
  height: unset;
}

.footer {
  padding: 25px;
  font-style: italic;
}

.nav {
  max-width: calc(var(--section-width) + 10vw);
  margin-left: 15vw;
}
.nav h1 {
  font-size: 1.8em;
  margin-bottom: 0;
}
.nav h1 .logo > svg {
  width: 1.75em;
  vertical-align: middle;
  display: inline;
  position: relative;
  transform: translateY(-3px);
  margin: 0.25em;
  margin-right: 0.75em;
}
.nav h1 .logo > svg path {
  fill: var(--header-logo) !important;
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav ul li {
  display: inline-block;
  margin: 5px;
}
.nav ul li:first-child {
  margin-left: 0;
}
.nav ul li a {
  padding: 1px 2px;
}
.nav ul li.nav-current a {
  border-bottom: 2px solid var(--text);
  font-weight: 700;
}
.nav ul li.nav-current a:hover {
  color: var(--text);
}
@media (max-width: 600px) {
  .nav {
    max-width: 90vw;
    margin-left: 5vw;
  }
  .nav h1 {
    font-size: 1.5em;
  }
  .nav h1 .logo > svg {
    width: 1.2em;
  }
}

ul.links-list {
  list-style: none;
  padding-left: 0;
  margin-block: 0;
}
ul.links-list a {
  display: inline-block;
  margin-block: 4px;
  padding-bottom: 0;
}
ul.links-list a::before {
  content: "➤ ";
}

.project-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.project-list li {
  line-height: 1.75;
}

.project h3 {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 1em;
}
.project h3 a {
  border-bottom-width: 2px;
}
.project:first-child h3 {
  margin-top: 0;
}

.post-feed .post-card-content:not(:last-of-type) {
  padding-block-end: 35px;
}
.post-feed .post-card-content {
  display: grid;
  align-items: center;
  justify-items: start;
  column-gap: 14px;
  row-gap: 8px;
  grid-template-columns: min-content auto;
}
.post-feed .post-card-content .star-icon {
  grid-column: 1;
  grid-row: 1;
  height: 24px;
}
.post-feed .post-card-content .post-entry-link {
  grid-column: 2;
  grid-row: 1;
  font-weight: 600;
  font-size: 18px;
}
.post-feed .post-card-content .post-card-excerpt {
  grid-column: 2;
  grid-row: 2;
  text-indent: 0em;
}

.date {
  font-size: 0.85em;
  padding-left: 15px;
}

.pagination {
  margin: 20px 0;
}
.pagination > * {
  margin: 10px;
}
.pagination > *:first-child {
  margin-left: 0;
}
.pagination > *:last-child {
  margin-left: 0;
}

#hero-pattern-attribution {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px;
  background-color: var(--body-background);
  opacity: 50%;
  color: var(--accent);
}
#hero-pattern-attribution a {
  color: var(--accent);
}

#loom-companion-mv3, #shadow-host-companion {
  display: none;
}

.kg-width-wide, .kg-width-full {
  /* Suppress invalid theme warnings */
}
