@charset "UTF-8";
:root {
  --text-color: #2a2521;
  --background-color: #f3f0eb;
  --brand-color: #2a7ae2;
  --brand-color-dark: #1756a9;
  --grey-color: #8a8178;
  --grey-color-light: #e8e8e8;
  --grey-color-dark: #424242;
  --code-background: #eef;
  --table-row-alt: #f9f9f9;
  --table-header-bg: #f0f0f0;
  --table-border: #e0e0e0;
  --photo-border-color: #f5f0e8;
}

[data-theme=dark] {
  --text-color: #c5bdb5;
  --background-color: #1a1a1a;
  --brand-color: #5ca0f2;
  --brand-color-dark: #7db5f5;
  --grey-color: #a69d94;
  --grey-color-light: #333;
  --grey-color-dark: #ccc;
  --code-background: #2d2d2d;
  --table-row-alt: #242424;
  --table-header-bg: #2a2a2a;
  --table-border: #444;
  --photo-border-color: var(--text-color);
}

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 1.25rem/1.65 "Newsreader", Georgia, "Times New Roman", serif;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 0.9375rem;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Horizontal rules
 */
hr {
  border: none;
  border-top: 1px solid var(--grey-color-light);
  margin: 2rem 0;
  transition: border-color 0.3s ease;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 0.875rem;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 1.875rem;
}

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

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: var(--grey-color-light);
  text-underline-offset: 0.15em;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
a:visited {
  color: var(--text-color);
}
a:hover {
  opacity: 0.6;
  text-decoration-color: var(--grey-color);
}
.social-media-list a:hover {
  opacity: 0.6;
}

/**
 * Blockquotes
 */
blockquote {
  color: var(--text-color);
  border-left: 2px solid var(--grey-color-light);
  margin: 3.5rem 0 3.5rem 1rem;
  padding-left: 1.25rem;
  font-size: 1.2rem;
  font-style: normal;
  transition: color 0.3s ease, border-color 0.3s ease;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 0.9375rem;
  border: 1px solid var(--grey-color-light);
  border-radius: 0.1875rem;
  background-color: var(--code-background);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

code {
  padding: 0.0625rem 0.3125rem;
}

pre {
  padding: 0.5rem 0.75rem;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: calc(40.625rem - 1.875rem);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

/**
 * Clearfix
 */
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  fill: var(--grey-color);
  padding-right: 0.3125rem;
  vertical-align: text-top;
  transition: fill 0.3s ease;
}

.social-media-list li + li {
  padding-top: 0.3125rem;
}

/**
 * Tables
 */
table {
  margin-bottom: 1.875rem;
  width: 100%;
  text-align: left;
  color: var(--text-color);
  border-collapse: collapse;
  border: 1px solid var(--table-border);
  transition: color 0.3s ease, border-color 0.3s ease;
}
table tr:nth-child(even) {
  background-color: var(--table-row-alt);
}
table th, table td {
  padding: 0.625rem 0.9375rem;
}
table th {
  background-color: var(--table-header-bg);
  border: 1px solid var(--table-border);
}
table td {
  border: 1px solid var(--table-border);
}

/**
 * Site header
 */
.site-header {
  min-height: 3.5rem;
  padding-top: min(2.8125rem, 3vw);
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--background-color);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1rem;
  transform: translateY(100%);
  background: linear-gradient(to bottom, var(--background-color), transparent);
  pointer-events: none;
}

.site-title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 3.75rem;
  letter-spacing: -0.03125rem;
  margin-bottom: 0;
  float: left;
  text-decoration: none;
}
.site-title, .site-title:visited {
  color: var(--text-color);
  text-decoration: none;
}
.site-title:hover {
  opacity: 0.6;
  text-decoration: none;
}

