:root {
  color-scheme: light;
  --product-bg: #eef2f7;
  --product-surface: #ffffff;
  --product-surface-alt: #f6f8fc;
  --product-surface-raised: #ffffff;
  --product-border: #dce4ee;
  --product-border-strong: #b9c7d8;
  --product-text: #111827;
  --product-text-secondary: #526174;
  --product-text-tertiary: #758297;
  --product-primary: #1463ff;
  --product-primary-hover: #0f4fd6;
  --product-primary-soft: #e8f0ff;
  --product-cyan: #0eaab8;
  --product-violet: #7257ed;
  --product-orange: #e98216;
  --product-green: #0f9f5f;
  --product-danger: #d9363e;
  --product-shadow: 0 12px 34px rgba(37, 52, 78, 0.08);
  --product-font: "Segoe UI Variable", "PingFang SC", "Microsoft YaHei UI", "Noto Sans CJK SC", system-ui, sans-serif;
  --product-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --product-sidebar-width: 240px;
  --product-sidebar-gap: 16px;
  --product-content-start: 272px;
  --product-mobile-header-height: 0px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --product-bg: #07111f;
  --product-surface: #0d1726;
  --product-surface-alt: #121f31;
  --product-surface-raised: #152337;
  --product-border: #26364b;
  --product-border-strong: #40546d;
  --product-text: #f7faff;
  --product-text-secondary: #a7b4c7;
  --product-text-tertiary: #7d8ca2;
  --product-primary: #4e8cff;
  --product-primary-hover: #76a6ff;
  --product-primary-soft: #142d56;
  --product-cyan: #29c7d3;
  --product-violet: #9278ff;
  --product-orange: #ffad52;
  --product-green: #35c77c;
  --product-danger: #ff6d75;
  --product-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--product-bg);
  color: var(--product-text);
  font-family: var(--product-font);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--product-bg);
  color: var(--product-text);
  font-family: var(--product-font);
  font-variant-numeric: tabular-nums;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.standalone-locale-toggle {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--product-border);
  border-radius: 10px;
  background: var(--product-surface);
  color: var(--product-text-secondary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.standalone-locale-toggle:hover,
.standalone-locale-toggle:focus-visible {
  border-color: var(--product-border-strong);
  color: var(--product-text);
}

[data-product-shell] [hidden] {
  display: none !important;
}

[data-product-shell]:empty::before {
  position: fixed;
  z-index: 100;
  top: var(--product-sidebar-gap);
  bottom: var(--product-sidebar-gap);
  left: var(--product-sidebar-gap);
  width: var(--product-sidebar-width);
  border: 1px solid var(--product-border);
  border-radius: 20px;
  background:
    linear-gradient(var(--product-border), var(--product-border)) 0 64px / 100% 1px no-repeat,
    linear-gradient(90deg, var(--product-primary) 0 36px, transparent 36px) 12px 14px / 112px 36px no-repeat,
    var(--product-surface);
  box-shadow: var(--product-shadow);
  content: "";
}

:root.is-product-navigating::after {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--product-primary), var(--product-cyan));
  content: "";
  transform-origin: left;
  animation: product-navigation-feedback 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes product-navigation-feedback {
  from {
    opacity: 0.35;
    transform: scaleX(0.08);
  }
  to {
    opacity: 1;
    transform: scaleX(0.82);
  }
}

.product-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.product-shell__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--product-text);
  color: var(--product-surface);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.product-sidebar {
  position: fixed;
  z-index: 100;
  top: var(--product-sidebar-gap);
  bottom: var(--product-sidebar-gap);
  left: var(--product-sidebar-gap);
  display: grid;
  grid-template-rows: 64px auto minmax(0, 1fr) auto;
  width: var(--product-sidebar-width);
  min-height: 0;
  overflow: visible;
  border: 1px solid var(--product-border);
  border-radius: 20px;
  background: var(--product-surface);
  box-shadow: var(--product-shadow);
}

.product-sidebar__header {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--product-border);
}

.product-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--product-text);
  text-decoration: none;
}

.product-brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--product-primary);
  color: #ffffff;
}

.product-brand__mark img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.product-brand__copy {
  display: grid;
  min-width: 0;
}

.product-brand__copy strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-sidebar__nav {
  display: grid;
  padding: 12px;
  gap: 6px;
}

.product-nav a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-radius: 11px;
  color: var(--product-text-secondary);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.product-nav a:hover,
