/* src/app/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-nav:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
}
:root {
  --bg:#f5f6f8;
  --surface:#fff;
  --surface-mute:#eef0f3;
  --ink:#0f1115;
  --ink-2:#475569;
  --ink-3:#94a3b8;
  --line:#e6e8ec;
  --line-mute:rgba(15,17,21,.06);
  --accent:#2563eb;
  --hot:#e1442a;
  --good:#16a34a;
  --type-food:#16a34a;
  --type-food-bg:#e7f6ec;
  --type-drink:#7c3aed;
  --type-drink-bg:#efe9ff;
  --type-both:#d97706;
  --type-both-bg:#fdeacd;
  --shadow-1:0 1px 2px rgba(15,17,21,.04),0 1px 3px rgba(15,17,21,.06);
  --shadow-2:0 4px 8px rgba(15,17,21,.06),0 12px 32px rgba(15,17,21,.1);
  --ink-press:#2a2a2d;
  --stripe-color:transparent;
  --gutter:8px;
  font-family:
    "Inter Tight",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    system-ui,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
}
body {
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.5;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  padding: 0;
  text-align: left;
  font-size: inherit;
}
h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.025em;
}
.app {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  min-height: 100dvh;
}
.body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-mute);
  min-height: 52px;
}
.topbar-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.topbar[data-panel-mode=filters] {
  display: none;
}
.v4page {
  flex: 1;
  display: flex;
}
.v4pane {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 899px) {
  .v4page[data-mode=filters] .v4pane-list {
    display: none;
  }
  .v4page[data-mode=list] .v4pane-filters {
    display: none;
  }
  .v4f-result {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(57px + env(safe-area-inset-bottom));
    background: var(--bg);
    padding: 10px var(--gutter) 16px;
    z-index: 5;
  }
  .v4filters-scroll {
    padding-bottom: 88px;
  }
}
.v4pane-filters {
  background: var(--bg);
}
.v4filters-scroll {
  flex-shrink: 0;
  padding: 14px var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.v4filters {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.v4f-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v4f-label {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.v4f-hint {
  font-size: 12px;
  color: var(--ink-3);
}
.v4f-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v4pill {
  padding: 10px 14px;
  border-radius: 99px;
  border: 1.5px solid transparent;
  background: var(--surface-mute);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition:
    background .1s,
    border-color .1s,
    color .1s;
  line-height: 1.2;
}
.v4pill:hover {
  color: var(--ink);
}
.v4pill[data-active="1"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.v4pill-type[data-active="1"][data-type=food] {
  background: var(--type-food);
  border-color: var(--type-food);
}
.v4pill-type[data-active="1"][data-type=drink] {
  background: var(--type-drink);
  border-color: var(--type-drink);
}
.v4pill-type[data-active="1"][data-type=both] {
  background: var(--type-both);
  border-color: var(--type-both);
}
.v4f-result {
  background: var(--bg);
  padding: 10px 0 16px;
  z-index: 1;
}
.v4f-show-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background .1s;
}
.v4f-show-btn:active {
  background: var(--ink-press);
}
.v4f-reset {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  padding: 8px 0;
}
.v4f-reset:hover {
  color: var(--ink);
}
.v4f-reset[data-active="1"] {
  color: var(--hot);
}
.v4range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--surface-mute);
  border-radius: 99px;
  outline: none;
  margin: 6px 0;
  touch-action: pan-y;
}
.v4range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1.5px var(--ink);
}
.v4range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1.5px var(--ink);
}
.v4map-wrap {
  flex: none;
  height: 36vh;
  min-height: 160px;
  position: relative;
  background: var(--surface-mute);
}
.v4map {
  width: 100%;
  height: 100%;
  background: #f1f0eb;
  cursor: crosshair;
  position: relative;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  isolation: isolate;
}
.v4map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #f1f0eb;
}
.v4map .leaflet-control-attribution {
  display: none;
}
.map-region-sel {
  position: absolute;
  border: 2px solid var(--accent);
  background: rgba(37, 99, 235, .08);
  pointer-events: none;
  z-index: 999;
  border-radius: 4px;
}
.map-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 998;
  font-size: 10px;
  color: var(--ink-3);
  background: rgba(255, 255, 255, .88);
  padding: 3px 7px;
  border-radius: 4px;
  pointer-events: none;
}
.map-clear-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-1);
  white-space: nowrap;
}
.v4pane-list {
  background: var(--bg);
}
.v4list {
  padding: 6px var(--gutter) 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v4card {
  flex-shrink: 0;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow .18s, background .12s;
}
.v4card:hover {
  box-shadow: var(--shadow-2);
}
.v4card[data-expanded="1"] {
  box-shadow: var(--shadow-2);
}
.v4card-row:active {
  background: var(--surface-mute);
}
.v4card[data-deal-type=food] {
  --stripe-color:var(--type-food);
}
.v4card[data-deal-type=drink] {
  --stripe-color:var(--type-drink);
}
.v4card[data-deal-type=both] {
  --stripe-color:var(--type-both);
}
.v4card[data-deal-type] {
  box-shadow: inset 3px 0 0 var(--stripe-color), var(--shadow-1);
}
.v4card[data-deal-type]:hover,
.v4card[data-deal-type][data-expanded="1"] {
  box-shadow: inset 3px 0 0 var(--stripe-color), var(--shadow-2);
}
.v4card[data-pinned="1"] {
  background: var(--surface-mute);
}
.v4card[data-stale="1"] {
  opacity: .55;
}
.v4card[data-stale="1"] .v4card-title::after {
  content: " \b7  no longer listed";
  font-size: 11px;
  color: var(--ink-3);
  font-style: italic;
}
.v4card-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 10px;
  align-items: stretch;
  width: 100%;
  padding: 8px;
}
.v4card[data-expanded="1"] .v4card-row {
  grid-template-columns: 1fr auto;
  padding-left: 14px;
}
.v4card[data-expanded="1"] .v4card-thumb {
  display: none;
}
.v4card-thumb {
  width: 80px;
  align-self: stretch;
  background: var(--surface-mute) center/cover no-repeat;
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v4card-thumb--job {
  background-color: #dfe2e6;
}
.v4thumb-person,
.v4thumb-building {
  width: 52%;
  height: 52%;
  pointer-events: none;
}
.v4card-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 4px 0;
}
.v4card-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  flex-shrink: 0;
  padding: 4px 6px 4px 0;
}
.v4card-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.v4card-chain {
  font-size: 13px;
  color: var(--ink-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v4card-line3 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
  align-items: center;
}
.v4card-beds {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  text-align: right;
}
.v4card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}
.v4card-price-wrap {
  display: contents;
}
.v4card[data-expanded="1"] .v4card-price-wrap {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
}
.v4card-price-unit {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  display: none;
}
.v4card[data-expanded="1"] .v4card-price-unit {
  display: block;
}
.v4card-caret {
  margin-top: 4px;
  color: var(--ink-3);
  opacity: .6;
  line-height: 0;
}
.v4card-caret svg {
  transition: transform .15s;
  display: block;
}
.v4card[data-expanded="1"] .v4card-caret svg {
  transform: rotate(180deg);
}
.v4card-facet {
  font-size: 11.5px;
  color: var(--ink-2);
  background: var(--surface-mute);
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
  font-weight: 500;
}
.v4facet-shared {
  background: #fff3e0;
  color: #bf6000;
}
.v4facet-private {
  background: #e8f5e9;
  color: #2e7d32;
}
.v4facet-local {
  color: var(--good);
  background: rgba(22, 163, 74, .12);
}
.v4facet-chain {
  color: var(--ink-3);
  background: var(--surface-mute);
}
.v4day-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--surface-mute);
  padding: 5px 10px;
  border-radius: 99px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.v4day-badge.is-daily {
  color: var(--good);
  background: rgba(22, 163, 74, .12);
}
.v4deal-type-icon {
  line-height: 0;
}
.v4deal-type-icon[data-type=food] {
  color: var(--type-food);
}
.v4deal-type-icon[data-type=drink] {
  color: var(--type-drink);
}
.v4deal-type-icon[data-type=both] {
  color: var(--type-both);
}
.v4deal-cuisine {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: capitalize;
  text-align: right;
  white-space: nowrap;
}
.v4card-expand {
  display: none;
  border-top: 1px solid var(--line-mute);
  padding: 16px;
  background: var(--surface);
  flex-direction: column;
  gap: 14px;
}
.v4card[data-expanded="1"] .v4card-expand {
  display: flex;
  animation: expandIn .18s ease-out;
}
@keyframes expandIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.v4exp-gallery {
  display: flex;
  gap: 0;
  overflow-x: auto;
  margin: 0 -16px;
  scroll-snap-type: x mandatory;
  cursor: pointer;
  -webkit-overflow-scrolling: touch;
}
.v4exp-photo {
  flex: 0 0 auto;
  width: 72vw;
  max-width: 280px;
  height: 160px;
  background: #ddd center/cover no-repeat;
  border-radius: 0;
  scroll-snap-align: start;
}
.v4exp-note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.v4exp-locs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.v4exp-loc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-mute);
  border-radius: 10px;
}
.v4exp-loc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.v4exp-loc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.v4exp-loc-addr {
  font-size: 12px;
  color: var(--ink-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v4exp-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
  padding: 2px 0;
}
@media (min-width: 700px) {
  .v4exp-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}
.v4exp-facts > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.v4exp-facts dt {
  font-size: 10.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
.v4exp-facts dd {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.v4exp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}
.v4exp-actions .v4btn {
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v4btn {
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--surface-mute);
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background .1s, border-color .1s;
  text-decoration: none;
  display: inline-block;
}
.v4btn:hover {
  border-color: var(--line);
}
.v4btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.v4btn-primary:hover {
  background: var(--ink-press);
  border-color: var(--ink-press);
}
.v4btn-grow {
  flex: 1;
}
.topbar-filter-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--ink);
  transition: background .12s, color .12s;
  margin-left: auto;
  flex-shrink: 0;
}
.topbar-filter-btn:active {
  background: var(--surface-mute);
}
.topbar-filter-btn[data-active="1"] {
  background: var(--ink);
  color: #fff;
}
.filter-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--hot);
  display: none;
}
.filter-badge[data-on="1"] {
  display: block;
}
.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 0;
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbtn {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px 12px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  transition: color .12s;
  max-width: 120px;
  text-decoration: none;
}
.tabbtn[aria-current=page] {
  color: var(--ink);
}
.tabbtn[aria-current=page]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--ink);
}
.tabbtn-icon {
  width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
}
.mp-r,
.mp-f {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 1px 4px rgba(0, 0, 0, .3);
  transition: transform .12s, background .12s;
  cursor: pointer;
}
.mp-r {
  background: var(--ink);
}
.mp-f {
  background: var(--hot);
}
.leth-pin[data-dimmed="1"] .mp-r,
.leth-pin[data-dimmed="1"] .mp-f {
  background: #c5ccd6;
  box-shadow: 0 0 0 2px #fff, 0 1px 2px rgba(0, 0, 0, .15);
}
.leth-pin[data-active="0"] .mp-r,
.leth-pin[data-active="0"] .mp-f {
  opacity: .4;
}
.leth-pin[data-active="1"] .mp-r,
.leth-pin[data-active="1"] .mp-f {
  transform: scale(1.6);
  box-shadow: 0 0 0 2.5px #fff, 0 2px 8px rgba(0, 0, 0, .4);
}
@media (min-width: 900px) {
  :root {
    --gutter:16px;
  }
  .app {
    flex-direction: row;
    height: 100dvh;
    overflow: hidden;
    min-height: 0;
  }
  .topbar {
    display: none;
  }
  .tabbar {
    display: none;
  }
  .desktopnav {
    flex-shrink: 0;
    width: 220px;
    height: 100%;
    overflow-y: auto;
    min-height: 0;
    border-right: 1px solid var(--line);
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--surface);
  }
  .desktopnav-brand {
    padding: 4px 10px 22px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
  }
  .desktopnav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--ink-2);
    font-size: 15px;
    font-weight: 600;
    transition: background .1s, color .1s;
    width: 100%;
    text-decoration: none;
  }
  .desktopnav-item:hover {
    background: var(--surface-mute);
    color: var(--ink);
  }
  .desktopnav-item[aria-current=page] {
    background: var(--ink);
    color: #fff;
  }
  .desktopnav-foot {
    margin-top: auto;
    padding: 12px 10px;
    font-size: 11px;
    color: var(--ink-3);
    line-height: 1.6;
  }
  .desktopnav-foot a {
    color: inherit;
    text-decoration: none;
    opacity: .7;
  }
  .body {
    flex: 1;
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .pagehead {
    display: block;
    flex: 0 0 auto;
    padding: 24px 28px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .pagehead h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
  }
  .pagehead-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 6px;
  }
  .pagehead-count {
    font-size: 14px;
    color: var(--ink-2);
    font-variant-numeric: tabular-nums;
  }
  .v4page {
    flex: 1;
    min-height: 0;
    display: flex;
  }
  .v4page[data-mode=filters] .v4pane-list,
  .v4page[data-mode=list] .v4pane-filters {
    display: flex;
  }
  .v4pane-filters {
    flex: 0 0 380px;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-right: 1px solid var(--line);
    background: var(--surface);
    display: block;
  }
  .v4map-wrap {
    flex: none;
    height: auto;
    aspect-ratio: 4/3;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .v4filters-scroll {
    padding: 20px var(--gutter);
    gap: 20px;
    background: var(--surface);
  }
  .v4f-result {
    display: none;
  }
  .v4pane-list {
    flex: 1;
    min-width: 0;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .v4list {
    padding: 14px var(--gutter) 24px;
    gap: 10px;
  }
  .v4card-row {
    grid-template-columns: 92px 1fr auto;
    gap: 14px;
    padding: 12px;
  }
  .v4card-thumb {
    width: 92px;
    min-height: 92px;
    border-radius: 10px;
  }
  .v4card-meta {
    padding: 4px 0;
  }
  .v4card-aside {
    padding: 4px 8px 4px 0;
  }
}
@media (max-width: 899px) {
  .pagehead {
    display: none;
  }
  .desktopnav {
    display: none;
  }
}
.v4f-search,
.v4f-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .1s;
}
.v4f-search:focus,
.v4f-select:focus {
  outline: none;
  border-color: var(--ink);
}
.v4f-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.more-wrap {
  padding: 32px 20px;
  max-width: 480px;
}
.more-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 32px;
}
.more-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 6px;
}
.more-body {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.more-body a {
  color: var(--ink);
  text-decoration: underline;
}
.more-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 32px;
}
.more-link {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}