.site-nav {
  float: right;
  line-height: 3.75rem;
  display: flex;
  align-items: center;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .trigger {
  display: inline;
}
.site-nav .page-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-color);
  line-height: 1.65;
  text-decoration: none;
  position: relative;
  top: -0.25rem;
  transition: opacity 0.2s ease;
}
.site-nav .page-link:hover {
  opacity: 0.6;
  text-decoration: none;
}
.site-nav .nav-separator {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey-color);
  position: relative;
  top: -0.25rem;
  margin: 0 0.625rem;
}
@media screen and (max-width: 37.5rem) {
  .site-nav {
    position: absolute;
    top: min(3.375rem, 3vw + 0.5rem);
    right: 0.5rem;
    background-color: transparent;
    border: none;
    text-align: right;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .site-nav label[for=nav-trigger] {
    display: block !important;
    width: 2.25rem;
    height: 2.25rem;
    z-index: 102;
    cursor: pointer;
    position: relative;
  }
  .site-nav .menu-icon {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 2.25rem;
    height: 2.25rem;
    text-align: center;
  }
  .site-nav .menu-line {
    display: block !important;
    width: 18px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .site-nav input:checked ~ label .menu-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-nav input:checked ~ label .menu-line:nth-child(2) {
    opacity: 0;
  }
  .site-nav input:checked ~ label .menu-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .site-nav .trigger {
    display: none !important;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 101;
    text-align: right;
  }
  .site-nav input:checked ~ .trigger {
    display: block !important;
  }
  .site-nav .page-link {
    display: block;
    padding: 0.5rem 0.4375rem 0.5rem 0;
    text-align: right;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
  .site-nav .nav-separator {
    display: none;
  }
}

/**
 * Site footer
 */
.site-footer {
  padding: 1.875rem 0 1.875rem 0;
  margin-top: 1.875rem;
  text-align: center;
}

.footer-description {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.footer-rss {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey-color);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.footer-rss a {
  color: var(--grey-color);
}

/**
 * Page content
 */
.page-content {
  padding: 4rem 0 1.875rem 0;
  flex: 1;
}

.page-heading {
  font-size: 2rem;
}

.post-list-heading {
  font-size: 1.75rem;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 1.875rem;
}

.post-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-color);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.post-list .post-meta {
  font-size: 0.875rem;
}

.post-list h3 a.post-link {
  font-size: 1.75rem;
  line-height: 1.25;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  text-underline-offset: 0.15em;
  transition: text-decoration-color 0.2s ease;
}
.post-list h3 a.post-link:hover {
  text-decoration: underline !important;
  text-decoration-color: var(--grey-color) !important;
  opacity: 1;
}
.post-list h3 a.post-link:visited {
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 0;
}
.post-header .post-title {
  margin-bottom: 1.875rem;
}
.post-header .post-meta {
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 2.625rem;
  letter-spacing: -0.0625rem;
  line-height: 1.25;
}
@media screen and (max-width: 50rem) {
  .post-title {
    font-size: 2.25rem;
  }
}

.post-subtitle {
  font-size: 1.25rem;
  color: var(--grey-color);
  font-style: italic;
  margin-top: -1.5rem;
  margin-bottom: 1.875rem;
  transition: color 0.3s ease;
}

.post-content {
  margin-bottom: 0.9375rem;
}
.post-content figure {
  margin: 2.5rem 0;
}
.post-content figure img {
  display: block;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  background: var(--photo-border-color);
  padding: 0.75rem;
  border-radius: 2px 4px 3px 5px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.14), -1px 4px 20px rgba(0, 0, 0, 0.08), 2px 1px 4px rgba(0, 0, 0, 0.06);
}
.post-content figure iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.post-content figure figcaption {
  margin-top: 0.75rem;
  line-height: 1.3;
  font-size: 1rem;
  font-style: italic;
  color: var(--grey-color);
  text-align: center;
}
.post-content .gallery-carousel {
  margin: 2.5rem 0;
  position: relative;
}
.post-content .gallery-carousel .splide__track {
  overflow: hidden;
  position: relative;
}
.post-content .gallery-carousel .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-content .gallery-carousel .splide__slide figure {
  margin: 0;
  width: 100%;
  position: relative;
}
.post-content .gallery-carousel .splide__slide .media-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 0.75rem solid var(--photo-border-color);
  border-radius: 2px 4px 3px 5px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.14), -1px 4px 20px rgba(0, 0, 0, 0.08), 2px 1px 4px rgba(0, 0, 0, 0.06);
}
.post-content .gallery-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.post-content .gallery-carousel .splide__slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.post-content .gallery-carousel--video .media-wrapper {
  min-height: 200px;
}
.post-content .gallery-carousel .video-click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.post-content .gallery-carousel .splide__arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.post-content .gallery-carousel .splide__arrow {
  position: absolute;
  top: calc(min(100vw - 1.875rem, 38.75rem) * 0.5625 / 2);
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.post-content .gallery-carousel .splide__arrow svg {
  fill: #fff;
  width: 1rem;
  height: 1rem;
}
.post-content .gallery-carousel .splide__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.post-content .gallery-carousel .splide__arrow--prev {
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.7);
}
.post-content .gallery-carousel .splide__arrow--next {
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.7);
}
.post-content .gallery-carousel .splide__arrow:disabled {
  display: none;
}
.post-content .gallery-carousel .splide__pagination {
  position: absolute;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.28rem;
  padding: 0.25rem 0.75rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 1rem;
  top: calc(min(100vw - 1.875rem, 38.75rem) * 0.5625 - 2.75rem);
}
@media (max-width: 389px) {
  .post-content .gallery-carousel .splide__pagination {
    display: none;
  }
}
.post-content .gallery-carousel .splide__pagination li {
  line-height: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.post-content .gallery-carousel .splide__pagination__page {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.post-content .gallery-carousel .splide__pagination__page.is-active {
  background: #fff;
}
.post-content .gallery-carousel .splide__pagination__page:hover {
  background: rgba(255, 255, 255, 0.8);
}
.post-content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 50rem) {
  .post-content h2 {
    font-size: 1.75rem;
  }
}
.post-content h3 {
  font-size: 1.625rem;
}
@media screen and (max-width: 50rem) {
  .post-content h3 {
    font-size: 1.375rem;
  }
}
.post-content h4 {
  font-size: 1.25rem;
}
@media screen and (max-width: 50rem) {
  .post-content h4 {
    font-size: 1.125rem;
  }
}

/**
 * Theme toggle
 */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: opacity 0.2s ease;
  color: var(--text-color);
  position: relative;
  top: -1px;
}
.theme-toggle:hover {
  opacity: 0.6;
}
.theme-toggle:focus {
  outline: none;
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--grey-color);
  outline-offset: 2px;
}
.theme-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}
.theme-toggle .sun-icon {
  display: none;
}
.theme-toggle .moon-icon {
  display: block;
}

