:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #65706a;
  --paper: #f8f6f0;
  --paper-strong: #fffef9;
  --forest: #1e4a38;
  --forest-2: #2e684e;
  --lime: #c7e36b;
  --lime-soft: #eaf3c8;
  --clay: #b55c3b;
  --clay-soft: #f4dfd6;
  --amber: #9a671b;
  --amber-soft: #f3e4c4;
  --blue: #315c76;
  --blue-soft: #dceaf2;
  --line: rgba(23, 33, 29, 0.12);
  --shadow: 0 24px 70px rgba(29, 45, 37, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(199, 227, 107, 0.2), transparent 28rem),
    linear-gradient(145deg, #d8ded3 0%, #f0eee7 48%, #d8e4da 100%);
  overflow-x: hidden;
}

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

button,
select {
  min-height: 44px;
}

button {
  cursor: pointer;
}

.ambient {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.26;
  pointer-events: none;
}

.ambient-a {
  top: -10rem;
  right: -7rem;
  background: #9dc898;
}

.ambient-b {
  bottom: -11rem;
  left: -8rem;
  background: #e2bd80;
}

.device-shell {
  position: relative;
  width: min(100%, 460px);
  min-height: 100vh;
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 18px calc(102px + env(safe-area-inset-bottom));
  background:
    linear-gradient(rgba(248, 246, 240, 0.94), rgba(248, 246, 240, 0.98)),
    repeating-linear-gradient(120deg, transparent 0 14px, rgba(30, 74, 56, 0.03) 14px 15px);
  box-shadow: var(--shadow);
}

.topbar,
.brand-lockup,
.dialog-head,
.section-head,
.metric-row,
.task-head,
.queue-head,
.context-row,
.candidate-row,
.timeline-head {
  display: flex;
  align-items: center;
}

.topbar,
.dialog-head,
.section-head,
.task-head,
.queue-head,
.timeline-head {
  justify-content: space-between;
}

.brand-lockup {
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--lime);
  background: var(--forest);
  border-radius: 14px 14px 18px 14px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(30, 74, 56, 0.2);
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: 22px;
  line-height: 1;
}

h2 {
  margin-bottom: 6px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 25px;
  line-height: 1.2;
}

h3 {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.35;
}

.icon-button {
  display: grid;
  width: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  color: var(--paper-strong);
  background: var(--forest);
  border: 0;
  border-radius: 50%;
  font-weight: 800;
}

.control-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 12px;
  padding: 10px;
  background: rgba(255, 254, 249, 0.78);
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: var(--radius-md);
}

.control-deck > *,
.compact-field,
.compact-field select {
  min-width: 0;
}

.connection-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr;
  gap: 1px;
  margin: 0 0 12px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.connection-strip > span {
  min-width: 0;
  padding: 9px 10px;
  background: rgba(255, 254, 249, 0.9);
}

.connection-strip small,
.connection-strip strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.connection-strip small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.connection-strip strong {
  color: var(--forest);
  font-size: 10px;
}

.production-safety-card {
  padding: 22px;
  color: #234a61;
  background: var(--blue-soft);
  border: 1px solid rgba(49, 92, 118, 0.2);
  border-radius: var(--radius-lg);
}

.production-safety-card code {
  display: block;
  width: fit-content;
  margin: 12px 0;
  padding: 6px 9px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 11px;
}

.production-safety-card p {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 400px) {
  .control-deck {
    grid-template-columns: 1fr 1fr;
  }

  .control-deck .compact-field:first-child {
    grid-column: 1 / -1;
  }
}

