@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.highlight {
  background: #2B3F4A;
  color: #FAF7F2;
  border-radius: 6px;
  padding: 15px;
  margin: 2em 0;
  overflow-x: auto;
  font-family: "Courier New", "Courier", monospace;
  font-size: 0.9em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.highlight .c, .highlight .c1, .highlight .cm, .highlight .cp, .highlight .cs {
  color: #6B8B9B;
  font-style: italic;
}
.highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
  color: #A3834C;
  font-weight: bold;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .s1 {
  color: #8BA88E;
}
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .il {
  color: #D19A66;
}
.highlight .n, .highlight .nx, .highlight .p {
  color: #FAF7F2;
}
.highlight .na, .highlight .nc, .highlight .nd, .highlight .ne, .highlight .nf, .highlight .ni, .highlight .nl, .highlight .nn, .highlight .nt, .highlight .nv {
  color: #E5C07B;
}
.highlight .o, .highlight .ow {
  color: #A3834C;
}
.highlight .err {
  color: #e74c3c;
  background-color: transparent;
}

body {
  background-color: #FAF7F2;
  color: #2c3e50;
  font-family: "Lora", "Georgia", serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", "Garamond Premier", "Palatino Linotype", "Palatino", serif;
  color: #3C5866;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.site-header {
  background-color: #3C5866;
  color: #fff;
  padding: 1.5em 0;
}
.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header .site-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(163, 131, 76, 0.8);
  transition: transform 0.3s ease;
}
.site-header .site-logo:hover {
  transform: scale(1.05);
}
.site-header a {
  color: #fff;
  text-decoration: none;
  border-bottom: none;
}
.site-header a:hover {
  color: #A3834C;
}

.site-title {
  font-family: "Lora", "Garamond Premier", "Palatino Linotype", "Palatino", serif;
  font-size: 1.5em;
  font-weight: bold;
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer {
  background-color: #3C5866;
  color: #fff;
  padding: 2em 0;
  margin-top: 4em;
  font-size: 0.9em;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  border-top: 4px solid #A3834C;
}
table th {
  background-color: #6B8B9B;
  color: white;
  text-align: left;
  padding: 12px;
}
table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
table tr:nth-child(even) {
  background-color: rgba(107, 139, 155, 0.05);
}

article ul {
  list-style-type: none;
  padding-left: 1.5em;
}
article ul li {
  position: relative;
  margin-bottom: 0.5em;
}
article ul li::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #A3834C;
  transform: rotate(45deg);
}

article ol {
  padding-left: 1.5em;
}
article ol li {
  margin-bottom: 0.5em;
}
article ol li::marker {
  color: #A3834C;
  font-weight: bold;
}

.site-nav {
  line-height: 1.5;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: fixed;
    top: 9px;
    right: 8px;
    background-color: #3C5866;
    border: 1px solid rgba(163, 131, 76, 0.3);
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: #fff;
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
    margin-left: 0;
  }
}

#nav-trigger {
  display: none;
}

.post-meta {
  font-size: 0.9em;
  color: #6B8B9B;
}

.post-title {
  font-size: 2.5em;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

Tip, .tip {
  display: block;
  padding: 1.2em;
  background-color: rgba(107, 139, 155, 0.1);
  border-left: 5px solid #6B8B9B;
  margin: 2em 0;
  border-radius: 0 4px 4px 0;
}
Tip[warning], Tip.warning, .tip[warning], .tip.warning {
  background-color: rgba(231, 76, 60, 0.05);
  border-left-color: #e74c3c;
  color: #c0392b;
}
Tip p:first-child, .tip p:first-child {
  margin-top: 0;
}
Tip p:last-child, .tip p:last-child {
  margin-bottom: 0;
}

.post-tags {
  margin-top: 3em;
  padding-top: 1.5em;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  font-size: 0.9em;
}
.post-tags strong {
  color: #3C5866;
  margin-right: 10px;
}
.post-tags .tag {
  display: inline-block;
  background-color: rgba(107, 139, 155, 0.1);
  color: #3C5866;
  padding: 4px 12px;
  margin: 0 5px 5px 0;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid rgba(107, 139, 155, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.post-tags .tag:hover {
  background-color: #A3834C;
  color: white;
  border-color: #A3834C;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  border-top: 4px solid #A3834C;
}
table th {
  background-color: #6B8B9B;
  color: white;
  text-align: left;
  padding: 12px;
}
table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
table tr:nth-child(even) {
  background-color: rgba(107, 139, 155, 0.05);
}

article ul {
  list-style-type: none;
  padding-left: 1.5em;
}
article ul li {
  position: relative;
  margin-bottom: 0.5em;
}
article ul li::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #A3834C;
  transform: rotate(45deg);
}

article ol {
  padding-left: 1.5em;
}
article ol li {
  margin-bottom: 0.5em;
}
article ol li::marker {
  color: #A3834C;
  font-weight: bold;
}

.site-nav {
  line-height: 1.5;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: fixed;
    top: 9px;
    right: 8px;
    background-color: #3C5866;
    border: 1px solid rgba(163, 131, 76, 0.3);
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: #fff;
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
    margin-left: 0;
  }
}

#nav-trigger {
  display: none;
}

.post-meta {
  font-size: 0.9em;
  color: #6B8B9B;
}

.post-title {
  font-size: 2.5em;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

Tip, .tip {
  display: block;
  padding: 1.2em;
  background-color: rgba(107, 139, 155, 0.1);
  border-left: 5px solid #6B8B9B;
  margin: 2em 0;
  border-radius: 0 4px 4px 0;
}
Tip[warning], Tip.warning, .tip[warning], .tip.warning {
  background-color: rgba(231, 76, 60, 0.05);
  border-left-color: #e74c3c;
  color: #c0392b;
}
Tip p:first-child, .tip p:first-child {
  margin-top: 0;
}
Tip p:last-child, .tip p:last-child {
  margin-bottom: 0;
}

.post-list {
  list-style: none;
  padding: 0;
}
.post-list li {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}
.post-list li::before {
  display: none;
}
.post-list h3 {
  margin: 0.2em 0;
}
.post-list .post-link {
  text-decoration: none;
  color: #3C5866;
  border-bottom: none;
}
.post-list .post-link:hover {
  color: #A3834C;
  border-bottom: none;
}

a {
  color: #2C4654;
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 70, 84, 0.3);
  transition: all 0.2s ease;
}
a:hover {
  color: #3C5866;
  border-bottom-color: #3C5866;
}

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