:root {
  --wx-ink: #101311;
  --wx-green: #0E2B23;
  --wx-green-deep: #081C17;
  --wx-copper: #B4884B;
  --wx-copper-bright: #D9B678;
  --wx-copper-text: #8A6533;
  --wx-paper: #F6F2EA;
  --wx-paper-layer: #FCFAF5;
  --wx-stone: #5C625E;
  --wx-line: #C9C6BC;
  --wx-red: #8C3B2E;
  --wx-rail: 220px;
  --wx-max: 1280px;
  --wx-gutter: clamp(16px, 4vw, 48px);
  --wx-mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", "Noto Sans Mono", Consolas, monospace;
  --wx-sans: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --wx-head: "Arial Narrow", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --wx-shadow: 2px 2px 0 var(--wx-line);
  --wx-ease: cubic-bezier(.2,.7,.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-left: var(--wx-rail);
  background: var(--wx-paper);
  color: var(--wx-ink);
  font-family: var(--wx-sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

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

a {
  color: inherit;
}

ul,
ol {
  padding-left: 1.2em;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--wx-copper-bright);
  outline-offset: 3px;
}

::selection {
  background: var(--wx-copper);
  color: var(--wx-green-deep);
}

/* skip link */
.wx-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 14px;
  background: var(--wx-copper);
  color: var(--wx-green-deep);
  font-weight: 700;
  text-decoration: none;
}

.wx-skip-link:focus {
  left: 12px;
  top: 12px;
}

/* rail header */
.wx-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: var(--wx-rail);
  background: var(--wx-green);
  color: var(--wx-paper);
  border-right: 1px solid var(--wx-green-deep);
  overflow-y: auto;
}

.wx-rail__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 18px 20px;
  gap: 16px;
}

.wx-rail__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wx-brand {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--wx-paper);
  text-decoration: none;
}

.wx-brand__mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--wx-copper);
  color: var(--wx-copper-bright);
  font-family: var(--wx-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.wx-brand__text {
  display: block;
  min-width: 0;
}

.wx-brand__name {
  display: block;
  font-family: var(--wx-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
}

.wx-brand__subline {
  display: block;
  margin-top: 6px;
  color: var(--wx-copper-bright);
  font-family: var(--wx-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .02em;
}

.wx-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 10px;
  background: transparent;
  color: var(--wx-paper);
  border: 1px solid rgba(217, 182, 120, .45);
  cursor: pointer;
  transition: color 140ms ease-out, border-color 140ms ease-out, background-color 140ms ease-out;
}

.wx-nav-toggle:hover {
  color: var(--wx-copper-bright);
  border-color: var(--wx-copper-bright);
  background: rgba(217, 182, 120, .08);
}

.wx-nav-toggle__label {
  font-size: 13px;
  line-height: 1;
}

.wx-nav-toggle__icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.wx-nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  border-top: 1px solid currentColor;
}

.wx-version-strip {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(217, 182, 120, .28);
  border-bottom: 1px solid rgba(217, 182, 120, .28);
  color: var(--wx-copper-bright);
  font-family: var(--wx-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .02em;
}

.wx-rail__drawer {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  gap: 18px;
}

.wx-nav {
  margin-top: 2px;
}

.wx-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wx-nav__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: rgba(246, 242, 234, .82);
  text-decoration: none;
  font-size: 14px;
  border-left: 2px solid transparent;
  transition: color 140ms ease-out, border-color 140ms ease-out, background-color 140ms ease-out;
}

.wx-nav__index {
  font-family: var(--wx-mono);
  font-size: 10px;
  color: var(--wx-copper);
  letter-spacing: .02em;
}

.wx-nav__list a:hover,
.wx-nav__list a:focus-visible {
  color: var(--wx-paper);
  border-left-color: var(--wx-copper-bright);
  background: rgba(217, 182, 120, .08);
}

.wx-nav__list a[aria-current="page"] {
  color: var(--wx-paper);
  border-left-color: var(--wx-copper);
  background: rgba(180, 136, 75, .18);
}

.wx-nav__list a[aria-current="page"] .wx-nav__index {
  color: var(--wx-copper-bright);
}

.wx-rail__utility {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 182, 120, .2);
}

