:root {
  color-scheme: light;
  --red: #ff4d4f;
  --tomato: #ff6b47;
  --orange: #ff9f1c;
  --gold: #ffd166;
  --cream: #fff5e8;
  --paper: #fffdf8;
  --pink: #ff6fae;
  --plum: #7c3f58;
  --green: #20a464;
  --ink: #2b1b17;
  --muted: #7e6158;
  --line: rgba(137, 79, 55, .15);
  --shadow: 0 18px 46px rgba(155, 72, 38, .16);
  --r: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 111, 174, .18), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(255, 159, 28, .2), transparent 34%),
    linear-gradient(180deg, #fff1e8 0%, #fffaf2 44%, #ffeede 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
}

.app {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 16px 18px 34px;
}

.hero {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(107, 47, 20, .22);
  isolation: isolate;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(44, 19, 13, .86) 0%, rgba(44, 19, 13, .58) 42%, rgba(44, 19, 13, .18) 100%),
    radial-gradient(circle at 82% 22%, rgba(255, 159, 28, .3), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
}

.eyebrow,
.kicker,
.share-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff7d1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 12px 0 8px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .26);
}

.hero p {
  width: min(520px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-actions button,
.route-actions button,
.food-actions button,
.share-card button {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--tomato));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 77, 79, .25);
}

.hero-actions button:nth-child(2),
.food-actions button.ghost {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .36);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 46px);
  z-index: 2;
  width: min(300px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 24px;
  background: rgba(255, 252, 245, .2);
  color: #fff;
  backdrop-filter: blur(18px);
}

.hero-card span,
.food-card small {
  display: block;
  color: #ffe1ae;
  font-size: 12px;
  font-weight: 900;
}

.hero-card b {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.hero-card p {
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.6;
}

.stats,
.filters,
.atlas-panel,
.route-panel,
.board {
  margin-top: 18px;
}

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

.stat {
  padding: 20px;
  border-radius: var(--r);
  background: rgba(255, 253, 248, .86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat b {
  display: block;
  color: var(--red);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filters,
.atlas-panel,
.route-panel,
.board {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow);
}

.filters {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 107, 71, .2);
  border-radius: 16px;
  background: #fff8ef;
  color: var(--ink);
  font-weight: 800;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(255, 107, 71, .16);
}

.search-with-action {
  position: relative;
}

.search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-row input {
  min-width: 0;
}

.search-row button {
  flex: 0 0 auto;
  min-width: 72px;
  height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), var(--tomato));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 77, 79, .18);
}

.search-suggestions {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-height: 236px;
  margin-top: 10px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(255, 107, 71, .18);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 16px 34px rgba(155, 72, 38, .14);
}

.search-suggestions.open {
  display: grid;
}

.search-suggestion {
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 107, 71, .14);
  border-radius: 14px;
  background: #fff8ef;
  color: var(--ink);
  text-align: left;
}

.search-suggestion b,
.search-suggestion small {
  display: block;
}

.search-suggestion b {
  font-size: 14px;
  line-height: 1.25;
}

.search-suggestion small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
}

.search-empty {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff8ef;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.city-strip {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.city-strip::-webkit-scrollbar { display: none; }

.city-pill {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 107, 71, .2);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--muted);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(155, 72, 38, .08);
}

.city-pill.active {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  border-color: transparent;
}

.atlas-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

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

.kicker,
.share-kicker {
  background: #fff0e5;
  color: var(--red);
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: 26px;
}

.region-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr)) minmax(260px, 1.35fr);
  gap: 14px;
  margin-bottom: 16px;
}

.atlas-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.62fr);
  gap: 16px;
  align-items: start;
}

.province-grid {
  max-height: 680px;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-right: 4px;
}

.province-card {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 14px;
  color: #fff;
  text-align: left;
  background-image:
    linear-gradient(180deg, rgba(42, 19, 13, .16), rgba(42, 19, 13, .76)),
    url("./assets/region-food-atlas.png");
  background-size: auto 100%, 420% auto;
  background-position: center, var(--img-x, 50%) var(--img-y, 50%);
  box-shadow: 0 12px 24px rgba(155, 72, 38, .14);
}

.province-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 8%, rgba(255,255,255,.28), transparent 25%);
  pointer-events: none;
}