.product-nav a:focus-visible {
  background: var(--product-surface-alt);
  color: var(--product-text);
}

.product-nav a.is-active {
  background: var(--product-primary);
  color: #ffffff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--product-primary) 22%, transparent);
}

.product-sidebar__context {
  min-height: 0;
  overflow: hidden auto;
  padding: 8px 12px 12px;
  scrollbar-width: thin;
}

.product-sidebar__context-slot {
  min-height: 100%;
}

.sidebar-illustration-card {
  display: grid;
  margin: 4px 0 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--product-primary) 24%, var(--product-border));
  border-radius: 16px;
  background: var(--product-primary);
  color: #ffffff;
}

.sidebar-illustration-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(145deg, #eaf2ff, #9fc1ff);
}

.sidebar-illustration-card figcaption {
  padding: 12px 14px 14px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.sidebar-freshness {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--product-border);
  border-radius: 14px;
  background: var(--product-surface-alt);
}

.sidebar-freshness > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.sidebar-freshness strong,
.sidebar-freshness time {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-freshness strong {
  color: var(--product-text);
  font-size: 13px;
}

.sidebar-freshness time {
  color: var(--product-text-secondary);
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--product-orange);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--product-orange) 14%, transparent);
}

.status-dot.is-ok,
.status-button[data-state="live"] .status-dot,
.status-button[data-state="timeline"] .status-dot {
  background: var(--product-green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--product-green) 14%, transparent);
}

.status-dot.is-error {
  background: var(--product-danger);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--product-danger) 14%, transparent);
}

.product-sidebar__footer {
  display: grid;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--product-border);
  gap: 4px;
}

.product-sidebar__tool,
.mobile-product-nav__footer button,
.mobile-product-nav__footer a {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--product-text-secondary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 620;
  text-align: left;
  text-decoration: none;
}

.product-sidebar__tool:hover,
.product-sidebar__tool:focus-visible,
.mobile-product-nav__footer button:hover,
.mobile-product-nav__footer button:focus-visible,
.mobile-product-nav__footer a:hover,
.mobile-product-nav__footer a:focus-visible {
  background: var(--product-surface-alt);
  color: var(--product-text);
}

.status-button__copy {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
}

.status-button__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-button time {
  color: var(--product-text-tertiary);
  font-size: 12px;
  font-weight: 560;
}

.status-button__indicator {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-left: auto;
  background: var(--product-border-strong);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--product-border-strong) 12%, transparent);
}

.status-button[data-state="timeline"] .status-button__indicator,
.status-button[data-state="information"] .status-button__indicator,
.status-button[data-state="live"] .status-button__indicator {
  background: var(--product-green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--product-green) 13%, transparent);
}

.status-button[data-state="stale"] .status-button__indicator,
.status-button[data-state="warning"] .status-button__indicator {
  background: var(--product-orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--product-orange) 13%, transparent);
}

.status-button[data-state="fallback"] .status-button__indicator {
  background: var(--product-border-strong);
}

.status-button[data-state="error"] .status-button__indicator {
  background: var(--product-danger);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--product-danger) 13%, transparent);
}

.account-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--product-primary-soft);
  color: var(--product-primary);
  font-size: 13px;
  font-weight: 800;
}

.account-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.account-copy strong,
.account-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-copy strong {
  color: var(--product-text);
  font-size: 14px;
}

.account-copy small {
  color: var(--product-text-tertiary);
  font-size: 12px;
}

.product-sidebar__popover-control {
  position: relative;
}

.shell-popover {
  position: fixed;
  z-index: 240;
  width: 220px;
  padding: 10px;
  border: 1px solid var(--product-border);
  border-radius: 14px;
  background: var(--product-surface-raised);
  box-shadow: 0 22px 60px rgba(18, 32, 53, 0.2);
}

.locale-panel,
.theme-panel {
  bottom: 88px;
  left: calc(var(--product-sidebar-gap) + var(--product-sidebar-width) - 4px);
}

.shell-popover > strong {
  display: block;
  padding: 4px 8px 8px;
  color: var(--product-text-secondary);
  font-size: 13px;
}

.shell-popover > button:not(.popover-close) {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--product-text-secondary);
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}

.shell-popover > button:hover,
.shell-popover > button:focus-visible,
.shell-popover > button[aria-pressed="true"] {
  background: var(--product-primary-soft);
  color: var(--product-primary);
}

