* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #ffffff;
  color: #050505;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
}
.site-root {
  min-height: 100vh;
  background: #ffffff;
  color: #050505;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: 68px;
  border-bottom: 1px solid #e4e4e4;
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #050505;
  font-size: 19px;
  font-weight: 700;
}

.brand-mark {
  display: block;
  width: 20px;
  height: auto;
  flex: 0 0 auto;
}

.header-label {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #e4e4e4;
  color: #858585;
  font-size: 13px;
  font-weight: 620;
}

.page {
  width: min(790px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 88px;
}

.article {
  min-width: 0;
}

.article-heading {
  margin-bottom: 32px;
}

.article-heading > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #595959;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-heading p {
  max-width: 620px;
  margin: 0;
  color: #595959;
  font-size: 15px;
  line-height: 1.65;
}

.prose {
  color: #050505;
  font-size: 15px;
  line-height: 1.75;
}

.table-wrap {
  overflow-x: auto;
  margin: 0;
  border: 1px solid #e4e4e4;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th {
  padding: 9px 12px;
  border-bottom: 1px solid #cccccc;
  background: #fafafa;
  color: #050505;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

td {
  padding: 10px 12px;
  border-top: 1px solid #e4e4e4;
  color: #595959;
  vertical-align: top;
}

#edge-status {
  font-weight: 650;
}

@media (max-width: 840px) {
  .site-header-inner {
    padding: 0 12px;
  }

  .header-label {
    display: none;
  }

  .page {
    padding-top: 42px;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 30px, 1180px);
    padding-top: 34px;
  }
}
