:root {
  --bg: #f3f5f1;
  --ink: #18211c;
  --muted: #657168;
  --subtle: #879189;
  --line: #dde3da;
  --panel: #ffffff;
  --panel-soft: #fafbf7;
  --green: #14613f;
  --green-2: #214c3a;
  --green-soft: #e7f3ed;
  --yellow: #a96f00;
  --yellow-soft: #fff3d5;
  --red: #b7332b;
  --red-soft: #fde8e3;
  --blue: #225da4;
  --blue-soft: #e7effb;
  --shadow: 0 18px 42px rgba(27, 41, 32, .08);
  --shadow-sm: 0 8px 22px rgba(27, 41, 32, .06);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,0) 320px),
    repeating-linear-gradient(135deg, rgba(20,97,63,.035) 0 1px, transparent 1px 12px),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

button {
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: white;
  min-height: 40px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

button:disabled {
  cursor: not-allowed;
  opacity: .48;
  transform: none;
  box-shadow: none;
}

button.secondary {
  color: var(--green);
  background: var(--green-soft);
}

button.danger {
  color: var(--red);
  background: var(--red-soft);
}

button.ghost {
  width: 100%;
  color: #edf7ef;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
}

button.text-button {
  justify-self: start;
  min-height: auto;
  padding: 0;
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

button.text-button:hover {
  transform: none;
  box-shadow: none;
  text-decoration: underline;
}

button.filter {
  min-height: 34px;
  color: var(--muted);
  background: #f5f7f2;
  padding: 0 12px;
  box-shadow: none;
}

button.filter.active {
  color: #fff;
  background: var(--green);
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.password-field {
  position: relative;
  width: 100%;
}

.password-field input {
  padding-right: 66px;
}

button.password-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  min-height: 30px;
  padding: 0 10px;
  transform: translateY(-50%);
  color: var(--green);
  background: var(--green-soft);
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
}

button.password-toggle:hover {
  transform: translateY(-50%);
  box-shadow: none;
}

textarea {
  min-height: 86px;
  padding-top: 10px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 206, 88, .65);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 10;
  color: #fff;
  background: var(--green);
  padding: 10px 14px;
  border-radius: 7px;
}

.skip-link:focus { top: 16px; }

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  color: #eff7ef;
  background:
    linear-gradient(180deg, rgba(245, 206, 88, .16), rgba(245, 206, 88, 0) 190px),
    #142019;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #17321f;
  background: #f4cd58;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}

.brand h1 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}

.brand p,
.muted {
  margin: 5px 0 0;
  color: var(--muted);
}

.sidebar .brand p {
  color: #aeb9ae;
}

nav {
  display: grid;
  gap: 8px;
}

nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #dfe8df;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}

nav a span {
  color: #f4cd58;
  font-size: 12px;
  font-weight: 800;
  opacity: .82;
}

nav a.active,
nav a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.1);
}