.wx-utility__title {
  margin: 0 0 8px;
  color: var(--wx-copper-bright);
  font-family: var(--wx-mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.wx-utility-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wx-utility-item {
  display: block;
  padding-left: 8px;
  color: rgba(246, 242, 234, .68);
  font-size: 12px;
  border-left: 2px solid rgba(217, 182, 120, .35);
}

.wx-rail__foot {
  padding-top: 6px;
}

.wx-progress {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 60;
  width: var(--wx-rail);
  height: 2px;
  background: linear-gradient(90deg, var(--wx-copper), var(--wx-copper-bright));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

/* buttons */
.wx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 140ms ease-out, background-color 140ms ease-out, border-color 140ms ease-out, box-shadow 140ms ease-out, transform 140ms ease-out;
}

.wx-btn--copper {
  background: var(--wx-copper);
  color: var(--wx-green-deep);
  border-color: var(--wx-copper);
  font-weight: 700;
}

.wx-btn--copper:hover,
.wx-btn--copper:focus-visible {
  background: var(--wx-copper-bright);
  border-color: var(--wx-copper-bright);
  box-shadow: 2px 2px 0 rgba(217, 182, 120, .35);
  transform: translate(-1px, -1px);
}

.wx-btn--ghost {
  background: transparent;
  color: var(--wx-green);
  border-color: var(--wx-green);
}

.wx-btn--ghost:hover,
.wx-btn--ghost:focus-visible {
  background: var(--wx-green);
  color: var(--wx-paper);
}

/* footer */
.wx-footer {
  background: var(--wx-green-deep);
  color: rgba(246, 242, 234, .82);
  border-top: 2px solid var(--wx-copper);
}

.wx-footer__inner {
  width: min(100%, var(--wx-max));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) var(--wx-gutter) 28px;
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(0, 2.2fr);
  gap: clamp(28px, 5vw, 72px);
}

.wx-footer__brand-link {
  color: var(--wx-paper);
  font-family: var(--wx-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
}

.wx-footer__brand-link:hover {
  color: var(--wx-copper-bright);
}

.wx-footer__note {
  max-width: 34ch;
  margin: 12px 0 0;
  color: rgba(246, 242, 234, .62);
  font-size: 13px;
  line-height: 1.7;
}

.wx-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
}

.wx-footer__group {
  min-width: 0;
}

.wx-footer__title {
  margin: 0 0 12px;
  color: var(--wx-copper-bright);
  font-family: var(--wx-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.wx-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wx-footer__list a {
  color: rgba(246, 242, 234, .78);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: color 140ms ease-out, border-color 140ms ease-out;
}

.wx-footer__list a:hover,
.wx-footer__list a:focus-visible {
  color: var(--wx-copper-bright);
  border-bottom-color: var(--wx-copper-bright);
}

.wx-footer__list--contact li {
  color: rgba(246, 242, 234, .68);
  font-size: 13px;
  line-height: 1.65;
}

.wx-footer__contact-note {
  margin: 12px 0 0;
  padding-left: 10px;
  color: rgba(246, 242, 234, .56);
  font-size: 12px;
  line-height: 1.7;
  border-left: 2px solid var(--wx-copper);
}

.wx-footer__base {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 182, 120, .22);
  color: rgba(246, 242, 234, .54);
  font-family: var(--wx-mono);
  font-size: 12px;
}

.wx-footer__legal,
.wx-footer__copy {
  margin: 0;
}

/* layout and typography */
.wx-container {
  width: min(100% - (var(--wx-gutter) * 2), var(--wx-max));
  margin-inline: auto;
}

.wx-main {
  display: block;
  min-height: 60vh;
}

.wx-section {
  padding: clamp(40px, 7vw, 96px) 0;
}

.wx-section--dark {
  background: var(--wx-green);
  color: var(--wx-paper);
}

.wx-section--narrow {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--wx-gutter);
}

.wx-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
}

.wx-span-3 { grid-column: span 3; }
.wx-span-4 { grid-column: span 4; }
.wx-span-5 { grid-column: span 5; }
.wx-span-6 { grid-column: span 6; }
.wx-span-7 { grid-column: span 7; }
.wx-span-8 { grid-column: span 8; }
.wx-span-12 { grid-column: span 12; }