.province-card.active {
  outline: 3px solid rgba(255, 77, 79, .7);
  box-shadow: 0 18px 34px rgba(255, 77, 79, .22);
}

.province-card b,
.province-card span,
.province-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.province-card b {
  font-size: 20px;
  line-height: 1.2;
}

.province-card span {
  margin-top: 9px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.province-card small {
  margin-top: 10px;
  color: #ffe5b3;
  font-size: 12px;
  font-weight: 900;
}

.region-detail {
  min-width: 0;
}

.region-photo {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 24px;
  background: #301610;
  color: #fff;
  box-shadow: 0 18px 36px rgba(155, 72, 38, .16);
}

.region-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.02);
}

.region-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 20, 12, .88), rgba(43, 20, 12, .38) 58%, rgba(43, 20, 12, .08));
}

.region-photo > div {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 26px;
}

.region-photo span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #ffe3aa;
  font-size: 12px;
  font-weight: 900;
}

.region-photo b {
  display: block;
  margin-top: 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
}

.region-photo p {
  width: min(520px, 100%);
  margin: 12px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

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

.region-chip {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 107, 71, .16);
  border-radius: 18px;
  background: #fff8ef;
}

.region-chip b {
  display: block;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.region-chip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.county-grid {
  max-height: 410px;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-right: 4px;
}

.county-card {
  border: 1px solid rgba(255, 107, 71, .16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 111, 174, .14), transparent 28%),
    #fffdf8;
  padding: 13px;
  min-height: 118px;
}

.county-card b {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.county-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.county-card small {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.route-actions,
.board-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.route-result {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.route-step {
  position: relative;
  min-height: 150px;
  padding: 18px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 111, 174, .22), transparent 34%),
    linear-gradient(135deg, #fff8ef, #fff);
  border: 1px solid var(--line);
}

.route-step em {
  color: var(--red);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.route-step b {
  display: block;
  margin-top: 8px;
  font-size: 19px;
}

.route-step span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.tab {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--plum);
  font-weight: 900;
}

.tab.active {
  background: linear-gradient(135deg, var(--red), var(--tomato));
  color: #fff;
}

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

.food-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% -4%, rgba(255, 209, 102, .42), transparent 34%),
    linear-gradient(180deg, #fffdf8, #fff4e6);
  border: 1px solid rgba(255, 107, 71, .17);
  box-shadow: 0 16px 34px rgba(155, 72, 38, .12);
}

.food-cover {
  position: relative;
  min-height: 136px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 77, 79, .95), rgba(255, 159, 28, .9)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 8px, transparent 8px 16px);
  color: #fff;
}

.food-cover::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -38px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.food-emoji {
  position: absolute;
  right: 22px;
  bottom: 12px;
  z-index: 1;
  font-size: 60px;
  filter: drop-shadow(0 10px 18px rgba(92, 33, 13, .22));
}

.food-cover h3 {
  position: relative;
  z-index: 2;
  width: calc(100% - 70px);
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.16;
}

.food-body {
  padding: 18px;
}

.food-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  border: 1px solid rgba(255, 107, 71, .16);
  font-size: 12px;
  font-weight: 900;
}

.avoid {
  min-height: 50px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 209, 102, .2);
  color: #8d4a12;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.food-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.food-actions button {
  flex: 1;
  min-height: 38px;
  padding: 0 10px;
  font-size: 12px;
}

.food-actions button.ghost {
  background: #fff;
  color: var(--red);
  border: 1px solid rgba(255, 107, 71, .16);
  backdrop-filter: none;
}

.food-card.is-done,
.food-card.is-fav {
  border-color: rgba(32, 164, 100, .35);
}

.food-card.is-done .food-cover::before {
  content: "已吃";
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.control-deck {
  position: relative;
  z-index: 5;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow);
}

.control-deck .stats,
.control-deck .filters,
.control-deck .city-strip {
  margin-top: 0;
}

.control-deck .stats {
  gap: 8px;
}

.control-deck .stat {
  min-height: 74px;
  padding: 12px;
  border-radius: 16px;
  box-shadow: none;
}

.control-deck .stat b {
  font-size: 24px;
}

.control-deck .stat span {
  margin-top: 6px;
  font-size: 11px;
}