.sidebar-foot {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.sidebar-foot p {
  margin: 0;
  color: #aeb9ae;
  font-size: 12px;
}

.sidebar-foot strong {
  font-size: 14px;
}

.content {
  padding: 28px;
}

.login-panel,
.permission-panel,
.panel,
.focus-panel,
.metric {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-panel {
  max-width: 520px;
  margin: 12vh auto 0;
  padding: 30px;
}

.permission-panel {
  max-width: 620px;
  margin: 16vh auto 0;
  padding: 34px;
}

.permission-panel h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.permission-panel button {
  margin-top: 22px;
}

.auth-switch {
  display: inline-flex;
  gap: 8px;
  margin: 22px 0 16px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f4;
}

.form-grid,
.inline-form {
  display: grid;
  gap: 14px;
}

.section-note {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.inline-form {
  grid-template-columns: 1.2fr 1fr 1fr auto;
  margin: 18px 0;
}

.inline-form.compact-form {
  grid-template-columns: 1fr 1fr auto;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.topbar,
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar {
  min-height: 92px;
}

.topbar h2 {
  font-size: 30px;
}

.topbar-actions,
.filter-group,
.actions,
.row-side,
.user-controls,
.panel-actions,
.issue-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.user-badge,
.count-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

h2,
h3 {
  margin: 0;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
  margin: 20px 0 14px;
}

.metric {
  position: relative;
  min-height: 126px;
  padding: 16px;
  overflow: hidden;
}

.metric::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(20, 97, 63, .08);
}

.metric span,
.metric em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.metric strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 32px;
  line-height: 1;
}

.quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 16px;
  margin-bottom: 16px;
}

.focus-panel {
  padding: 20px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.focus-item {
  display: flex;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.focus-item strong,
.focus-item p {
  margin: 0;
}

.focus-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.risk-mix {
  display: grid;
  gap: 15px;
  margin-top: 14px;
}

.risk-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.risk-row strong {
  color: var(--ink);
}

.risk-row i {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: #eef1eb;
}

.risk-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.risk-row b.red { background: var(--red); }
.risk-row b.yellow { background: #d59615; }
.risk-row b.green { background: var(--green); }

.archive-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.archive-summary article {
  min-height: 82px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.archive-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.archive-summary strong {
  display: block;
  margin-top: 9px;
  font-size: 26px;
  line-height: 1;
}

.archive-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.archive-filter {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f4;
}

.archive-filter label {
  flex: 0 1 190px;
}

.archive-filter .row-meta {
  flex: 1 1 260px;
  padding-bottom: 9px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.two-col > * {
  min-width: 0;
}

.panel {
  min-width: 0;
  padding: 20px;
}

.list {
  display: grid;
  gap: 10px;
}

.row,
.user-card,
.issue-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel-soft);
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.user-list {
  display: grid;
  gap: 10px;
}

.user-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.user-stat {
  min-height: 78px;
  padding: 12px;
  color: var(--ink);
  text-align: left;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  box-shadow: none;
}

.user-stat.active,
.user-stat:hover {
  color: #fff;
  background: var(--green);
}

.user-stat span,
.user-stat strong {
  display: block;
}

.user-stat span {
  font-size: 12px;
  color: inherit;
  opacity: .76;
}

.user-stat strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
}

.user-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f4;
}

.manager-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 220px) minmax(150px, 220px);
  align-items: end;
  gap: 12px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f4;
}

.manager-toolbar.region-toolbar {
  grid-template-columns: minmax(220px, 1fr) auto;
}

.manager-toolbar.project-toolbar {
  display: flex;
  flex-wrap: wrap;
}

.manager-toolbar.check-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.project-toolbar label {
  min-width: 0;
}

.project-toolbar label:first-child {
  flex: 1 1 220px;
}

.project-toolbar label:not(:first-child) {
  flex: 0 1 150px;
}

.check-toolbar label {
  min-width: 0;
}

.check-toolbar label:first-child {
  flex: 1 1 210px;
}

.check-toolbar label:not(:first-child) {
  flex: 0 1 150px;
}

.check-toolbar button {
  flex: 0 0 auto;
}

.user-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, auto);
  align-items: center;
  gap: 14px;
}

.user-controls {
  justify-content: flex-end;
}

.user-controls select {
  width: 150px;
  min-height: 38px;
  background: #fff;
}

.user-controls button {
  min-height: 38px;
}

.scope-panel {
  grid-column: 1 / -1;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.scope-panel summary {
  color: var(--green);
  cursor: pointer;
  font-weight: 800;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.scope-grid.single {
  grid-template-columns: 1fr;
}

.scope-grid strong {
  display: block;
  margin-bottom: 8px;
}

.scope-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.check-line input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.scope-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.owner-picker {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.owner-picker legend {
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}

.owner-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f9f4;
}

.owner-option {
  background: #fff;
}

.project-search-box,
.selected-project-box {
  display: grid;
  gap: 8px;
}

.project-search-results,
.selected-project-list {
  display: grid;
  gap: 8px;
  min-height: 48px;
  max-height: 178px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f9f4;
}

.project-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
}

.project-result.selected {
  border-color: rgba(20, 97, 63, .38);
  background: var(--green-soft);
}

.project-result input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.project-result span,
.selected-project-chip {
  min-width: 0;
}

.project-result strong,
.project-result em {
  display: block;
}

.project-result em,
.selected-project-chip em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.selected-project-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.selected-project-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(20, 97, 63, .22);
  border-radius: 7px;
  background: #fff;
}