.status-panel {
  bottom: 72px;
  left: calc(var(--product-sidebar-gap) + var(--product-sidebar-width) - 4px);
  width: min(380px, calc(100vw - var(--product-content-start) - 24px));
  padding: 16px;
}

.shell-popover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shell-popover__header > strong {
  color: var(--product-text);
  font-size: 16px;
}

.popover-close,
.changelog-sheet__header > button,
.mobile-product-nav__header > button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--product-text-secondary);
  cursor: pointer;
}

.popover-close:hover,
.popover-close:focus-visible,
.changelog-sheet__header > button:hover,
.changelog-sheet__header > button:focus-visible,
.mobile-product-nav__header > button:hover,
.mobile-product-nav__header > button:focus-visible {
  background: var(--product-surface-alt);
  color: var(--product-text);
}

.status-panel ul {
  display: grid;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.status-panel li {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--product-border);
  color: var(--product-text-secondary);
  font-size: 14px;
}

.status-panel li strong {
  color: var(--product-text);
  font-size: 13px;
  font-weight: 650;
  text-align: right;
}

.product-mobile-header,
.mobile-product-nav,
.product-drawer-scrim {
  display: none;
}

.changelog-sheet__scrim {
  position: fixed;
  z-index: 400;
  inset: 0;
  border: 0;
  background: rgba(14, 24, 39, 0.34);
  backdrop-filter: blur(2px);
}

.changelog-sheet {
  position: fixed;
  z-index: 410;
  top: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(720px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--product-border);
  border-radius: 20px;
  background: var(--product-surface);
  box-shadow: -24px 0 72px rgba(14, 24, 39, 0.2);
  animation: changelog-sheet-in 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.changelog-sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--product-border);
}

.changelog-sheet__header h2 {
  margin: 8px 0 4px;
  color: var(--product-text);
  font-size: 28px;
  line-height: 1.15;
}

.changelog-sheet__header p {
  margin: 0;
  color: var(--product-text-secondary);
  font-size: 14px;
}

.source-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--product-border);
  border-radius: 999px;
  background: var(--product-surface-alt);
  color: var(--product-text-secondary);
  font-size: 12px;
  font-weight: 700;
}

.changelog-sheet__body {
  min-height: 0;
  overflow: hidden auto;
  padding: 8px 24px 28px;
  overscroll-behavior: contain;
}

.changelog-sheet__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-sheet__entry {
  position: relative;
  padding: 20px 4px 20px 24px;
  border-bottom: 1px solid var(--product-border);
}

.changelog-sheet__entry::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--product-text-tertiary);
  content: "";
}

.changelog-sheet__entry--major::before {
  border-radius: 2px;
  background: var(--product-primary);
  transform: rotate(45deg);
}

.changelog-sheet__entry--fix::before {
  background: var(--product-orange);
}

.changelog-sheet__entry > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--product-text-tertiary);
  font-size: 12px;
}

.changelog-sheet__entry > div span {
  color: var(--product-primary);
  font-weight: 700;
}

.changelog-sheet__entry h3 {
  margin: 8px 0 0;
  color: var(--product-text);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.shell-skeleton {
  display: grid;
  padding-top: 18px;
  gap: 16px;
}

.shell-skeleton i {
  display: block;
  height: 86px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--product-surface-alt), color-mix(in srgb, var(--product-surface-alt) 60%, var(--product-border)), var(--product-surface-alt));
  background-size: 220% 100%;
  animation: shell-skeleton 1.4s linear infinite;
}

.shell-empty {
  display: grid;
  min-height: 240px;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--product-text-secondary);
  text-align: center;
}

.shell-empty button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--product-border);
  border-radius: 10px;
  background: var(--product-surface-alt);
  color: var(--product-text);
  cursor: pointer;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--product-primary) 42%, transparent);
  outline-offset: 2px;
}

body.is-changelog-open,
body.is-product-drawer-open {
  overflow: hidden !important;
}

