* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #000000;
  background: #f2f5f5;
}

a {
  color: #00665e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.site-header {
  background: #00665e;
  color: white;
  padding: 22px 24px;
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}
.site-brand:hover {
  text-decoration: none;
}

.site-logo {
  height: 32px;
  width: auto;
  display: block;
}

.site-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.site-nav a {
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a:hover {
  color: #d8b56d;
  text-decoration: none;
}

.content {
  max-width: 760px;
  margin: 36px auto;
  padding: 0 24px;
}

article {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px 44px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.25;
  color: #000000;
  text-transform: capitalize;
}

h1 {
  font-size: 30px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e0e0e0;
}

h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

h3 {
  font-size: 18px;
  margin: 28px 0 10px;
}

p {
  margin: 0 0 14px;
}

ul, ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 6px;
}

strong {
  font-weight: 600;
}

blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  background: #eaf4f3;
  border-left: 4px solid #d8b56d;
  border-radius: 6px;
  color: #000000;
}
blockquote p:last-child {
  margin-bottom: 0;
}

code {
  font-family: "SF Mono", Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 14px;
  background: #eaf4f3;
  padding: 2px 6px;
  border-radius: 4px;
  color: #000000;
}

pre {
  background: #eaf4f3;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 16px;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
table th, table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
}
table th {
  background: #eaf4f3;
  font-weight: 600;
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 32px 0;
}

article p strong:only-child {
  display: inline;
}

.site-footer {
  margin-top: 48px;
  padding: 28px 24px 40px;
  background: transparent;
  text-align: center;
  color: #666666;
  font-size: 14px;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer a {
  color: #666666;
  text-decoration: underline;
}
.site-footer a:hover {
  color: #00665e;
}

.site-footer-secondary {
  font-size: 13px;
}

.brand-accent {
  color: #00665e;
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 18px;
  }
  .site-title {
    font-size: 16px;
  }
  .site-logo {
    height: 28px;
  }
  .site-nav {
    gap: 14px;
  }
  .site-nav a {
    font-size: 13px;
  }
  .content {
    margin: 20px auto;
    padding: 0 14px;
  }
  article {
    padding: 26px 22px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 19px;
  }
  h3 {
    font-size: 17px;
  }
}

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