.selected-project-chip b {
  flex: 0 1 auto;
}

.selected-project-chip em {
  flex: 1 1 auto;
}

.selected-project-chip button {
  min-height: 28px;
  padding: 0 10px;
  color: var(--red);
  background: var(--red-soft);
  box-shadow: none;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.modal {
  width: min(620px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.modal::backdrop {
  background: rgba(13, 24, 18, .42);
  backdrop-filter: blur(3px);
}

.modal-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 32, 22, .22);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.modal-head h3 {
  font-size: 22px;
}

.detail-modal {
  width: min(860px, calc(100vw - 32px));
}

.check-detail-card {
  max-height: min(86vh, 820px);
  overflow: auto;
}

.detail-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.detail-summary div,
.detail-meta-grid,
.detail-issue {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.detail-summary div {
  min-height: 86px;
  padding: 13px;
}

.detail-summary span,
.photo-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.detail-summary strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.detail-meta-grid p {
  margin: 0;
  padding: 12px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.detail-meta-grid p:last-child {
  border-right: 0;
}

.detail-meta-grid b,
.detail-copy b {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.detail-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.detail-section-title strong {
  font-size: 18px;
}

.detail-section-title span {
  color: var(--muted);
  font-weight: 800;
}

.detail-issue-list {
  display: grid;
  gap: 10px;
}

.detail-issue {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.detail-issue-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.detail-issue-head strong {
  min-width: 0;
}

.detail-copy {
  display: grid;
  gap: 8px;
}

.detail-copy p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.photo-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.photo-summary > div {
  min-height: 58px;
  padding: 10px;
  border: 1px dashed var(--line);
  border-radius: 7px;
  background: #fff;
}

.photo-summary strong {
  display: block;
  margin-top: 5px;
}

.photo-strip {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow: auto;
}

.photo-strip img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--line);
}

.row-title {
  font-weight: 900;
}

.row-meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.row-side {
  justify-content: flex-end;
}

.row-side strong {
  font-size: 22px;
  line-height: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  white-space: nowrap;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.tag.red { color: var(--red); background: var(--red-soft); }
.tag.yellow { color: var(--yellow); background: var(--yellow-soft); }
.tag.green { color: var(--green); background: var(--green-soft); }
.tag.blue { color: var(--blue); background: var(--blue-soft); }

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.issue-card {
  display: grid;
  gap: 9px;
}

.issue-card h4 {
  margin: 0;
  font-size: 16px;
}

.issue-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.issue-card .project-name {
  color: var(--ink);
  font-weight: 800;
}

.status-text {
  margin-left: auto;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.message {
  min-height: 20px;
  color: var(--red);
}

.message.success {
  color: var(--green);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 28px;
  top: 24px;
  z-index: 30;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(20, 97, 63, .22);
  border-radius: 8px;
  color: var(--green);
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.toast.error {
  color: var(--red);
  border-color: rgba(183, 51, 43, .24);
  background: #fffafa;
}

.empty {
  grid-column: 1 / -1;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.empty.tight {
  padding: 16px;
  text-align: left;
}

.hidden { display: none !important; }

@media (max-width: 1180px) {
  .metric-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .archive-summary {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .user-stat-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .quick-grid,
  .two-col,
  .issue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .content {
    padding: 18px;
  }

  .topbar,
  .panel-head,
  .row,
  .user-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .user-card {
    display: flex;
  }

  .user-controls,
  .user-controls select {
    width: 100%;
  }

  .metric-grid,
  .archive-summary,
  .focus-list,
  .user-stat-grid,
  .user-toolbar,
  .manager-toolbar,
  .detail-summary,
  .detail-meta-grid,
  .photo-summary,
  .scope-grid,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .detail-meta-grid p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-meta-grid p:last-child {
    border-bottom: 0;
  }

  .topbar h2 {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