.wx-kicker {
  margin: 0 0 10px;
  color: var(--wx-copper-text);
  font-family: var(--wx-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wx-h1,
.wx-h2,
.wx-h3 {
  margin: 0;
  color: var(--wx-ink);
  font-family: var(--wx-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.wx-h1 { font-size: clamp(30px, 5vw, 42px); }
.wx-h2 { font-size: clamp(22px, 3vw, 30px); }
.wx-h3 { font-size: 22px; }

.wx-lede {
  max-width: 42ch;
  margin: 14px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.wx-mono {
  font-family: var(--wx-mono);
  letter-spacing: .02em;
}

.wx-annotation {
  margin: 16px 0;
  padding-left: 14px;
  color: var(--wx-stone);
  font-size: 13px;
  line-height: 1.65;
  border-left: 3px solid var(--wx-copper);
}

.wx-annotation--green {
  border-left-color: var(--wx-green);
}

.wx-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  background: var(--wx-paper-layer);
  color: var(--wx-stone);
  border: 1px solid var(--wx-line);
  font-family: var(--wx-mono);
  font-size: 11px;
  letter-spacing: .02em;
}

.wx-tag--copper {
  color: var(--wx-copper-text);
  border-color: var(--wx-copper);
}

.wx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--wx-stone);
  font-family: var(--wx-mono);
  font-size: 12px;
}

.wx-breadcrumb a {
  color: var(--wx-copper-text);
  text-decoration: none;
}

.wx-breadcrumb a:hover,
.wx-breadcrumb a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wx-breadcrumb__sep {
  color: var(--wx-line);
}

/* table */
.wx-table-wrap {
  overflow-x: auto;
  background: var(--wx-paper-layer);
  border: 1px solid var(--wx-line);
}

.wx-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.wx-table th,
.wx-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--wx-line);
}

.wx-table th {
  color: var(--wx-green);
  background: rgba(14, 43, 35, .05);
  font-family: var(--wx-mono);
  font-size: 12px;
  letter-spacing: .02em;
}

.wx-table tr:last-child td {
  border-bottom: 0;
}

.wx-table td:first-child,
.wx-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--wx-paper-layer);
}

/* card */
.wx-card {
  padding: clamp(18px, 2.5vw, 28px);
  background: var(--wx-paper-layer);
  border: 1px solid var(--wx-line);
  box-shadow: var(--wx-shadow);
  transition: border-color 140ms ease-out, box-shadow 140ms ease-out, transform 140ms ease-out;
}

.wx-card:hover {
  border-color: var(--wx-copper);
  box-shadow: 4px 4px 0 var(--wx-copper);
  transform: translate(-1px, -1px);
}

.wx-card__meta {
  margin: 0 0 8px;
  color: var(--wx-copper-text);
  font-family: var(--wx-mono);
  font-size: 12px;
}

.wx-card__title {
  margin: 0;
  font-family: var(--wx-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

/* fold */
.wx-fold {
  border-top: 1px solid var(--wx-line);
}

.wx-fold:last-child {
  border-bottom: 1px solid var(--wx-line);
}

.wx-fold__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: transparent;
  color: var(--wx-ink);
  border: 0;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.wx-fold__trigger::after {
  content: "＋";
  color: var(--wx-copper-text);
  font-family: var(--wx-mono);
}

.wx-fold[data-open] .wx-fold__trigger::after {
  content: "－";
}

.wx-fold__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 160ms ease-out;
}

.wx-fold[data-open] .wx-fold__panel {
  grid-template-rows: 1fr;
}

.wx-fold__inner {
  overflow: hidden;
  padding: 0 0 18px 14px;
  color: var(--wx-stone);
  border-left: 3px solid var(--wx-copper);
  font-size: 14px;
  line-height: 1.65;
}

/* copy */
.wx-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: var(--wx-paper-layer);
  color: var(--wx-ink);
  border: 1px solid var(--wx-line);
  font-family: var(--wx-mono);
  font-size: 12px;
  cursor: pointer;
  transition: color 140ms ease-out, border-color 140ms ease-out;
}

.wx-copy:hover,
.wx-copy:focus-visible {
  color: var(--wx-copper-text);
  border-color: var(--wx-copper);
}

.wx-copy__feedback {
  min-width: 3.5em;
  color: var(--wx-copper-text);
  font-family: var(--wx-mono);
  font-size: 11px;
}

/* filter */
.wx-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px 14px;
  padding: 14px;
  background: var(--wx-paper-layer);
  border: 1px solid var(--wx-line);
}

.wx-filter-bar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}

.wx-filter-bar__label {
  color: var(--wx-stone);
  font-family: var(--wx-mono);
  font-size: 11px;
}

.wx-filter-bar select,
.wx-filter-bar input {
  min-height: 36px;
  padding: 6px 8px;
  background: var(--wx-paper);
  border: 1px solid var(--wx-line);
}

.wx-context-bar {
  margin: 12px 0;
  padding: 8px 10px;
  color: var(--wx-stone);
  background: rgba(180, 136, 75, .08);
  border-left: 3px solid var(--wx-copper);
  font-size: 13px;
}

.wx-text-button {
  padding: 4px 0;
  background: transparent;
  color: var(--wx-copper-text);
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  cursor: pointer;
}

