*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

:root {
  color-scheme: dark;
  --color-text: #c9d1d9;
  --color-muted: #6e7681;
  --color-link: #3fb950;
  --color-border: #30363d;
  --color-footer: #484f58;
  --font-body: 'Domine', serif;
  --font-heading: 'Open Sans', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --content-max: 920px;
  --gutter: 20px;
  --sidebar-width: 220px;
  --content-gap: 80px;
}

body {
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--color-text);
  background-color: #0d1117;
}

strong {
  font-weight: 700;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  text-wrap: balance;
  color: #e6edf3;
}

pre,
code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  line-height: 1.4;
}

code {
  background: #161b22;
  color: #3fb950;
  padding: 2px 5px;
  border-radius: 3px;
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
  border-radius: 0;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

br.clear {
  display: none;
}

img {
  height: auto;
}

.highlight {
  background: #161b22;
  color: #c9d1d9;
  border: 1px solid #30363d;
  border-radius: 4px;
}

#wrapper {
  padding: 0 var(--gutter);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

#main {
  display: flex;
  align-items: flex-start;
  gap: var(--content-gap);
}

#main article#content {
  flex: 1 1 620px;
  min-width: 0;
}
#main article#content p {
  margin: 10px 0;
}
#main article#content h1, #main article#content h2, #main article#content h3 {
  margin: 20px 0 0 0;
}
#main article#content h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
}
#main article#content h3 {
  font-size: 20px;
}
#main article#content img[align=left] {
  margin: 3px 15px 3px 0;
}
#main article#content img[align=right] {
  margin: 3px 0 3px 15px;
}
#main article#content header h1 {
  font-size: 28px;
}
#main article#content header.post {
  color: var(--color-muted);
  margin: 0 0 20px 0;
}
#main article#content header.post:first-child h1:first-child {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  color: #e6edf3;
}
#main article#content pre {
  margin: 10px 0;
  overflow: auto;
}
#main article#content ul {
  list-style: disc;
  margin: 0 0 0 20px;
}
#main article#content ul.site-posts {
  list-style: none;
  margin-left: 0;
}
#main article#content blockquote,
#main article#content q {
  border-left: 3px solid var(--color-link);
  background: #161b22;
  padding: 12px 16px;
  color: #8b949e;
  margin: 16px 0;
}
#main article#content footer.post {
  margin: 100px 0;
}
#main article#content footer.post aside {
  margin: 20px 0;
}
#main article#content #home-page h1 {
  font-size: 28px;
}

#main #sidebar {
  flex: 0 0 var(--sidebar-width);
  margin-top: 11px;
}
#main #sidebar section {
  margin-bottom: 50px;
}
#main #sidebar section h1 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 2;
  color: var(--color-link);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
#main #sidebar #about p {
  margin: 6px 0;
}
#main #sidebar #about i {
  margin-right: 0.3em;
}

#site-header {
  margin: 50px 0 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#site-header img {
  border-radius: 50%;
  box-shadow: 0 0 0 2px #3fb950, 0 0 14px rgba(63, 185, 80, 0.35);
}
#site-header .group h1 {
  margin: 4px 0;
}
#site-header .group h1 a {
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  color: var(--color-link);
}
#site-header .group #headline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
}

#site-footer {
  margin: 25px 0 50px 0;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  color: var(--color-footer);
}
#site-footer a {
  color: var(--color-footer);
}

@media screen and (max-width: 980px) {
  #wrapper {
    max-width: 540px;
  }
  #main {
    flex-direction: column;
    gap: 50px;
  }
  #site-header .group #headline {
    font-size: 13px;
  }
  #site-header {
    margin-top: 20px;
  }
  #main article#content {
    width: 100%;
  }
  #main #sidebar {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  #wrapper {
    padding: 0 10px;
  }
  #site-header {
    margin: 10px 0;
  }
  #site-footer {
    margin: 10px 0;
  }
}
.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--gutter);
  margin-top: 20px;
}

.bike-card {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #161b22;
}

.bike-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.bike-card__body {
  padding: 10px 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bike-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95em;
  color: #e6edf3;
  font-weight: bold;
}

.bike-card__short {
  margin: 0;
  font-size: 0.85em;
  color: var(--color-muted);
}

.bike-card__details {
  font-size: 0.85em;
  color: var(--color-muted);
  margin-top: 2px;
}
.bike-card__details summary {
  cursor: pointer;
  color: var(--color-link);
  list-style: none;
}
.bike-card__details p {
  margin: 8px 0 0;
  line-height: 1.4;
}

@media screen and (max-width: 600px) {
  .bikes-grid {
    grid-template-columns: 1fr;
  }
}
.bike-card__image {
  cursor: zoom-in;
}

.lightbox {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox__img {
  display: block;
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

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