:root {
  --bg: #f2f6f3;
  --panel: #ffffff;
  --ink: #17221d;
  --muted: #65736d;
  --line: #d9e4df;
  --green: #15745a;
  --blue: #2f5f8f;
  --red: #b94a48;
  --gold: #b78221;
  --shadow: 0 14px 34px rgba(23, 34, 29, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 239, 224, 0.9) 0%, rgba(242, 246, 243, 0.96) 42%, rgba(242, 246, 243, 1) 100%);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 242, 230, 0.26) 0%, rgba(242, 246, 243, 0.72) 58%, rgba(242, 246, 243, 0.95) 100%),
    url("/static/assets/hero-landscape-warm.png") center top / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: -2;
}

body.dialog-open {
  overflow: hidden;
}

body.is-mobile {
  background:
    linear-gradient(180deg, rgba(255, 238, 222, 0.95) 0%, rgba(244, 247, 244, 1) 100%);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  min-width: 0;
}

.access-shell,
.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  min-width: 0;
}

.access-card,
.admin-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.access-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  min-height: 520px;
  color: white;
  background:
    linear-gradient(135deg, rgba(15, 22, 20, 0.82) 0%, rgba(43, 31, 19, 0.64) 100%),
    url("/static/assets/hero-landscape-warm.png") center center / cover no-repeat;
}

.access-copy {
  display: grid;
  gap: 14px;
  max-width: 640px;
  min-width: 0;
}

.access-message {
  color: rgba(255, 243, 229, 0.94);
}

.access-form {
  display: grid;
  gap: 12px;
  max-width: 640px;
  padding: 18px;
  border: 1px solid rgba(255, 239, 215, 0.14);
  border-radius: 18px;
  background: rgba(16, 25, 22, 0.38);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.action-link {
  background: linear-gradient(135deg, #b78928 0%, #8f6c1d 100%);
  color: white;
}

.secondary-link {
  background: rgba(255, 248, 237, 0.92);
  color: var(--ink);
}

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

.choice-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 239, 215, 0.14);
  background: rgba(255, 244, 230, 0.08);
  color: white;
  text-decoration: none;
  backdrop-filter: blur(16px);
  min-width: 0;
}

.choice-card span {
  color: rgba(255, 243, 229, 0.86);
  line-height: 1.6;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 30px;
  color: white;
  background:
    linear-gradient(135deg, rgba(15, 22, 20, 0.82) 0%, rgba(43, 31, 19, 0.64) 100%),
    url("/static/assets/hero-landscape-warm.png") center center / cover no-repeat;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  min-width: 0;
}

.admin-panel {
  border-radius: 16px;
  min-width: 0;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.created-passes {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.created-pass-row {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfc;
}

.created-pass-row code,
.created-pass-row a {
  word-break: break-all;
}

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

.summary-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfc;
  min-width: 0;
}

.summary-card span,
.summary-card em {
  color: var(--muted);
  font-style: normal;
}

.summary-card strong {
  font-size: 22px;
}

.admin-table-wrap {
  margin-top: 14px;
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.admin-table th {
  color: var(--muted);
  font-weight: 700;
}

.backfill-card {
  display: grid;
  gap: 12px;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eeea;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #b78928 0%, #8f6c1d 100%);
}

.backfill-log {
  margin: 14px 0 0;
  min-height: 220px;
  max-height: 420px;
  overflow: auto;
  padding: 14px;
  border-radius: 14px;
  background: #17221d;
  color: #eef7f2;
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.search-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 560px);
  gap: 32px;
  align-items: stretch;
  min-height: 540px;
  padding: 34px;
  border-radius: 24px;
  overflow: hidden;
  color: white;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.search-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/assets/hero-landscape-warm.png") center center / cover no-repeat;
  opacity: 0.72;
}

.search-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 28, 24, 0.46) 0%, rgba(18, 28, 24, 0.16) 36%, rgba(13, 23, 20, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 214, 174, 0.1) 0%, rgba(13, 23, 20, 0.18) 40%, rgba(10, 18, 15, 0.48) 100%);
}

.hero-copy,
.search-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: 6px 4px 8px;
}

.hero-badge {
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid rgba(255, 243, 225, 0.26);
  border-radius: 999px;
  background: rgba(48, 38, 27, 0.24);
  color: #fff3e1;
  font-size: 13px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.hero-copy-body {
  max-width: 430px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
}

.hero-point {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 247, 236, 0.16);
  border-radius: 18px;
  background: rgba(15, 22, 20, 0.26);
  backdrop-filter: blur(12px);
}

.hero-point strong {
  color: #fff7eb;
  font-size: 15px;
}