/* anchor nav */
.wx-anchor-nav {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wx-anchor-nav a {
  padding: 4px 0 4px 8px;
  color: var(--wx-stone);
  border-left: 2px solid var(--wx-line);
  font-family: var(--wx-mono);
  font-size: 11px;
  text-decoration: none;
  transition: color 140ms ease-out, border-color 140ms ease-out;
}

.wx-anchor-nav a:hover,
.wx-anchor-nav a:focus-visible {
  color: var(--wx-ink);
  border-left-color: var(--wx-ink);
}

.wx-anchor-nav a[aria-current="true"] {
  color: var(--wx-copper-text);
  border-left-color: var(--wx-copper);
}

/* image frames */
.wx-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--wx-green);
  border: 1px solid var(--wx-line);
  box-shadow: var(--wx-shadow);
}

.wx-image-frame img,
.wx-image-frame svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wx-image-frame--ratio-16x9 { aspect-ratio: 16 / 9; }
.wx-image-frame--ratio-4x3 { aspect-ratio: 4 / 3; }
.wx-image-frame--ratio-1x1 { aspect-ratio: 1 / 1; }

.wx-image-frame__caption {
  margin: 8px 0 0;
  color: var(--wx-stone);
  font-family: var(--wx-mono);
  font-size: 12px;
}

.wx-image-frame__index {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 2px 6px;
  color: var(--wx-copper-bright);
  background: rgba(8, 28, 23, .72);
  border: 1px solid var(--wx-copper);
  font-family: var(--wx-mono);
  font-size: 11px;
}

/* dark section support */
.wx-section--dark .wx-h1,
.wx-section--dark .wx-h2,
.wx-section--dark .wx-h3 {
  color: var(--wx-paper);
}

.wx-section--dark .wx-kicker {
  color: var(--wx-copper-bright);
}

.wx-section--dark .wx-lede {
  color: rgba(246, 242, 234, .78);
}

.wx-section--dark .wx-annotation {
  color: rgba(246, 242, 234, .68);
  border-left-color: var(--wx-copper-bright);
}

.wx-section--dark .wx-card {
  background: rgba(246, 242, 234, .04);
  border-color: rgba(217, 182, 120, .28);
  color: rgba(246, 242, 234, .82);
}

.wx-section--dark .wx-btn--ghost {
  color: var(--wx-copper-bright);
  border-color: var(--wx-copper-bright);
}

.wx-section--dark .wx-btn--ghost:hover,
.wx-section--dark .wx-btn--ghost:focus-visible {
  background: var(--wx-copper-bright);
  color: var(--wx-green-deep);
}

/* responsive */
@media (max-width: 1023px) {
  body {
    padding-left: 0;
    padding-top: 112px;
  }

  .wx-rail {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    max-height: 100vh;
    border-right: 0;
    border-bottom: 1px solid var(--wx-copper);
  }

  .wx-rail__inner {
    min-height: 0;
    padding: 10px 16px 12px;
    gap: 8px;
  }

  .wx-rail__top {
    align-items: center;
  }

  .wx-brand__subline {
    display: none;
  }

  .wx-brand__name {
    font-size: 16px;
  }

  .wx-brand__mark {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .wx-nav-toggle {
    display: inline-flex;
  }

  .wx-version-strip {
    padding: 5px 0;
    overflow: hidden;
    font-size: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .wx-rail__drawer {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 8px 16px 16px;
    background: var(--wx-green-deep);
    border-top: 1px solid rgba(217, 182, 120, .3);
    border-bottom: 1px solid rgba(217, 182, 120, .3);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
  }

  .wx-rail[data-open] .wx-rail__drawer {
    display: block;
  }

  .wx-nav {
    margin: 0;
  }

  .wx-nav__list {
    gap: 0;
  }

  .wx-nav__list a {
    padding: 12px 8px;
    border-left: 2px solid transparent;
    border-bottom: 1px solid rgba(246, 242, 234, .08);
  }

  .wx-rail__utility {
    margin-top: 16px;
    padding-top: 16px;
  }

  .wx-utility-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .wx-utility-item {
    font-size: 11px;
  }

  .wx-rail__foot {
    display: flex;
    padding-top: 14px;
  }

  .wx-btn--copper {
    width: 100%;
  }

  .wx-progress {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 104px;
  }

  .wx-footer__inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .wx-footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wx-footer__base {
    display: block;
  }

  .wx-footer__copy {
    margin-top: 8px;
  }

  .wx-grid {
    grid-template-columns: 1fr;
  }

  .wx-grid > [class*="wx-span-"] {
    grid-column: 1 / -1;
  }

  .wx-table {
    min-width: 560px;
  }
}

@media (max-width: 420px) {
  .wx-brand__name {
    font-size: 15px;
  }

  .wx-nav-toggle__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
