/* Page CSS — post #20 */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: var(--gutter);
  padding-bottom: 0px;
  padding-left: var(--gutter);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  row-gap: 9px;
  column-gap: 9px;
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1;
  padding-top: 15px;
  padding-right: 26px;
  padding-bottom: 15px;
  padding-left: 26px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transition-behavior: normal, normal, normal, normal;
  transition-duration: 0.15s, 0.2s, 0.2s, 0.2s;
  transition-timing-function: ease, ease, ease, ease;
  transition-delay: 0s, 0s, 0s, 0s;
  transition-property: transform, box-shadow, background, border-color;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  color: rgb(255, 255, 255);
  box-shadow: var(--shadow-brand);
  background-color: var(--brand);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--brand-600);
}
.btn-ghost {
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
  background-color: var(--surface);
}
.btn-ghost:hover {
  border-top-color: rgb(58, 65, 80);
  border-right-color: rgb(58, 65, 80);
  border-bottom-color: rgb(58, 65, 80);
  border-left-color: rgb(58, 65, 80);
  transform: translateY(-2px);
}
.nav {
  position: sticky;
  top: 0px;
  z-index: 100;
  background-color: rgba(12, 14, 19, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, box-shadow;
}
.nav.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  row-gap: 11px;
  column-gap: 11px;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}
.brand__logo {
  height: 32px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  row-gap: 6px;
  column-gap: 6px;
}
.nav__links a {
  padding-top: 9px;
  padding-right: 14px;
  padding-bottom: 9px;
  padding-left: 14px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  font-weight: 550;
  font-size: 0.96rem;
  color: var(--ink-2);
  transition-behavior: normal, normal;
  transition-duration: 0.15s, 0.15s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: background, color;
}
.nav__links a:hover {
  color: var(--ink);
  background-color: var(--bg-soft-2);
}
.nav__links a.active {
  color: var(--brand);
}
.nav__cta {
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}
.nav__toggle {
  display: none;
  background-image: none;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  color: rgb(255, 255, 255);
}
.nav__toggle svg {
  width: 26px;
  height: 26px;
}
.footer .brand {
  color: rgb(255, 255, 255);
  margin-bottom: 14px;
}
.post-hero .container {
  max-width: 768px;
}
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn-ghost {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0px;
    right: 0px;
    flex-direction: column;
    align-items: stretch;
    padding-top: 14px;
    padding-right: var(--gutter);
    padding-bottom: 14px;
    padding-left: var(--gutter);
    row-gap: 4px;
    column-gap: 4px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--line);
    background-color: var(--surface);
  }
  .nav.is-open .nav__links a {
    padding-top: 12px;
    padding-right: 14px;
    padding-bottom: 12px;
    padding-left: 14px;
  }
}
@media (max-width: 720px) {
  .hero__cta .btn {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
}