.compact-field span {
  display: block;
  margin: 0 0 5px 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.compact-field select,
.field select,
.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.compact-field select {
  padding: 0 34px 0 11px;
  font-size: 12px;
  font-weight: 700;
}

.compact-field select:focus,
.field select:focus,
.field input:focus,
.field textarea:focus,
button:focus-visible {
  outline: 3px solid rgba(49, 92, 118, 0.28);
  outline-offset: 2px;
}

.status-banner {
  display: none;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
}

.status-banner.is-visible {
  display: flex;
}

.status-banner strong {
  display: block;
  margin-bottom: 2px;
}

.status-banner.offline {
  color: #5b3d0f;
  background: var(--amber-soft);
}

.status-banner.conflict {
  color: #6c2f1c;
  background: var(--clay-soft);
}

.status-banner.expired {
  color: #234a61;
  background: var(--blue-soft);
}

.banner-icon {
  font-size: 18px;
}

.app-view {
  width: 100%;
  animation: enter 240ms ease both;
}

.app-view:focus {
  outline: none;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card {
  position: relative;
  min-height: 184px;
  padding: 22px;
  color: #f9fbef;
  background:
    radial-gradient(circle at 82% 20%, rgba(199, 227, 107, 0.24), transparent 7rem),
    linear-gradient(140deg, #173b2d, #295d46);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(30, 74, 56, 0.22);
}

.hero-card::after {
  position: absolute;
  right: -26px;
  bottom: -64px;
  width: 154px;
  height: 154px;
  content: "";
  border: 1px solid rgba(234, 243, 200, 0.3);
  border-radius: 48% 52% 58% 42%;
  transform: rotate(22deg);
}

.hero-card .eyebrow,
.hero-copy {
  color: rgba(249, 251, 239, 0.7);
}

.hero-card h2 {
  max-width: 280px;
  margin-bottom: 8px;
  font-size: 29px;
}

.hero-copy {
  max-width: 290px;
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.55;
}

.hero-actions,
.inline-actions,
.filter-row,
.segmented,
.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.quiet-button,
.danger-button {
  min-height: 44px;
  padding: 0 15px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
}

.primary-button {
  color: var(--forest);
  background: var(--lime);
  border: 0;
}

.secondary-button {
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.quiet-button {
  color: var(--forest);
  background: var(--lime-soft);
  border: 0;
}

.danger-button {
  color: #7b321e;
  background: var(--clay-soft);
  border: 0;
}

.button-full {
  width: 100%;
}

.section-block {
  margin-top: 20px;
}

.section-head {
  min-height: 36px;
  gap: 12px;
  margin-bottom: 10px;
}

.section-head h2 {
  min-width: 0;
  flex: 1;
  margin-bottom: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-head > .muted {
  max-width: 58%;
  flex: 0 1 auto;
  text-align: right;
}

.text-link {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 2px;
  color: var(--forest-2);
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.context-card,
.task-card,
.metric-card,
.queue-card,
.timeline-card,
.empty-card,
.notice-card,
.candidate-card {
  background: rgba(255, 254, 249, 0.9);
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: var(--radius-lg);
}

.context-card,
.notice-card,
.empty-card {
  padding: 16px;
}

.context-row {
  gap: 10px;
}

.context-row + .context-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.context-symbol {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  color: var(--forest);
  background: var(--lime-soft);
  border-radius: 12px;
  font-weight: 900;
}

.context-copy {
  min-width: 0;
  flex: 1;
}

.context-copy strong {
  display: block;
  font-size: 13px;
}

.context-copy span,
.muted,
.task-meta,
.queue-meta,
.timeline-meta,
.card-copy {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.quick-action {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  min-height: 126px;
  align-content: start;
  padding: 16px;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.92);
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.quick-action:hover {
  transform: translateY(-2px);
  background: var(--paper-strong);
  border-color: rgba(30, 74, 56, 0.24);
}

.quick-action:active {
  transform: scale(0.985);
}

.quick-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--forest);
  background: var(--lime-soft);
  border-radius: 13px;
}

.quick-symbol svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-action strong,
.quick-action span {
  display: block;
}

.quick-action strong {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.35;
}

.quick-action span:last-child {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.task-list,
.queue-list,
.timeline-list {
  display: grid;
  gap: 10px;
}

.task-card,
.queue-card,
.timeline-card,
.candidate-card {
  padding: 15px;
}

.task-card.is-urgent {
  border-left: 4px solid var(--clay);
}

.task-card.is-warning {
  border-left: 4px solid #d3a03d;
}

.task-head {
  gap: 12px;
  align-items: flex-start;
}

.task-head h3,
.queue-head h3 {
  margin-bottom: 3px;
}

.badge,
.tiny-badge,
.priority-pill,
.scope-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.badge {
  min-height: 27px;
  padding: 0 10px;
  font-size: 10px;
}

.badge.green {
  color: #214d39;
  background: var(--lime-soft);
}

.badge.amber {
  color: #704b13;
  background: var(--amber-soft);
}

.badge.red {
  color: #7b321e;
  background: var(--clay-soft);
}

.badge.blue {
  color: #234a61;
  background: var(--blue-soft);
}

.task-footer,
.queue-footer,
.candidate-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.task-footer .quiet-button,
.queue-footer .quiet-button,
.candidate-footer .quiet-button {
  min-height: 38px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 8px;
}

.metric-card {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  padding: 14px 11px;
}

.metric-card strong {
  display: block;
  margin: 8px 0 4px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.metric-card .trend {
  margin-top: auto;
  color: var(--clay);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.metric-label {
  color: var(--muted);
  font-size: 10px;
}

.load-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.9fr) minmax(0, 2fr) 34px;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
}

.load-row + .load-row {
  border-top: 1px solid var(--line);
}

.load-name {
  font-size: 12px;
  font-weight: 800;
}

.load-track {
  height: 7px;
  background: #e5e8df;
  border-radius: 999px;
  overflow: hidden;
}

.load-fill {
  height: 100%;
  background: var(--forest-2);
  border-radius: inherit;
}

.load-value {
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.segmented {
  margin-bottom: 12px;
  padding: 4px;
  background: #e8e9e2;
  border-radius: 14px;
}

.segment-button {
  flex: 1;
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 800;
}

.segment-button.is-active {
  color: var(--forest);
  background: var(--paper-strong);
  box-shadow: 0 3px 10px rgba(23, 33, 29, 0.08);
}

.empty-card {
  padding: 34px 20px;
  text-align: center;
}

.empty-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  place-items: center;
  color: var(--forest);
  background: var(--lime-soft);
  border-radius: 18px;
  font-size: 22px;
}

.timeline-card {
  position: relative;
  padding-left: 48px;
}

.timeline-dot {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: white;
  background: var(--forest-2);
  border-radius: 50%;
  font-size: 9px;
}

.timeline-card::before {
  position: absolute;
  top: 39px;
  bottom: -11px;
  left: 26px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-card:last-child::before {
  display: none;
}

.queue-state {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.state-dot {
  width: 8px;
  height: 8px;
  background: var(--forest-2);
  border-radius: 50%;
}

.state-dot.waiting {
  background: #d3a03d;
}

.state-dot.blocked {
  background: var(--clay);
}

.sync-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  color: white;
  background: var(--forest);
  border-radius: var(--radius-lg);
}

.sync-ring {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 6px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
}

.sync-summary h2 {
  margin-bottom: 4px;
  font-family: inherit;
  font-size: 17px;
}

.sync-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.5;
}

.notice-card {
  margin-top: 12px;
  color: #5d481f;
  background: #f5ead2;
}

.notice-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.notice-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.bottom-nav {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 9px 12px max(9px, env(safe-area-inset-bottom));
  background: rgba(255, 254, 249, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-item {
  position: relative;
  display: grid;
  min-height: 54px;
  padding: 5px 0;
  place-items: center;
  gap: 2px;
  color: #7b837f;
  background: transparent;
  border: 0;
  border-radius: 14px;
  font-size: 9px;
  font-weight: 800;
}

.nav-icon {
  font-size: 20px;
  line-height: 1;
}

.nav-item.is-active {
  color: var(--forest);
  background: var(--lime-soft);
}

.nav-badge {
  position: absolute;
  top: 1px;
  right: calc(50% - 25px);
  display: grid;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  place-items: center;
  color: white;
  background: var(--clay);
  border-radius: 999px;
  font-size: 9px;
}

.sync-dot {
  position: absolute;
  top: 4px;
  right: calc(50% - 20px);
  display: none;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border: 2px solid white;
  border-radius: 50%;
}

.sync-dot.is-visible {
  display: block;
}

.action-dialog {
  width: min(calc(100% - 24px), 430px);
  max-height: calc(100vh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.action-dialog::backdrop {
  background: rgba(13, 25, 20, 0.58);
  backdrop-filter: blur(4px);
}

.dialog-card {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.dialog-head {
  position: sticky;
  z-index: 2;
  top: 0;
  padding: 18px 18px 12px;
  background: rgba(248, 246, 240, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.dialog-head h2 {
  margin-bottom: 0;
  font-size: 21px;
}

.close-button {
  color: var(--ink);
  background: #e4e6df;
  font-size: 24px;
  font-weight: 400;
}

.dialog-content {
  padding: 18px;
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field > span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
}

.field select,
.field input {
  min-height: 46px;
  padding: 0 12px;
}

.field textarea {
  min-height: 96px;
  padding: 12px;
  resize: vertical;
}

.field-hint {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.choice-card {
  min-height: 72px;
  padding: 12px;
  text-align: left;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.choice-card.is-selected {
  background: var(--lime-soft);
  border-color: var(--forest-2);
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.choice-card span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.candidate-row {
  gap: 12px;
}

.elephant-thumb {
  display: grid;
  flex: 0 0 54px;
  height: 54px;
  place-items: center;
  color: var(--forest);
  background:
    radial-gradient(circle at 65% 35%, var(--lime) 0 4px, transparent 4px),
    var(--lime-soft);
  border-radius: 17px;
  font-family: Georgia, serif;
  font-size: 22px;
}

.candidate-info {
  min-width: 0;
  flex: 1;
}

.candidate-info strong,
.candidate-info span {
  display: block;
}

.candidate-info strong {
  font-size: 14px;
}

.candidate-info span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.confidence {
  color: var(--forest-2);
  font-size: 11px;
  font-weight: 900;
}

.policy-note {
  margin: 12px 0;
  padding: 11px 12px;
  color: #5d481f;
  background: var(--amber-soft);
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  z-index: 30;
  bottom: 92px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 11px 15px;
  color: white;
  background: #17211d;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.24);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.profile-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.profile-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.profile-row dt {
  color: var(--muted);
  font-size: 11px;
}

.profile-row dd {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
}

.spaced-top {
  margin-top: 12px;
}

.spaced-bottom {
  margin-bottom: 12px;
}

.load-fill-42 { width: 42%; }
.load-fill-58 { width: 58%; }
.load-fill-78 { width: 78%; }

@media (min-width: 700px) {
  body {
    padding: 24px 0;
  }

  .device-shell {
    min-height: calc(100vh - 48px);
    border-radius: 34px;
    overflow: hidden;
  }

  .bottom-nav {
    bottom: 24px;
    border-radius: 0 0 34px 34px;
  }
}

@media (max-width: 430px) {
  .device-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .quick-grid {
    gap: 10px;
  }

  .quick-action {
    min-height: 122px;
    padding: 14px;
  }

  .quick-symbol {
    margin-bottom: 12px;
  }
}

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

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