[data-theme=dark] .theme-toggle .sun-icon {
  display: block;
}
[data-theme=dark] .theme-toggle .moon-icon {
  display: none;
}

@media screen and (max-width: 37.5rem) {
  .theme-toggle {
    position: relative;
    top: 1px;
    margin: 0;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/**
 * Lightbox
 */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay .lightbox-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay .lightbox-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay .lightbox-media img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lightbox-overlay .lightbox-media img.loaded {
  opacity: 1;
}
.lightbox-overlay .lightbox-media img.outgoing {
  opacity: 0;
}
.lightbox-overlay .lightbox-media iframe {
  width: 80vw;
  height: 45vw;
  max-width: 1200px;
  max-height: 675px;
  border: none;
}

.post-content figure img,
.post-content .gallery-carousel img {
  cursor: zoom-in;
}

.lightbox-counter {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1001;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.7);
  color: #222;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: scale(1.1);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-arrow--prev {
  left: 20px;
}
.lightbox-arrow--next {
  right: 20px;
}

.lightbox-caption {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: #c5bdb5;
  padding: 10px 15px;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
  z-index: 1001;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  pointer-events: none;
  box-sizing: border-box;
}
.lightbox-caption.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lightbox-spin 0.8s linear infinite;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.lightbox-spinner.visible {
  opacity: 1;
}

@keyframes lightbox-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/**
 * Callout notes
 */
.post-content aside.callout {
  background: #ebe7e1;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.15;
  font-style: italic;
}
[data-theme=dark] .post-content aside.callout {
  background: #2a2725;
}
.post-content aside.callout p {
  margin: 0;
}

/**
 * Post content links
 */
/**
 * Updates
 */
.update-excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.update .post-title {
  font-size: 0.875rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
}

.update-day {
  margin-right: 0.5em;
}

.updates-index .page-heading {
  margin-bottom: 2.5rem;
}

.updates-index .post-list h3 a.post-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  text-decoration: underline;
  text-decoration-color: rgba(128, 128, 128, 0.3);
  transition: text-decoration-color 0.2s ease;
}
.updates-index .post-list h3 a.post-link:hover {
  text-decoration-color: var(--grey-color);
}
.updates-index .post-list h3 a.post-link:visited {
  text-decoration-color: rgba(128, 128, 128, 0.3);
}
.updates-index .post-list h3 a.post-link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.2s ease;
}
.updates-index .post-list h3 a.post-link:hover::after {
  transform: translateX(3px);
}