.hero-point span {
  color: rgba(255, 245, 232, 0.88);
  font-size: 13px;
  line-height: 1.6;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 24px rgba(19, 20, 17, 0.18);
}

h2 {
  font-size: 18px;
}

p {
  color: rgba(255, 243, 229, 0.92);
  line-height: 1.7;
}

.search-card {
  display: grid;
  align-self: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 245, 230, 0.14);
  border-radius: 24px;
  background: rgba(16, 25, 22, 0.48);
  backdrop-filter: blur(20px) saturate(110%);
  box-shadow: 0 22px 50px rgba(17, 22, 18, 0.18);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.search-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.span-2 {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #f3eadb;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.field span {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.multi-select {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.multi-select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: rgba(255, 251, 247, 0.96);
  color: var(--ink);
  text-align: left;
  min-width: 0;
}

.multi-select-trigger span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-select-trigger strong {
  color: #8f6c1d;
  font-size: 12px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.multi-select-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 239, 215, 0.18);
  border-radius: 16px;
  background: rgba(20, 30, 26, 0.95);
  box-shadow: 0 18px 40px rgba(10, 18, 15, 0.32);
  z-index: 20;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.stats-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toggle-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfdfc;
  color: var(--ink);
  cursor: pointer;
}

.toggle-option input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--gold);
}

.usage-group-list {
  display: grid;
  gap: 14px;
}

.usage-group-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdfc;
  overflow: hidden;
}

.usage-group-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.usage-group-summary::-webkit-details-marker {
  display: none;
}

.usage-group-summary strong {
  display: block;
  margin-bottom: 4px;
}

.usage-group-summary span {
  color: var(--muted);
  font-size: 13px;
}

.usage-group-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.usage-group-body {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.usage-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.usage-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf2ef;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.usage-table {
  min-width: 1080px;
}

.table-subtext {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  word-break: break-all;
}

.table-input {
  min-width: 180px;
}

.compact-button {
  min-height: 38px;
  padding: 0 12px;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: #fbfdfc;
}

.multi-select-actions {
  display: flex;
  gap: 8px;
}

.action-chip {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
}

.multi-select-options {
  display: grid;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
}

.multi-select-option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 244, 230, 0.06);
  color: #fff3e1;
  cursor: pointer;
}

.multi-select-option input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--gold);
}

.multi-select-option span {
  font-size: 13px;
}

.multi-select-option em {
  color: rgba(255, 241, 223, 0.72);
  font-style: normal;
  font-size: 12px;
}

.multi-select-empty {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 244, 230, 0.06);
  color: rgba(255, 241, 223, 0.76);
  font-size: 13px;
}

.catalog-filter-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 239, 215, 0.14);
  border-radius: 18px;
  background: rgba(255, 244, 230, 0.07);
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.filter-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.filter-card-head strong {
  display: block;
  margin-bottom: 4px;
}

.filter-meta {
  min-width: 110px;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 243, 225, 0.1);
  color: #fff3e1;
  font-size: 12px;
  text-align: center;
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.filter-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.filter-radios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.radio-group {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 239, 215, 0.14);
  border-radius: 16px;
  background: rgba(255, 244, 230, 0.06);
}

.radio-group legend {
  padding: 0 4px 8px;
  color: #f7ead8;
  font-weight: 700;
  font-size: 13px;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 14px;
  margin-top: 6px;
  color: #f4e6d2;
  font-size: 13px;
  cursor: pointer;
}

.radio-option input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--gold);
}

.search-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}

.field-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.field-label span {
  min-width: 0;
}

.fund-list-count {
  color: #fff3e1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
  max-width: 100%;
}