.control-deck .filters {
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.control-deck .city-strip {
  margin-top: 12px;
  padding-bottom: 4px;
}

.mode-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.mode-tab {
  min-height: 42px;
  border: 1px solid rgba(255, 107, 71, .18);
  border-radius: 16px;
  background: #fff8ef;
  color: var(--plum);
  font-weight: 900;
}

.mode-tab.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--tomato));
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 77, 79, .2);
}

.workspace-panel {
  margin-top: 14px;
}

.workspace-panel:not(.active) {
  display: none;
}

.board.workspace-panel.active,
.atlas-panel.workspace-panel.active,
.route-panel.workspace-panel.active {
  display: block;
}

.board .food-grid,
.atlas-panel .province-grid,
.atlas-panel .county-grid,
.route-panel .route-result {
  scrollbar-width: thin;
}

.board .food-grid {
  max-height: min(620px, 58vh);
  overflow: auto;
  padding-right: 4px;
}

.atlas-panel .province-grid {
  max-height: min(600px, 54vh);
}

.atlas-panel .county-grid {
  max-height: min(380px, 42vh);
}

.route-panel .route-result {
  max-height: min(420px, 48vh);
  overflow: auto;
  padding-right: 4px;
}

.empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border-radius: 24px;
  background: #fff8ef;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 27, 23, .56);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
}

.modal-close {
  position: absolute;
  right: -8px;
  top: -8px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  box-shadow: var(--shadow);
}

.share-card {
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 111, 174, .2), transparent 30%),
    linear-gradient(180deg, #fffdf8, #fff1df);
  box-shadow: 0 26px 80px rgba(0,0,0,.24);
}

.share-card h2 {
  margin: 14px 0;
  font-size: 28px;
}

textarea {
  width: 100%;
  min-height: 260px;
  padding: 16px;
  border: 1.5px solid rgba(255, 107, 71, .18);
  border-radius: 18px;
  background: #fffaf3;
  color: var(--ink);
  line-height: 1.7;
  resize: vertical;
}

#copyHint {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .app {
    padding: 10px 10px 28px;
  }

  .hero {
    min-height: 250px;
    border-radius: 22px;
  }

  .hero-content {
    padding: 24px 20px 0;
  }

  .eyebrow {
    min-height: 26px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero h1 {
    margin: 10px 0 6px;
    font-size: 44px;
  }

  .hero p {
    max-width: 310px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    display: none;
  }

  .hero-card {
    left: 18px;
    right: 18px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .hero-card span {
    font-size: 11px;
  }

  .hero-card b {
    font-size: 22px;
  }

  .hero-card p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .stats,
  .filters,
  .region-filters,
  .atlas-layout,
  .province-grid,
  .region-summary,
  .route-result,
  .county-grid,
  .food-grid {
    grid-template-columns: 1fr;
  }

  .control-deck {
    margin-top: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .control-deck .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .control-deck .stat {
    min-height: 58px;
    padding: 9px;
  }

  .control-deck .stat b {
    font-size: 20px;
  }

  .control-deck .stat span {
    margin-top: 4px;
    font-size: 10px;
  }

  .control-deck .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
  }

  .control-deck .filters .search {
    grid-column: 1 / -1;
  }

  label span {
    margin-bottom: 6px;
  }

  input,
  select {
    min-height: 44px;
    padding: 0 12px;
  }

  .control-deck .city-strip {
    margin-top: 10px;
    padding-bottom: 2px;
  }

  .city-strip {
    gap: 8px;
  }

  .city-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mode-switch {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .mode-tab {
    min-height: 38px;
    font-size: 13px;
  }

  .workspace-panel {
    margin-top: 12px;
  }

  .board .food-grid,
  .route-panel .route-result,
  .atlas-panel .county-grid {
    max-height: none;
    overflow: visible;
  }

  .province-grid,
  .county-grid {
    max-height: none;
  }

  .region-photo {
    min-height: 360px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-actions,
  .board-tabs {
    width: 100%;
  }

  .route-actions select,
  .route-actions button,
  .board-tabs button {
    flex: 1;
  }

  .search-suggestions {
    grid-template-columns: 1fr;
    max-height: 280px;
  }

  .search-row button {
    min-width: 64px;
    padding: 0 12px;
  }
}