.updates-index .post-list h3 {
  margin-top: 0;
  margin-bottom: 0;
}

/**
 * Breadcrumb
 */
.breadcrumb {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.breadcrumb a {
  color: var(--grey-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--text-color);
}

.post-content a {
  color: #e87400;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.15em;
  transition: text-decoration-color 0.2s ease;
}
[data-theme=dark] .post-content a {
  font-weight: normal;
}
.post-content a:visited {
  color: #e87400;
}
.post-content a:hover {
  text-decoration-color: #e87400;
  opacity: 1;
}

/**
 * Contact toggle
 */
.contact-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin: 0 0.875rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: opacity 0.2s ease;
  color: var(--text-color);
  position: relative;
  top: -2px;
}
.contact-toggle:hover {
  opacity: 0.6;
}
.contact-toggle:focus {
  outline: none;
}
.contact-toggle:focus-visible {
  outline: 2px solid var(--grey-color);
  outline-offset: 2px;
}
.contact-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media screen and (max-width: 37.5rem) {
  .contact-toggle {
    position: relative;
    top: 1px;
    margin: 0 0.875rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/**
 * Contact modal
 */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  background: var(--background-color);
  border-radius: 1rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.active .contact-modal {
  transform: translateY(0);
}
.contact-modal h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  color: var(--text-color);
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--grey-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.contact-modal-close:hover {
  background: rgba(128, 128, 128, 0.1);
  color: var(--text-color);
  transform: scale(1.05);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid rgba(128, 128, 128, 0.3);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--background-color);
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e87400;
  box-shadow: 0 0 0 3px rgba(232, 116, 0, 0.15);
}
.contact-form textarea {
  resize: none;
  min-height: 100px;
}

.contact-submit {
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: var(--text-color);
  border: 1.5px solid #e87400;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.contact-submit:hover {
  background: #e87400;
  color: #fff;
  border-color: #e87400;
  transform: translateY(-2px);
}
.contact-submit:disabled {
  background: var(--grey-color);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.contact-success,
.contact-error {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}
.contact-success svg,
.contact-error svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
}
.contact-success h2,
.contact-error h2 {
  margin-bottom: 0.75rem;
}
.contact-success p,
.contact-error p {
  color: var(--grey-color);
  margin: 0;
}

.contact-success svg {
  color: #22c55e;
}

.contact-error svg {
  color: #ef4444;
}

.contact-retry {
  margin-top: 1.25rem;
  padding: 0.75rem 1.75rem;
  background: none;
  border: 1.5px solid var(--grey-color);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--text-color);
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact-retry:hover {
  background: var(--grey-color-light);
  transform: translateY(-1px);
}

/**
 * Syntax highlighting styles
 */
.highlight {
  background: var(--code-background);
  transition: background-color 0.3s ease;
}
.highlighter-rouge .highlight {
  background: var(--code-background);
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

[data-theme=dark] .highlight .c {
  color: #6a9955;
}
[data-theme=dark] .highlight .err {
  color: #f48771;
  background-color: transparent;
}
[data-theme=dark] .highlight .k {
  color: #569cd6;
  font-weight: bold;
}
[data-theme=dark] .highlight .o {
  color: #d4d4d4;
}
[data-theme=dark] .highlight .cm {
  color: #6a9955;
}
[data-theme=dark] .highlight .cp {
  color: #c586c0;
}
[data-theme=dark] .highlight .c1 {
  color: #6a9955;
}
[data-theme=dark] .highlight .cs {
  color: #6a9955;
  font-weight: bold;
}
[data-theme=dark] .highlight .gd {
  color: #f48771;
  background-color: #3e2323;
}
[data-theme=dark] .highlight .gd .x {
  color: #f48771;
  background-color: #5c2626;
}
[data-theme=dark] .highlight .gr {
  color: #f48771;
}
[data-theme=dark] .highlight .gh {
  color: #c586c0;
}
[data-theme=dark] .highlight .gi {
  color: #89d185;
  background-color: #1e3a1e;
}
[data-theme=dark] .highlight .gi .x {
  color: #89d185;
  background-color: #2d4a2d;
}
[data-theme=dark] .highlight .go {
  color: #9e9e9e;
}
[data-theme=dark] .highlight .gp {
  color: #dcdcaa;
}
[data-theme=dark] .highlight .gu {
  color: #c586c0;
}
[data-theme=dark] .highlight .gt {
  color: #f48771;
}
[data-theme=dark] .highlight .kc {
  color: #569cd6;
}
[data-theme=dark] .highlight .kd {
  color: #569cd6;
}
[data-theme=dark] .highlight .kp {
  color: #569cd6;
}
[data-theme=dark] .highlight .kr {
  color: #569cd6;
}
[data-theme=dark] .highlight .kt {
  color: #4ec9b0;
}
[data-theme=dark] .highlight .m {
  color: #b5cea8;
}
[data-theme=dark] .highlight .s {
  color: #ce9178;
}
[data-theme=dark] .highlight .na {
  color: #9cdcfe;
}
[data-theme=dark] .highlight .nb {
  color: #dcdcaa;
}
[data-theme=dark] .highlight .nc {
  color: #4ec9b0;
}
[data-theme=dark] .highlight .no {
  color: #4fc1ff;
}
[data-theme=dark] .highlight .ni {
  color: #c586c0;
}
[data-theme=dark] .highlight .ne {
  color: #f48771;
}
[data-theme=dark] .highlight .nf {
  color: #dcdcaa;
}
[data-theme=dark] .highlight .nn {
  color: #4ec9b0;
}
[data-theme=dark] .highlight .nt {
  color: #569cd6;
}
[data-theme=dark] .highlight .nv {
  color: #9cdcfe;
}
[data-theme=dark] .highlight .w {
  color: #d4d4d4;
}
[data-theme=dark] .highlight .mf {
  color: #b5cea8;
}
[data-theme=dark] .highlight .mh {
  color: #b5cea8;
}
[data-theme=dark] .highlight .mi {
  color: #b5cea8;
}
[data-theme=dark] .highlight .mo {
  color: #b5cea8;
}
[data-theme=dark] .highlight .sb {
  color: #ce9178;
}
[data-theme=dark] .highlight .sc {
  color: #ce9178;
}
[data-theme=dark] .highlight .sd {
  color: #ce9178;
}
[data-theme=dark] .highlight .s2 {
  color: #ce9178;
}
[data-theme=dark] .highlight .se {
  color: #d7ba7d;
}
[data-theme=dark] .highlight .sh {
  color: #ce9178;
}
[data-theme=dark] .highlight .si {
  color: #ce9178;
}
[data-theme=dark] .highlight .sx {
  color: #ce9178;
}
[data-theme=dark] .highlight .sr {
  color: #d16969;
}
[data-theme=dark] .highlight .s1 {
  color: #ce9178;
}
[data-theme=dark] .highlight .ss {
  color: #ce9178;
}
[data-theme=dark] .highlight .bp {
  color: #dcdcaa;
}
[data-theme=dark] .highlight .vc {
  color: #9cdcfe;
}
[data-theme=dark] .highlight .vg {
  color: #9cdcfe;
}
[data-theme=dark] .highlight .vi {
  color: #9cdcfe;
}
[data-theme=dark] .highlight .il {
  color: #b5cea8;
}

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