@keyframes changelog-sheet-in {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shell-skeleton {
  to { background-position: -220% 0; }
}

@media (min-width: 700px) and (max-width: 1279px) {
  :root {
    --product-sidebar-width: 72px;
    --product-sidebar-gap: 8px;
    --product-content-start: 88px;
  }

  .product-sidebar {
    grid-template-rows: 64px auto minmax(0, 1fr) auto;
    border-radius: 18px;
  }

  [data-product-shell]:empty::before {
    border-radius: 18px;
    background:
      linear-gradient(var(--product-border), var(--product-border)) 0 64px / 100% 1px no-repeat,
      linear-gradient(var(--product-primary), var(--product-primary)) 18px 14px / 36px 36px no-repeat,
      var(--product-surface);
  }

  .product-sidebar__header,
  .product-sidebar__nav,
  .product-sidebar__footer {
    padding-inline: 8px;
  }

  .product-sidebar__header {
    justify-content: center;
  }

  .product-brand__copy,
  .product-sidebar__context,
  .product-sidebar__tool > span:not(.account-avatar),
  .product-sidebar__tool .status-button__copy,
  .product-sidebar__tool .account-copy {
    display: none;
  }

  .product-sidebar__nav a,
  .product-sidebar__tool {
    justify-content: center;
    padding: 0;
  }

  .product-sidebar__nav a > span {
    display: none;
  }

  [data-tooltip]::after {
    position: absolute;
    z-index: 300;
    top: 50%;
    left: calc(100% + 12px);
    width: max-content;
    max-width: 180px;
    padding: 8px 10px;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    background: var(--product-text);
    color: var(--product-surface);
    content: attr(data-tooltip);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    opacity: 0;
    pointer-events: none;
    transform: translate(-4px, -50%);
    transition: opacity 120ms ease, transform 120ms ease;
  }

  [data-tooltip]:hover::after,
  [data-tooltip]:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .locale-panel,
  .theme-panel,
  .status-panel {
    left: calc(var(--product-content-start) - 4px);
  }
}

@media (max-width: 699px) {
  :root {
    --product-sidebar-width: 0px;
    --product-sidebar-gap: 0px;
    --product-content-start: 0px;
    --product-mobile-header-height: 56px;
  }

  .product-sidebar {
    display: none;
  }

  [data-product-shell]:empty::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 56px;
    border-width: 0 0 1px;
    border-radius: 0;
    background:
      linear-gradient(var(--product-primary), var(--product-primary)) center / 32px 32px no-repeat,
      var(--product-surface);
    box-shadow: none;
  }

  .product-mobile-header {
    position: fixed;
    z-index: 150;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 56px;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 1px solid var(--product-border);
    background: var(--product-surface);
  }

  .product-mobile-header .product-brand {
    justify-self: center;
  }

  .product-mobile-header .product-brand__mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .product-mobile-header .product-brand__copy strong {
    font-size: 15px;
  }

  .product-mobile-header__button,
  .product-mobile-header .model-filter-toggle {
    display: grid;
    min-width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--product-text-secondary);
    cursor: pointer;
  }

  .product-mobile-header .model-filter-toggle {
    position: relative;
  }

  .product-mobile-header .model-filter-toggle b {
    position: absolute;
    top: 2px;
    right: 0;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 999px;
    background: var(--product-primary);
    color: #ffffff;
    font-size: 12px;
  }

  .product-drawer-scrim {
    position: fixed;
    z-index: 360;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(14, 24, 39, 0.38);
  }

  .mobile-product-nav {
    position: fixed;
    z-index: 370;
    top: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(330px, calc(100vw - 40px));
    padding: 14px;
    border-right: 1px solid var(--product-border);
    background: var(--product-surface);
    box-shadow: 24px 0 60px rgba(14, 24, 39, 0.22);
  }

  .mobile-product-nav__header {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 12px 10px;
    border-bottom: 1px solid var(--product-border);
  }

  .mobile-product-nav__header strong {
    font-size: 17px;
  }

  .mobile-product-nav .product-nav {
    display: grid;
    align-content: start;
    padding: 16px 0;
    gap: 6px;
  }

  .mobile-product-nav .product-nav a {
    min-height: 48px;
  }

  .mobile-product-nav__footer {
    display: grid;
    padding-top: 12px;
    border-top: 1px solid var(--product-border);
    gap: 4px;
  }

  .status-panel {
    top: 64px;
    right: 12px;
    bottom: auto;
    left: 12px;
    width: auto;
  }

  .changelog-sheet {
    inset: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
  }

  .changelog-sheet__header {
    padding: 18px 16px 16px;
  }

  .changelog-sheet__header h2 {
    font-size: 24px;
  }

  .changelog-sheet__body {
    padding: 4px 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@view-transition {
  navigation: auto;
}