.reload-note {
  color: rgba(255, 241, 223, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

input,
select,
button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  max-width: 100%;
}

input,
select {
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 251, 247, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

button {
  background: linear-gradient(135deg, #b78928 0%, #8f6c1d 100%);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

button.secondary {
  background: rgba(14, 22, 19, 0.14);
  border: 1px solid rgba(255, 241, 223, 0.28);
}

button.ghost {
  background: #edf2ef;
  color: var(--ink);
}

button:disabled,
input:disabled,
select:disabled {
  opacity: 0.65;
  cursor: wait;
}

.status-band {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
  color: var(--muted);
}

.status,
.catalog-meta {
  min-height: 24px;
}

.catalog-meta {
  font-size: 13px;
  text-align: right;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
  gap: 18px;
  min-width: 0;
}

.panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.panel-title span {
  color: var(--muted);
  font-size: 14px;
}

.zoom-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}

.zoom-controls button {
  min-height: 34px;
  border: 1px solid var(--line);
  background: #f7faf8;
  color: var(--ink);
  font-size: 13px;
}

.zoom-controls button.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.chart {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  overflow-x: auto;
  max-width: 100%;
}

.chart.empty {
  display: grid;
  place-items: center;
  color: var(--muted);
}

svg {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
}

.grid line {
  stroke: #e2eae5;
}

.grid text,
.xlabels text {
  fill: var(--muted);
  font-size: 12px;
}

.axis {
  stroke: #9bac9f;
  stroke-width: 1.2;
}

.curve {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.area {
  fill: rgba(47, 95, 143, 0.12);
}

.dot {
  fill: white;
  stroke: var(--blue);
  stroke-width: 2;
}

.info-list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  margin: 14px 0 0;
}

.subhead {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.annual-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.annual-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdfc;
}

.annual-row span {
  color: var(--muted);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.positive {
  color: var(--red);
}

.negative {
  color: var(--green);
}

.warnings {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 18, 14, 0.54);
  z-index: 1000;
}

.dialog-backdrop[hidden] {
  display: none;
}

.dialog-card {
  width: min(100%, 420px);
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.dialog-card p {
  color: var(--muted);
  line-height: 1.6;
}

.dialog-field {
  color: var(--ink);
}

.dialog-error {
  min-height: 20px;
  color: var(--red);
  font-size: 13px;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.is-mobile main {
  padding: 12px;
}

body.is-mobile .search-band {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  min-height: auto;
  border-radius: 0 0 24px 24px;
}

body.is-mobile h1 {
  font-size: 40px;
}

body.is-mobile .search-controls,
body.is-mobile .search-actions,
body.is-mobile .result-grid,
body.is-mobile .filter-categories,
body.is-mobile .filter-controls,
body.is-mobile .filter-radios,
 body.is-mobile .dialog-actions,
 body.is-mobile .hero-points {
  grid-template-columns: 1fr;
}

body.is-mobile .field {
  font-size: 12px;
}

body.is-mobile .hero-copy {
  padding: 4px 2px 0;
}

body.is-mobile .hero-copy-body {
  max-width: none;
}

body.is-mobile select,
body.is-mobile input,
body.is-mobile button {
  min-height: 50px;
  font-size: 16px;
}

body.is-mobile .multi-select-panel {
  position: static;
}

body.is-mobile .multi-select-trigger span:first-child {
  white-space: nowrap;
}

body.is-mobile .filter-card-head,
body.is-mobile .status-band {
  flex-direction: column;
  align-items: flex-start;
}

body.is-mobile .filter-meta {
  min-width: 0;
}

body.is-mobile .field-label {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

body.is-mobile .catalog-meta {
  font-size: 12px;
  text-align: left;
}

body.is-mobile .panel {
  padding: 14px;
  border-radius: 12px;
}

body.is-mobile .zoom-controls {
  grid-template-columns: repeat(2, minmax(88px, 1fr));
}

body.is-mobile .chart {
  min-height: 300px;
}

body.is-mobile .access-shell,
body.is-mobile .admin-shell {
  padding: 12px;
}

body.is-mobile .access-card,
body.is-mobile .admin-hero {
  padding: 20px;
  min-height: auto;
}

body.is-mobile .choice-grid,
body.is-mobile .summary-grid,
body.is-mobile .admin-grid,
body.is-mobile .admin-form {
  grid-template-columns: 1fr;
}

body.is-mobile .stats-toolbar,
body.is-mobile .usage-group-summary {
  flex-direction: column;
  align-items: flex-start;
}

body.is-mobile .toggle-group,
body.is-mobile .usage-group-metrics,
body.is-mobile .usage-chip-row {
  width: 100%;
}

body.is-mobile .toggle-option {
  width: 100%;
  justify-content: flex-start;
}

body.is-mobile .admin-hero {
  flex-direction: column;
}

body.is-mobile svg {
  min-width: 0;
}

body.is-mobile .info-list {
  grid-template-columns: 96px 1fr;
  gap: 10px;
}

body.is-mobile .annual-row {
  padding: 10px 12px;
}

body.is-mobile .dialog-card {
  padding: 18px;
}

@media (max-width: 860px) {
  main {
    padding: 16px;
  }

  .search-band,
  .result-grid,
  .admin-grid,
  .admin-form,
  .choice-grid,
  .summary-grid,
  .search-controls,
  .search-actions,
  .filter-categories,
  .filter-controls,
  .filter-radios,
  .dialog-actions,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .search-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .admin-hero {
    flex-direction: column;
  }

  .status-band,
  .filter-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-meta {
    text-align: left;
  }

  .zoom-controls {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  }

  h1 {
    font-size: 42px;
  }

  .chart {
    min-height: 340px;
  }
}
