:root {
  /* font size */
  --font-size-h1: 34px;
  --font-size-h2: 24px;
  --font-size-h3: 18px;
  --font-size-h4: 16px;
  --font-size-body: 14px;
  --font-size-caption: 12px;
  --font-size-form: 14px;

  /* line height */
  --line-height-h1: 1.25;
  --line-height-h2: 1.3;
  --line-height-h3: 1.4;
  --line-height-h4: 1.45;
  --line-height-body: 1.6;
  --line-height-caption: 1.4;
  --line-height-form: 1.6;

  /* font weight */
  --font-weight-h1: 700;
  --font-weight-h2: 600;
  --font-weight-h3: 600;
  --font-weight-h4: 500;
  --font-weight-body: 400;
  --font-weight-caption: 400;

  --bg: #f4f1ea;
  --paper: #fffdf9;
  --ink: #1a1a1a;
  --muted: #676767;
  --line: #d9d2c6;
  --border-unified: #9ca3af;
  --accent: #cd3a2e;
  --dark: #111111;
  --cat-home: #e5e7eb;
  --cat-home-bg: rgba(229, 231, 235, 0.14);
  --cat-food: #ff7a59;
  --cat-food-bg: rgba(255, 122, 89, 0.2);
  --cat-fashion: #22c55e;
  --cat-fashion-bg: rgba(34, 197, 94, 0.2);
  --cat-mens: #3b82f6;
  --cat-mens-bg: rgba(59, 130, 246, 0.2);
  --cat-womens: #ec4899;
  --cat-womens-bg: rgba(236, 72, 153, 0.2);
  --cat-travel: #14b8a6;
  --cat-travel-bg: rgba(20, 184, 166, 0.2);
  --cat-event: #a855f7;
  --cat-event-bg: rgba(168, 85, 247, 0.2);
  --cat-sale: #f59e0b;
  --admin-module-gap: 24px;
  --admin-page-title-size: var(--font-size-h1);
  --admin-page-title-line-height: var(--line-height-h1);
  --admin-page-title-bottom-space: calc(var(--admin-module-gap) + 8px);
  --admin-page-subtitle-size: var(--font-size-h2);
  --admin-page-subtitle-line-height: var(--line-height-h2);
  --cat-sale-bg: rgba(245, 158, 11, 0.2);
  --cat-place: #06b6d4;
  --cat-place-bg: rgba(6, 182, 212, 0.2);
  --cat-admin: #94a3b8;
  --cat-admin-bg: rgba(148, 163, 184, 0.22);
  --cat-default: #9ca3af;
  --cat-default-bg: rgba(156, 163, 175, 0.2);
  --nav-location-pill-height: 42px;
  --skeleton-base: #eef2f5;
  --skeleton-highlight: #fbfcfd;
  --skeleton-edge: #e4e9ee;
}

/* Desktop shows the login entry; narrow/mobile layouts swap in the hamburger menu. */
@media (min-width: 861px) {
  body.shared-home-nav-page .home-top-nav .nav-mobile-menu-btn,
  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-mobile-menu-btn,
  body:is(.single-post-nav-page, .post-list-nav-page, .place-detail-nav-page, .place-list-nav-page) .home-top-nav .nav-mobile-menu-btn {
    display: none !important;
  }
}

@media (max-width: 860px) {
  body.shared-home-nav-page .home-top-nav .nav-mobile-menu-btn,
  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-mobile-menu-btn,
  body:is(.single-post-nav-page, .post-list-nav-page, .place-detail-nav-page, .place-list-nav-page) .home-top-nav .nav-mobile-menu-btn {
    display: inline-flex !important;
  }

  body.shared-home-nav-page .home-top-nav .nav-right .wx-login-btn,
  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-right .wx-login-btn,
  body:is(.single-post-nav-page, .post-list-nav-page, .place-detail-nav-page, .place-list-nav-page) .home-top-nav .nav-right .wx-login-btn {
    display: none !important;
  }
}

@media (max-width: 860px) {
  body.post-list-nav-page .post-feed {
    display: block;
    column-count: 2;
    column-gap: 10px;
  }

  body.post-list-nav-page .post-feed-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 12px;
    border-radius: 14px;
    overflow: hidden;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body.post-list-nav-page .post-feed-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  body.post-list-nav-page .post-feed-cover-link {
    display: block;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
  }

  body.post-list-nav-page .post-feed-cover {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
  }

  body.post-list-nav-page .post-feed-cover-placeholder {
    width: 100%;
    min-height: 148px;
    aspect-ratio: 4 / 5;
  }

  body.post-list-nav-page .post-feed-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px 12px 10px;
    background: none;
    display: grid;
    gap: 6px;
  }

  body.post-list-nav-page .post-feed-main h2 {
    --post-feed-title-line-height: 1.35;
    color: #f8fafc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    font-size: 15px;
    line-height: var(--post-feed-title-line-height);
  }

  body.post-list-nav-page .post-feed-main h2 .post-link {
    -webkit-line-clamp: 2;
  }

  body.post-list-nav-page .post-feed-meta {
    color: rgba(226, 232, 240, 0.88);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    gap: 10px;
    font-size: 12px;
  }

  body.post-list-nav-page .post-feed-meta .view-count-icon {
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
}

* {
  box-sizing: border-box;
}

html {
  /* Keep layout width stable when pages toggle vertical scrollbar. */
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  position: relative;
  color: var(--ink);
  background: #ffffff;
  font: var(--font-weight-body) var(--font-size-body)/var(--line-height-body) "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

a:hover,
a:focus-visible {
  text-decoration: none !important;
}

.base-ui-root {
  isolation: isolate;
}

body.single-post-lightbox-open {
  overflow: hidden;
}

.ui-skeleton {
  position: relative;
  overflow: hidden;
  background: var(--skeleton-base);
}

.ui-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 20%,
    var(--skeleton-highlight) 48%,
    rgba(255, 255, 255, 0.26) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: ui-skeleton-shimmer 1.6s ease-in-out infinite;
}

@keyframes ui-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ui-skeleton::after {
    animation: none;
  }
}

.home-skeleton-line,
.home-skeleton-pill,
.home-skeleton-chip,
.home-skeleton-section-title,
.home-skeleton-more {
  display: block;
  width: var(--skeleton-width, 100%);
  border-radius: 999px;
}

.home-skeleton-line {
  height: 12px;
}

.home-skeleton-line-hero {
  height: 16px;
}

.home-skeleton-line-title {
  height: 14px;
}

.home-skeleton-line-meta {
  height: 11px;
}

.home-skeleton-line-bar {
  height: 10px;
}

.home-skeleton-pill {
  height: 24px;
  max-width: 128px;
}

.home-skeleton-pill-sm {
  height: 22px;
}

.home-skeleton-chip {
  height: 28px;
  min-width: 72px;
}

.home-skeleton-section-title {
  height: 30px;
  max-width: 180px;
}

.home-skeleton-more {
  height: 18px;
  min-width: 88px;
}

/* Typography system: body = Regular, titles = Bold */
body,
button,
input,
select,
textarea,
p,
span,
a,
label,
li,
td,
th {
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.brand-main,
.brand-sub,
.admin-title-module,
.location-picker-title {
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

h5,
h6,
.brand,
.brand-main,
.brand-sub,
.admin-title-module,
.location-picker-title {
  font-weight: 700;
}

h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-weight: var(--font-weight-h1);
}

h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-h2);
}

h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-h3);
}

h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: var(--font-weight-h4);
}

p,
li {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

.text-h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-weight: var(--font-weight-h1);
}

.text-h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-h2);
}

.text-h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-h3);
}

.text-h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: var(--font-weight-h4);
}

.text-body {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
}

.text-caption {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-weight: var(--font-weight-caption);
}

.topbar {
  width: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meta-bar {
  height: 42px;
  background: #0f0f10;
  color: #f3f3f3;
  font: 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 22px));
}

.meta-left,
.meta-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-location-pill {
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3f3f3;
  font: inherit;
  line-height: 22px;
  padding: 0 10px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.site-location-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.site-location-pill:active {
  opacity: 0.9;
}

.site-location-pill[data-state="loading"] {
  opacity: 0.86;
}

.site-location-pill[data-state="error"] {
  border-color: rgba(255, 143, 143, 0.62);
}

body.location-picker-open {
  overflow: hidden;
}

.location-picker-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.location-picker-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #060607;
  opacity: 0;
  clip-path: circle(0 at var(--origin-x, 50%) var(--origin-y, 0));
  transition: clip-path 0.52s cubic-bezier(0.2, 0.82, 0.23, 1), opacity 0.24s ease;
}

.location-picker-layer.open {
  pointer-events: auto;
}

.location-picker-layer.open::before {
  opacity: 1;
  clip-path: circle(160vmax at var(--origin-x, 50%) var(--origin-y, 0));
}

.location-picker-mask {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.location-picker-panel {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 48px));
  height: min(620px, calc(100vh - 48px));
  max-height: min(620px, calc(100vh - 48px));
  overflow-y: auto;
  align-self: center;
  color: #f7f7f7;
  margin-top: -30px;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.26s ease 0.18s, transform 0.26s ease 0.18s;
}

.location-picker-layer.open .location-picker-panel {
  opacity: 1;
  transform: translateY(0);
}

.location-picker-close {
  position: absolute;
  top: max(24px, calc(50% - 340px));
  right: max(24px, calc(50% - 390px));
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
  background-image: url("/icons/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}

.location-picker-layer.open .location-picker-close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.18s, 0s;
}

.location-picker-title {
  margin: 0;
  font: 700 56px/1.08 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.01em;
}

.location-picker-search-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: start;
}

.location-picker-search-main {
  position: relative;
  min-width: 0;
}

.location-picker-input {
  height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: 500 16px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding: 0 18px;
  outline: none;
}

.location-picker-input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.location-picker-input:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.location-picker-search-btn,
.location-picker-action {
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0 22px;
  font: 600 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.location-picker-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Keep city-picker search controls using a single border tone across all states. */
.location-picker-panel .location-picker-input,
.location-picker-panel .location-picker-input:focus,
.location-picker-panel .location-picker-search-btn,
.location-picker-panel .location-picker-search-btn:hover,
.location-picker-panel .location-picker-search-btn:focus,
.location-picker-panel .location-picker-search-btn:focus-visible,
.location-picker-panel .location-picker-action,
.location-picker-panel .location-picker-action:hover,
.location-picker-panel .location-picker-action:focus,
.location-picker-panel .location-picker-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.48) !important;
}

.location-picker-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 3;
  margin-top: 0;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.location-picker-suggest-list {
  display: grid;
  grid-template-columns: 1fr;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 114, 128, 0.72) rgba(229, 231, 235, 0.9);
}

.location-picker-suggest-list::-webkit-scrollbar {
  width: 6px;
}

.location-picker-suggest-list::-webkit-scrollbar-track {
  background: rgba(229, 231, 235, 0.9);
  border-radius: 0;
}

.location-picker-suggest-list::-webkit-scrollbar-thumb {
  background: rgba(107, 114, 128, 0.72);
  border-radius: 0;
}

.location-picker-suggest-list::-webkit-scrollbar-thumb:hover {
  background: rgba(75, 85, 99, 0.88);
}

.location-suggest-chip {
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: transparent;
  border-radius: 0;
  color: #111827;
  padding: 8px 14px;
  text-align: left;
  font: 600 15px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.location-suggest-chip:last-child {
  border-bottom: 0;
}

.location-suggest-chip:hover {
  background: #f8fafc;
}

.location-picker-hotline {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font: 500 15px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.location-picker-hot-label {
  color: rgba(255, 255, 255, 0.72);
}

.location-hot-chip {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 2px;
  font: 600 16px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.location-hot-chip:hover {
  color: #fff;
  text-decoration: none;
}

.location-picker-message {
  min-height: 24px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font: 500 13px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.location-picker-message:empty {
  display: none;
}

.location-picker-message[data-state="error"] {
  color: #ffb2b2;
}

.location-picker-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.location-picker-action.ghost {
  background: transparent;
}

.sep {
  opacity: 0.45;
}

.masthead {
  min-height: 440px;
  padding: 90px 20px 78px;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
  background: #0f0f10;
  color: #f3f3f3;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.masthead.has-cover-bg {
  background-image:
    linear-gradient(180deg, rgba(6, 10, 18, 0.52) 0%, rgba(6, 10, 18, 0.46) 100%),
    var(--place-masthead-bg);
  background-size: cover;
  background-position: center;
}

.brand-main {
  margin: 0;
  font-size: 58px;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1;
}

#placePageTitle.brand-main {
  display: block;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.02em;
  line-height: 0.92;
  color: #f8fafc;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  display: grid;
  justify-items: center;
  gap: 10px;
}

#placePageTitleText {
  display: block;
}

.place-page-subname {
  display: block;
  max-width: min(86vw, 980px);
  color: rgba(248, 250, 252, 0.9);
  font: 600 clamp(22px, 2.2vw, 34px)/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
  text-wrap: balance;
  word-break: break-word;
}

.place-page-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 0;
  padding: 0 16px;
  border-radius: 999px;
  color: #f8fafc;
  font: 700 16px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.place-page-category-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(86vw, 980px);
}

.place-page-category-link {
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 860px) {
  .masthead {
    min-height: 330px;
    padding: 60px 16px;
    gap: 30px;
  }

  .place-page-category {
    font-size: 14px;
    min-height: 28px;
    margin-top: 0;
    padding: 0 12px;
  }

  .place-page-subname {
    display: none !important;
  }
}

.brand-sub {
  margin: 10px 0 0;
  font: 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c7c7c7;
}

.nav-bar {
  min-height: 62px;
  border-bottom: 1px solid #2a2a2a;
  border-top: 1px solid #2a2a2a;
  background: #0f0f10;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: none;
  justify-content: center;
  padding: 0;
}

.home-index-page .nav-bar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 16, 0.30);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(138%);
  -webkit-backdrop-filter: blur(14px) saturate(138%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

body.home-index-page:not(.admin-nav-page):not(.me-page) {
  position: relative;
  isolation: isolate;
  background-color: #eefbff;
  background-image:
    radial-gradient(120% 88% at 8% 100%, rgba(69, 212, 251, 0.3) 0%, rgba(69, 212, 251, 0) 70%),
    radial-gradient(112% 78% at 98% -6%, rgba(255, 217, 61, 0.34) 0%, rgba(255, 217, 61, 0) 68%),
    radial-gradient(92% 70% at 62% 14%, rgba(67, 233, 123, 0.24) 0%, rgba(67, 233, 123, 0) 72%);
  background-repeat: no-repeat;
  background-size: cover;
}

body.home-index-page:not(.admin-nav-page):not(.me-page)::before,
body.home-index-page:not(.admin-nav-page):not(.me-page)::after {
  content: "";
  position: fixed;
  inset: -8vh -6vw;
  pointer-events: none;
  z-index: -1;
}

body.home-index-page:not(.admin-nav-page):not(.me-page)::before {
  background:
    radial-gradient(56% 52% at 18% 14%, rgba(255, 217, 61, 0.62) 0%, rgba(255, 217, 61, 0.08) 56%, rgba(255, 217, 61, 0) 72%),
    radial-gradient(62% 58% at 70% 24%, rgba(67, 233, 123, 0.58) 0%, rgba(67, 233, 123, 0.1) 58%, rgba(67, 233, 123, 0) 76%),
    radial-gradient(60% 54% at 86% 76%, rgba(69, 212, 251, 0.54) 0%, rgba(69, 212, 251, 0.06) 60%, rgba(69, 212, 251, 0) 78%),
    radial-gradient(48% 42% at 34% 82%, rgba(67, 233, 123, 0.42) 0%, rgba(67, 233, 123, 0) 74%);
  filter: blur(32px) saturate(112%);
  opacity: 0.92;
}

body.home-index-page:not(.admin-nav-page):not(.me-page)::after {
  background:
    radial-gradient(46% 40% at 14% 78%, rgba(69, 212, 251, 0.46) 0%, rgba(69, 212, 251, 0) 76%),
    radial-gradient(52% 45% at 84% 10%, rgba(255, 217, 61, 0.42) 0%, rgba(255, 217, 61, 0) 74%),
    radial-gradient(44% 40% at 56% 88%, rgba(67, 233, 123, 0.38) 0%, rgba(67, 233, 123, 0) 72%);
  filter: blur(44px) saturate(108%);
  opacity: 0.74;
}

body.place-detail-nav-page,
body.single-post-nav-page,
body.activity-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background-color: #eefbff;
  background-image:
    radial-gradient(120% 88% at 8% 100%, rgba(69, 212, 251, 0.3) 0%, rgba(69, 212, 251, 0) 70%),
    radial-gradient(112% 78% at 98% -6%, rgba(255, 217, 61, 0.34) 0%, rgba(255, 217, 61, 0) 68%),
    radial-gradient(92% 70% at 62% 14%, rgba(67, 233, 123, 0.24) 0%, rgba(67, 233, 123, 0) 72%);
  background-repeat: no-repeat;
  background-size: cover;
}

body.place-detail-nav-page::before,
body.place-detail-nav-page::after,
body.single-post-nav-page::before,
body.single-post-nav-page::after,
body.activity-page::before,
body.activity-page::after {
  content: "";
  position: fixed;
  inset: -8vh -6vw;
  pointer-events: none;
  z-index: -1;
}

body.place-detail-nav-page::before,
body.single-post-nav-page::before,
body.activity-page::before {
  background:
    radial-gradient(56% 52% at 18% 14%, rgba(255, 217, 61, 0.62) 0%, rgba(255, 217, 61, 0.08) 56%, rgba(255, 217, 61, 0) 72%),
    radial-gradient(62% 58% at 70% 24%, rgba(67, 233, 123, 0.58) 0%, rgba(67, 233, 123, 0.1) 58%, rgba(67, 233, 123, 0) 76%),
    radial-gradient(60% 54% at 86% 76%, rgba(69, 212, 251, 0.54) 0%, rgba(69, 212, 251, 0.06) 60%, rgba(69, 212, 251, 0) 78%),
    radial-gradient(48% 42% at 34% 82%, rgba(67, 233, 123, 0.42) 0%, rgba(67, 233, 123, 0) 74%);
  filter: blur(32px) saturate(112%);
  opacity: 0.92;
}

body.place-detail-nav-page::after,
body.single-post-nav-page::after,
body.activity-page::after {
  background:
    radial-gradient(46% 40% at 14% 78%, rgba(69, 212, 251, 0.46) 0%, rgba(69, 212, 251, 0) 76%),
    radial-gradient(52% 45% at 84% 10%, rgba(255, 217, 61, 0.42) 0%, rgba(255, 217, 61, 0) 74%),
    radial-gradient(44% 40% at 56% 88%, rgba(67, 233, 123, 0.38) 0%, rgba(67, 233, 123, 0) 72%);
  filter: blur(44px) saturate(108%);
  opacity: 0.74;
}

body.place-list-nav-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background-color: #eefbff;
  /* Keep the place-list glow on one paint layer to avoid visible seam lines in Chrome. */
  background-image:
    radial-gradient(56% 44% at 6% 14%, rgba(255, 217, 61, 0.44) 0%, rgba(255, 217, 61, 0.18) 34%, rgba(255, 217, 61, 0) 68%),
    radial-gradient(68% 52% at 92% 10%, rgba(69, 212, 251, 0.34) 0%, rgba(69, 212, 251, 0.12) 36%, rgba(69, 212, 251, 0) 74%),
    radial-gradient(74% 58% at 18% 88%, rgba(69, 212, 251, 0.34) 0%, rgba(69, 212, 251, 0.1) 38%, rgba(69, 212, 251, 0) 76%),
    radial-gradient(62% 48% at 82% 72%, rgba(67, 233, 123, 0.28) 0%, rgba(67, 233, 123, 0.08) 34%, rgba(67, 233, 123, 0) 72%),
    radial-gradient(54% 40% at 54% 24%, rgba(67, 233, 123, 0.22) 0%, rgba(67, 233, 123, 0.06) 36%, rgba(67, 233, 123, 0) 74%),
    radial-gradient(46% 36% at 60% 88%, rgba(255, 217, 61, 0.18) 0%, rgba(255, 217, 61, 0.04) 32%, rgba(255, 217, 61, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(238, 251, 255, 0.96) 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

body.place-list-nav-page::before,
body.place-list-nav-page::after {
  content: none;
}

.subpage-nav-banner {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid #1f2937;
  background:
    linear-gradient(120deg, rgba(17, 24, 39, 0.92), rgba(15, 23, 42, 0.86) 52%, rgba(12, 74, 110, 0.82)),
    radial-gradient(circle at 12% 22%, rgba(34, 197, 94, 0.26), transparent 40%),
    radial-gradient(circle at 84% 70%, rgba(59, 130, 246, 0.34), transparent 44%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 10px, rgba(255, 255, 255, 0.01) 10px 20px);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px;
}

.home-page {
  --home-radius: 0;
  display: grid;
  gap: 18px;
  background: #ffffff;
}

.home-hero-band {
  width: 100%;
  background: transparent;
  padding: 10px 0 14px;
}

.weekly-hot-band {
  width: 100%;
  background: linear-gradient(135deg, #050608 0%, #0c0f14 52%, #171b22 100%);
  margin-top: 11px;
  padding: 29px 0 31px;
}

.weekly-hot-shell {
  width: calc(100% - 44px);
  max-width: 1240px;
  margin: 0 auto;
}

.category-band {
  width: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #eefbff;
  background-image:
    radial-gradient(120% 88% at 8% 100%, rgba(69, 212, 251, 0.3) 0%, rgba(69, 212, 251, 0) 70%),
    radial-gradient(112% 78% at 98% -6%, rgba(255, 217, 61, 0.34) 0%, rgba(255, 217, 61, 0) 68%),
    radial-gradient(92% 70% at 62% 14%, rgba(67, 233, 123, 0.24) 0%, rgba(67, 233, 123, 0) 72%);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -18px;
  padding: 20px 0 18px;
}

.category-band::before,
.category-band::after {
  content: "";
  position: absolute;
  inset: -18% -8%;
  pointer-events: none;
  z-index: 0;
}

.category-band::before {
  background:
    radial-gradient(56% 52% at 18% 14%, rgba(255, 217, 61, 0.62) 0%, rgba(255, 217, 61, 0.08) 56%, rgba(255, 217, 61, 0) 72%),
    radial-gradient(62% 58% at 70% 24%, rgba(67, 233, 123, 0.58) 0%, rgba(67, 233, 123, 0.1) 58%, rgba(67, 233, 123, 0) 76%),
    radial-gradient(60% 54% at 86% 76%, rgba(69, 212, 251, 0.54) 0%, rgba(69, 212, 251, 0.06) 60%, rgba(69, 212, 251, 0) 78%),
    radial-gradient(48% 42% at 34% 82%, rgba(67, 233, 123, 0.42) 0%, rgba(67, 233, 123, 0) 74%);
  filter: blur(32px) saturate(112%);
  opacity: 0.92;
}

.category-band::after {
  background:
    radial-gradient(46% 40% at 14% 78%, rgba(69, 212, 251, 0.46) 0%, rgba(69, 212, 251, 0) 76%),
    radial-gradient(52% 45% at 84% 10%, rgba(255, 217, 61, 0.42) 0%, rgba(255, 217, 61, 0) 74%),
    radial-gradient(44% 40% at 56% 88%, rgba(67, 233, 123, 0.38) 0%, rgba(67, 233, 123, 0) 72%);
  filter: blur(44px) saturate(108%);
  opacity: 0.74;
}

.category-shell {
  width: calc(100% - 44px);
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-hero-shell {
  --home-page-max-w: 1240px;
  --home-page-gutter: 22px;
  --home-hero-gap: 18px;
  --home-hot-rows: 5;
  --home-section-radius: 28px;
  --home-media-radius: 18px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
  align-items: stretch;
  gap: var(--home-hero-gap);
  width: calc(100% - (var(--home-page-gutter) * 2));
  max-width: var(--home-page-max-w);
  margin: 10px auto 0;
  padding: 0;
  overflow: visible;
}

.home-hero-shell .featured-post {
  height: auto;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: var(--home-section-radius);
  overflow: hidden;
}

.home-hero-shell .featured-post.is-draggable {
  cursor: grab;
  touch-action: pan-y;
}

.home-hero-shell .featured-post.is-draggable.dragging {
  cursor: grabbing;
}

.home-hero-shell .featured-post.is-draggable.dragging .featured-hero {
  pointer-events: none;
}

.home-hero-shell .featured-hero,
.home-hero-shell .featured-hero-media {
  -webkit-user-drag: none;
  user-select: none;
}

.home-hero-shell .featured-hero-overlay {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  min-height: 42%;
  padding: 96px 28px 52px;
}

.home-hero-shell .featured-hero-title {
  max-width: min(94%, 720px);
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.home-hero-shell.home-hero-shell--single-pick .featured-hero-title {
  max-width: min(94%, 720px);
}

.home-hero-shell .trending-posts {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  overflow: visible;
  z-index: 1;
  display: block;
}

.home-hero-shell .trending-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(var(--home-hot-rows), minmax(0, 1fr));
  gap: 12px;
  height: 100%;
  min-height: 0;
}

.home-hero-shell .trending-posts[data-count="1"] {
  --home-hot-rows: 1;
}

.home-hero-shell .trending-posts[data-count="2"] {
  --home-hot-rows: 2;
}

.home-hero-shell .trending-posts[data-count="3"] {
  --home-hot-rows: 3;
}

.home-hero-shell .trending-posts[data-count="4"] {
  --home-hot-rows: 4;
}

.home-hero-shell .trending-posts:is([data-count="1"], [data-count="2"], [data-count="3"], [data-count="4"]) .trending-list {
  height: auto;
  grid-template-rows: repeat(var(--home-hot-rows), minmax(112px, 132px));
}

.home-hero-shell .trending-item {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: stretch;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: var(--home-section-radius);
  background: #ffffff;
  padding: 8px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.home-hero-shell .trending-item.is-active {
  border-color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

.home-hero-shell .trending-item-empty {
  min-height: 120px;
  background: #f8fafc;
}

.home-hero-shell .trending-thumb-link {
  position: relative;
  inset: auto;
  z-index: auto;
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  min-height: 72px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--home-media-radius);
  background: #eef2f5;
}

@keyframes trendingCardReveal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(77%);
  }
}

.home-hero-shell .trending-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  filter: brightness(1);
  animation: none;
}

.home-hero-shell .trending-thumb-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #f4f6f8 0%, #eef2f5 42%, #e7edf2 100%);
}

.home-hero-shell .trending-content {
  position: static;
  inset: auto;
  z-index: auto;
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 8px;
  text-align: left;
}

.home-hero-shell .trending-title {
  font-size: 16px;
  line-height: 1.32;
  font-weight: 700;
  min-height: 0;
  align-self: stretch;
  max-width: 100%;
}

.home-hero-shell .trending-title .post-link {
  color: #111827;
  -webkit-line-clamp: 2;
}

.home-hero-shell .trending-meta-row,
.home-hero-shell .trending-time {
  color: #6b7280;
  font-weight: 400;
  text-shadow: none;
}

.home-hero-shell .trending-meta-row {
  margin-top: 0;
  justify-content: flex-start;
  gap: 10px;
  text-shadow: none;
}

.home-hero-shell .trending-meta-row .view-count-icon {
  filter: none;
  opacity: 0.56;
}

.home-page .card,
.home-page .promo-banner,
.home-page .weekly-hot-carousel,
.home-page .weekly-hot-card,
.home-page .trending-item,
.home-page .featured-post {
  border-radius: var(--home-radius);
}

.home-page .featured-post,
.home-page .promo-banner,
.home-page .weekly-hot-carousel,
.home-page .weekly-hot-card {
  overflow: hidden;
}

.home-page .weekly-hot-carousel,
.home-page .weekly-hot-card {
  border-radius: 18px;
}

.featured-hero-skeleton::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.14) 100%);
}

.featured-hero-skeleton-overlay {
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 20px;
}

.home-hero-shell .trending-item-skeleton {
  box-shadow: none;
}

.home-hero-shell .trending-item-skeleton .trending-top-category-bar {
  background: transparent;
  display: flex;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  line-height: 1;
}

.home-hero-shell .trending-item-skeleton .trending-top-category-bar::before,
.home-hero-shell .trending-item-skeleton .trending-thumb-link::before,
.home-hero-shell .trending-item-skeleton .trending-thumb-link::after {
  content: none;
  display: none;
}

.home-hero-shell .trending-item-skeleton .ui-skeleton::after {
  animation: none;
}

.home-hero-shell .trending-content-skeleton {
  gap: 8px;
}

.home-hero-shell .trending-list-skeleton {
  height: auto;
  grid-template-rows: repeat(var(--home-hot-rows), minmax(112px, 132px));
}

.home-hero-shell .trending-main-skeleton {
  width: 100%;
  align-items: stretch;
  gap: 10px;
}

.home-hero-shell .trending-item-skeleton .trending-meta-row {
  gap: 10px;
}

.login-page {
  min-height: 100vh;
  background: linear-gradient(130deg, #43e97b 0%, #45d4fb 50%, #43e97b 100%);
  background-size: 220% 220%;
  animation: me-page-gradient-flow 10s ease-in-out infinite;
}

.login-masthead {
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 12px;
}

.login-brand-link {
  color: var(--ink);
  letter-spacing: 0.18em;
  text-decoration: none;
}

.login-shell {
  min-height: calc(100vh - 220px);
  display: grid;
  align-items: center;
}

.login-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  width: 42%;
  aspect-ratio: 1 / 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #ffffff;
  color: #111827;
  overflow: hidden;
  box-shadow: none;
}

.login-card::after {
  content: none;
  display: none;
}

.login-main,
.login-side {
  position: relative;
  z-index: 1;
}

.login-main {
  display: grid;
  align-content: stretch;
  justify-items: center;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 24px;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.login-qr-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.login-locale-square {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  border: 0;
  background: #ffffff;
  overflow: hidden;
}

.login-locale-wall {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 6px;
  overflow: hidden;
}

.login-locale-row {
  width: 100%;
  overflow: hidden;
  padding-block: 6px;
}

.login-locale-track {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding-inline: 0;
  animation: none;
}

.login-locale-row--en .login-locale-track {
  gap: 0;
}

.login-locale-wall span {
  display: none;
  align-items: center;
  justify-content: center;
  color: #111827;
  font: 700 clamp(46px, 4.6vw, 68px)/1.08 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.login-locale-wall span:first-child {
  display: inline-flex;
}

.login-qr-mount {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.login-qr-mount iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.login-main:not(.is-qr-ready) .login-qr-mount {
  display: none;
}

.login-main.is-qr-ready .login-locale-wall {
  display: none;
}

.login-main.is-qr-ready .login-qr-mount {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.login-main.is-qr-ready .login-qr-mount iframe {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: min(100%, 560px);
  height: min(100%, 560px);
  transform: scale(0.92);
  transform-origin: center center;
}

.login-main.is-qr-ready .login-qr-mount .title,
.login-main.is-qr-ready .login-qr-mount .qrcode_info,
.login-main.is-qr-ready .login-qr-mount .status_icon {
  display: none !important;
}

.login-actions {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
}

.login-back-link {
  width: fit-content;
  color: rgba(17, 24, 39, 0.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 24, 39, 0.28);
}

.login-kicker {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.22em;
}

.login-title {
  margin: 0;
  width: 100%;
  justify-self: center;
  text-align: center;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
}

.login-description {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.login-primary-btn {
  width: fit-content;
  min-width: 180px;
  height: 52px;
  padding: 0 22px;
  margin-top: 0;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font: 700 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
  box-shadow: none;
}

.login-primary-btn:hover {
  filter: brightness(1.04);
}

.login-primary-btn:disabled {
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  cursor: not-allowed;
  box-shadow: none;
}

.login-secondary-btn {
  min-width: 110px;
  height: 52px;
  padding: 0 18px;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font: 700 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.login-page .site-footer {
  margin-top: 0;
  background: transparent;
  border-top: 0;
}

.login-config-hint {
  display: none;
}

.login-side {
  display: grid;
  gap: 14px;
  align-content: center;
}

.login-side-block {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.login-side-block p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.login-side-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.home-page .trending-thumb,
.home-page .trending-thumb-placeholder {
  border-radius: var(--home-radius);
}

.home-page .category-post-cover,
.home-page .category-post-cover-placeholder {
  border-radius: var(--home-radius);
}

.ticker {
  background: #ffffff;
  border: 1px solid #000;
  border-radius: 999px;
  overflow: hidden;
  min-height: 52px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: stretch;
}

.ticker-tag {
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 400 16px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.08em;
}

.ticker-text {
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.ticker-text {
  position: relative;
  overflow: hidden;
}

.latest-ticker {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 50px;
  overflow: hidden;
}

.ticker-item {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.48s ease, opacity 0.48s ease;
}

.ticker-item.enter-from-bottom {
  transform: translateY(140%);
  opacity: 0;
}

.ticker-item.enter-to-center {
  transform: translateY(-50%);
  opacity: 1;
}

.ticker-item.exit-to-top {
  transform: translateY(-235%);
  opacity: 0;
}

.hero-grid {
  --trending-item-h: 108px;
  --trending-gap: 10px;
  --featured-h: calc(var(--trending-item-h) * 5 + var(--trending-gap) * 4);
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(300px, 1fr);
  gap: 12px;
  align-items: start;
}

.promo-banner {
  min-height: 146px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.78) 0%, rgba(17, 17, 17, 0.28) 42%, rgba(17, 17, 17, 0.12) 100%),
    linear-gradient(135deg, #1f2937 0%, #4b5563 45%, #d1d5db 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 18px 22px;
}

.promo-banner-inner {
  max-width: 620px;
}

.promo-kicker {
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.promo-banner h2 {
  margin: 10px 0 0;
  font-size: 36px;
  line-height: 1.1;
}

.promo-banner p {
  margin: 8px 0 0;
  font: 500 14px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  opacity: 0.92;
}

.weekly-hot-places {
  --weekly-hot-gap: 12px;
  display: grid;
  gap: 12px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  overflow: visible;
}

.weekly-hot-head {
  border-top: none;
  padding-top: 0;
}

.weekly-hot-carousel {
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.weekly-hot-track {
  display: flex;
  gap: var(--weekly-hot-gap);
  width: 100%;
  transform: translateX(0);
  transition: transform 0.48s ease;
}

.weekly-hot-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.16));
  color: transparent;
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.weekly-hot-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.28);
}

.weekly-hot-nav-btn:disabled {
  opacity: 0.32;
  cursor: default;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.weekly-hot-nav-prev {
  left: 10px;
  background-image: url("/icons/arrow-left.png");
}

.weekly-hot-nav-next {
  right: 10px;
  background-image: url("/icons/arrow-right.png");
}

.weekly-hot-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--weekly-hot-gap);
}

.weekly-hot-card {
  --weekly-hot-card-radius: 28px;
  border: 0;
  background: transparent;
  position: relative;
  aspect-ratio: 1 / 1;
  display: block;
  cursor: pointer;
  border-radius: var(--weekly-hot-card-radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.weekly-hot-card:any-link,
.weekly-hot-card:visited,
.weekly-hot-card:hover,
.weekly-hot-card:focus-visible {
  color: inherit;
  text-decoration: none;
}

.weekly-hot-cover-link {
  position: absolute;
  inset: 0;
  display: block;
}

.weekly-hot-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.weekly-hot-cover-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #eef2f5;
}

.weekly-hot-main {
  --weekly-hot-main-inset: 10px;
  position: absolute;
  left: var(--weekly-hot-main-inset);
  right: var(--weekly-hot-main-inset);
  bottom: var(--weekly-hot-main-inset);
  z-index: 2;
  padding: 8px 14px 12px;
  display: grid;
  gap: 4px;
  border-radius: min(22px, calc(var(--weekly-hot-card-radius) - var(--weekly-hot-main-inset) + 8px));
  overflow: visible;
}

.weekly-hot-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(15, 15, 16, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px) saturate(128%);
  -webkit-backdrop-filter: blur(8px) saturate(128%);
  pointer-events: none;
  z-index: 0;
}

.weekly-hot-main > h3,
.weekly-hot-main > .weekly-hot-score-line,
.weekly-hot-main > .weekly-hot-latest-review {
  position: relative;
  z-index: 1;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .weekly-hot-main::before {
    background: rgba(15, 15, 16, 0.40);
  }
}

.weekly-hot-sub {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% - 4px));
  z-index: 3;
  display: flex;
  align-items: center;
}

.weekly-hot-main h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #f8fafc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.weekly-hot-main h3 .post-link,
.weekly-hot-main h3 .post-link:any-link,
.weekly-hot-main h3 .post-link:visited,
.weekly-hot-main h3 .post-link:hover,
.weekly-hot-main h3 .post-link:focus-visible {
  text-decoration: none !important;
  color: inherit;
}

.weekly-hot-score-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #f8fafc;
}

.weekly-hot-score-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.weekly-hot-card .weekly-hot-score-item {
  gap: 5px;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  font: 800 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.weekly-hot-card .weekly-hot-score-summary {
  max-width: 100%;
}

.weekly-hot-card .weekly-hot-score-summary .weekly-hot-score-label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.weekly-hot-latest-review {
  display: -webkit-box;
  min-width: 0;
  max-width: 100%;
  margin: -1px 0 0;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font: 400 12px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #f8fafc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.weekly-hot-card .weekly-hot-score-item.pro {
  background: linear-gradient(135deg, #57e9f2 0%, #45d4fb 100%);
  color: #0b3e4b;
}

.weekly-hot-card .weekly-hot-score-item.experience,
.weekly-hot-card .weekly-hot-score-item.normal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: #0d3d2d;
}

.weekly-hot-score-label {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  color: #f8fafc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.weekly-hot-score-badge {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  font: 800 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.weekly-hot-card .weekly-hot-score-label,
.weekly-hot-card .weekly-hot-score-badge {
  display: inline;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-shadow: none;
}

.weekly-hot-score-badge.pro {
  background: linear-gradient(135deg, #9efbd3 0%, #57e9f2 50%, #45d4fb 100%);
}

.weekly-hot-score-badge.normal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.weekly-hot-card .weekly-hot-score-badge.pro,
.weekly-hot-card .weekly-hot-score-badge.normal {
  background: transparent;
}

.weekly-hot-card .weekly-hot-score-item-skeleton {
  min-width: 72px;
}

.weekly-hot-score-label-skeleton,
.weekly-hot-score-badge-skeleton {
  display: inline-block;
  height: 10px;
  border-radius: 999px;
}

.weekly-hot-score-label-skeleton {
  width: 28px;
}

.weekly-hot-score-badge-skeleton {
  width: 18px;
}

.weekly-hot-subline {
  display: none;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.86);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.weekly-hot-card-skeleton {
  border-color: var(--skeleton-edge);
  cursor: default;
}

.weekly-hot-card-skeleton .weekly-hot-main::before {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px) saturate(112%);
  -webkit-backdrop-filter: blur(6px) saturate(112%);
}

.weekly-hot-score-line-skeleton {
  display: flex;
  align-items: center;
  gap: 10px;
}

.weekly-hot-dot-skeleton {
  cursor: default;
  opacity: 0.82;
}

.weekly-hot-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.weekly-hot-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--font-size-caption);
  line-height: 1.2;
  font-weight: var(--font-weight-caption);
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: rgba(248, 250, 252, 0.96);
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(15, 15, 16, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px) saturate(128%);
  -webkit-backdrop-filter: blur(12px) saturate(128%);
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .weekly-hot-meta-pill {
    background: rgba(15, 15, 16, 0.40);
  }
}

.weekly-hot-card-empty .weekly-hot-main h3 {
  color: #6b7280;
}

.weekly-hot-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.weekly-hot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.weekly-hot-dot.active {
  background: #ffffff;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.featured-post {
  padding: 0;
  position: relative;
  width: 100%;
  height: var(--featured-h);
  background: #f2f4f7;
  overflow: hidden;
}

.featured-hero {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  color: #fff;
  text-decoration: none;
}

.featured-hero-transition-layer {
  position: absolute;
  inset: 0;
}

.featured-hero-fade-enter {
  opacity: 0;
  z-index: 2;
}

.featured-hero-fade-enter.featured-hero-fade-enter-active {
  opacity: 1;
  transition: opacity 460ms ease;
}

.featured-hero-fade-leave {
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.featured-hero-fade-leave.featured-hero-fade-leave-active {
  opacity: 0;
  transition: opacity 460ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .featured-hero-fade-enter.featured-hero-fade-enter-active,
  .featured-hero-fade-leave.featured-hero-fade-leave-active {
    transition: none;
  }
}

.featured-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.featured-hero-media-empty {
  background: #eef2f5;
}

.featured-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 34%,
    rgba(0, 0, 0, 0.18) 52%,
    rgba(0, 0, 0, 0.58) 82%,
    rgba(0, 0, 0, 0.76) 100%
  );
}

.featured-hero-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.featured-hero-tag {
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.08em;
}

.featured-hero-title {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: 0;
  display: block;
  white-space: normal;
  overflow: visible;
}

.trending-posts {
  display: grid;
  gap: var(--trending-gap);
  align-content: start;
  margin: 0;
  padding: 0;
  align-self: start;
}

.trending-list {
  display: grid;
  gap: var(--trending-gap);
}

.trending-head {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.trending-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.trending-item {
  background: #fff;
  border: 0;
  padding: 0;
  height: var(--trending-item-h);
  display: grid;
  grid-template-columns: var(--trending-item-h) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  overflow: hidden;
}

.trending-item-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.trending-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.trending-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef2f5;
  border: 1px solid #edf1f4;
}

.trending-thumb-placeholder {
  display: block;
}

.trending-content {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  align-content: stretch;
}

.trending-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.trending-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.trending-category {
  letter-spacing: 0.01em;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trending-category-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--category-accent, var(--cat-default));
  color: #ffffff;
  font: 400 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trending-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  overflow: hidden;
  align-self: start;
}

.trending-title .post-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.trending-title .post-link:hover {
  text-decoration: none;
}

.trending-time {
  font: 600 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

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

.main-column {
  display: grid;
  gap: 12px;
}

.filter-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 13px;
}

.filter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.filter-head h2,
.section-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.section-head {
  border-top: 2px solid var(--dark);
  padding-top: 10px;
}

.weekly-hot-places .weekly-hot-head {
  border-top: none;
  padding-top: 0;
}

.home-page .weekly-hot-head h2,
.home-page .category-block-head h3 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-h1);
}

.home-page .weekly-hot-head h2 {
  color: #f8fafc;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-inner {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 22px;
  margin: 0 auto;
}

.home-nav-inner {
  justify-content: space-between;
}

.home-nav-left {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-site-name {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: var(--nav-location-pill-height);
  color: #f8fafc;
  text-decoration: none;
  font: 700 36px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.home-nav-left .main-nav {
  margin-right: 0;
}

.main-nav {
  flex: 1;
  margin-right: 12px;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 transparent;
  -webkit-overflow-scrolling: touch;
}

.main-nav .nav-chip-pill {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  box-shadow: none;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  transition: transform var(--nav-pill-duration, 300ms) cubic-bezier(0.2, 1.2, 0.3, 1), width var(--nav-pill-duration, 300ms) cubic-bezier(0.2, 1.2, 0.3, 1), height var(--nav-pill-duration, 300ms) cubic-bezier(0.2, 1.2, 0.3, 1), opacity 180ms ease;
}

.main-nav .nav-chip-pill.is-visible {
  opacity: 1;
}

.main-nav .nav-chip-pill.is-no-anim {
  transition: none;
}

body.home-index-page:not(.admin-nav-page):not(.me-page) .main-nav .nav-chip-pill,
body.single-post-nav-page .main-nav .nav-chip-pill,
body.post-list-nav-page .main-nav .nav-chip-pill {
  display: block;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.place-editor-nav-right {
  margin-left: auto;
  justify-content: flex-end;
}

.nav-search-input {
  width: 170px;
  height: 41px;
  border: 0;
  padding: 0 10px;
  font-size: 12px;
  border-radius: 999px;
}

.nav-search-input:placeholder-shown {
  background-image: url("/icons/search-placeholder-icon.png");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
}

.nav-search-input:focus,
.nav-search-input:not(:placeholder-shown) {
  background-image: none;
}

.nav-search-input::placeholder {
  font-size: 12px;
}

.wx-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0 12px;
  font: 600 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.nav-bar .wx-login-btn {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-bar .wx-login-btn.wx-login-btn-round {
  width: 41px;
  min-width: 41px;
  height: 41px;
  padding: 0;
  border-radius: 50%;
}

.wx-login-btn:hover {
  background: #111;
}

.social-link {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid #f3f3f3;
  outline-offset: 1px;
}

.meta-bar .social-link {
  width: auto;
  height: auto;
  padding: 0 6px;
  color: #f3f3f3;
  font: 500 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.meta-bar .social-link:hover {
  transform: none;
  text-decoration: none;
}

.meta-social {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}

.meta-bar .meta-social .social-link {
  width: 24px;
  height: 24px;
  padding: 0;
}

.meta-bar .meta-social .social-link:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.meta-bar .meta-social .social-icon-image {
  width: 14px;
  height: 14px;
}

.social-icon-image {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chip {
  --category-accent: var(--cat-default);
  --category-bg: var(--cat-default-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  height: 42px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #e5e7eb;
  text-decoration: none;
  cursor: pointer;
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.nav-bar .chip {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  z-index: 1;
}

.nav-bar .site-location-pill.nav-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: var(--nav-location-pill-height);
  padding: 0;
  margin-right: 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #e5e7eb;
  font: 400 16px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-bar .site-location-pill.nav-location-pill::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: url("/icons/arrow-down-white.png") center/contain no-repeat;
  opacity: 0.92;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-bar .site-location-pill.nav-location-pill:hover {
  color: #ffffff;
  border-color: transparent;
  background: transparent;
}

.nav-bar .site-location-pill.nav-location-pill:hover::after {
  transform: rotate(0deg);
}

.nav-bar .site-location-pill.nav-location-pill:active {
  opacity: 0.9;
}

.nav-bar .site-location-pill.nav-location-pill[data-state="error"] {
  color: rgba(255, 143, 143, 0.95);
}

.main-nav .chip:first-child {
  margin-left: 0;
}

.chip.active {
  color: #ffffff;
}

.chip::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--category-accent, #ffffff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-bar .main-nav .chip::after {
  display: none;
}

.main-nav .chip:first-child::after {
  left: 0;
}

.chip:hover {
  color: #ffffff;
}

.chip:hover::after,
.chip.active::after {
  transform: scaleX(1);
}

.chip:focus-visible {
  outline: 2px solid #f3f3f3;
  outline-offset: -2px;
}

[data-category] {
  --category-accent: var(--cat-default);
  --category-bg: var(--cat-default-bg);
}

[data-category="home"] {
  --category-accent: var(--cat-home);
  --category-bg: var(--cat-home-bg);
}

[data-category="food"] {
  --category-accent: var(--cat-food);
  --category-bg: var(--cat-food-bg);
}

[data-category="fashion"] {
  --category-accent: var(--cat-fashion);
  --category-bg: var(--cat-fashion-bg);
}

[data-category="mens"] {
  --category-accent: var(--cat-mens);
  --category-bg: var(--cat-mens-bg);
}

[data-category="womens"] {
  --category-accent: var(--cat-womens);
  --category-bg: var(--cat-womens-bg);
}

[data-category="travel"] {
  --category-accent: var(--cat-travel);
  --category-bg: var(--cat-travel-bg);
}

[data-category="event"] {
  --category-accent: var(--cat-event);
  --category-bg: var(--cat-event-bg);
}

[data-category="sale"] {
  --category-accent: var(--cat-sale);
  --category-bg: var(--cat-sale-bg);
}

[data-category="place"] {
  --category-accent: var(--cat-place);
  --category-bg: var(--cat-place-bg);
}

[data-category="admin"] {
  --category-accent: var(--cat-admin);
  --category-bg: var(--cat-admin-bg);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  border-radius: 999px;
  padding: 0 10px;
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: var(--category-accent);
  background: var(--category-bg);
  white-space: nowrap;
}

.category-badge-title {
  height: 28px;
  padding: 0 12px;
  font-size: 15px;
  text-decoration: none;
}

.toolbar {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.input {
  height: 41px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 10px;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.input.wide {
  width: 380px;
}

.btn {
  height: 41px;
  border: 1px solid transparent;
  padding: 0 15px;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  font: 600 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn.primary {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  border-radius: 999px;
  box-shadow: none;
  width: 120px;
  min-width: 120px;
  padding: 0 16px;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.btn.secondary {
  background: #f3f4f6;
  color: #3f3f46;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: none;
  width: 100px;
  min-width: 100px;
  padding: 0 16px;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: #f3f4f6;
  color: #3f3f46;
  border-color: #e5e7eb;
}

.admin-page #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-draft-toolbar .btn.secondary,
.admin-page #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-draft-toolbar .btn.secondary:hover,
.admin-page #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-draft-toolbar .btn.secondary:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  width: 100px !important;
  min-width: 100px !important;
  padding: 0 16px !important;
}

button:not(.chip):not(.weekly-hot-dot) {
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.post-list,
.place-list {
  display: grid;
  gap: 12px;
}

.category-block {
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  overflow: hidden;
}

.category-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 0;
}

.category-block-head::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--dark);
}

.home-page .category-block-head::after {
  display: none;
}

.home-page .category-block {
  border: 0;
}

.category-block-head h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.home-page .category-block-head h3 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-h1);
}

.category-block-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.category-post {
  border: 1px solid rgba(0, 0, 0, 1);
  background: transparent;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
}

.category-post::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.category-post-cover-link,
.category-post-cover-placeholder-link {
  display: block;
  position: relative;
  z-index: 0;
}

.category-post-cover {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #eef2f5;
  border: 0;
  display: block;
}

.category-post-cover-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #eef2f5;
  display: block;
}

.category-post-cover-placeholder-link {
  text-decoration: none;
}

.category-post-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  padding: 34px 14px 12px;
  background: none;
  display: grid;
  gap: 8px;
  margin-top: 0;
  text-align: left;
  z-index: 2;
}

.category-block-skeleton .category-block-head::after,
.category-post-skeleton::after {
  display: none;
}

.category-post-skeleton {
  border-color: var(--skeleton-edge);
  background: #fff;
}

.category-post-skeleton .category-post-content {
  gap: 10px;
}

.category-post-meta-row-skeleton {
  gap: 12px;
}

.category-post-meta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-weight: var(--font-weight-caption);
  color: #ffffff;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.category-post h3 {
  margin: 0;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
  text-align: left;
  overflow: hidden;
  color: #f8fafc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.category-post h3 .post-link {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: auto;
  overflow: hidden;
  color: inherit;
}

.category-post h3 .post-link:hover,
.category-post h3 .post-link:focus-visible {
  text-decoration: none;
}

.home-page .category-block-head h3 .post-link:hover,
.home-page .category-block-head h3 .post-link:focus-visible {
  text-decoration: none;
}

.category-post-empty {
}

.category-post-empty h3 {
  color: #6b7280;
}

.category-block-more {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.category-block-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font: 600 16px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.category-block-more-link:hover,
.category-block-more-link:focus-visible {
  color: #000;
  background: #f7f7f7;
  text-decoration: none;
}

.post-card,
.place-card {
  padding: 14px;
  display: grid;
  grid-template-columns: 236px 1fr;
  gap: 14px;
}

.post-cover,
.place-cover {
  width: 236px;
  height: 146px;
  object-fit: cover;
  border: 1px solid #e3dfd7;
}

.post-main h3,
.place-main h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.04;
}

.place-main {
  display: grid;
  gap: 8px;
  align-content: start;
}

.post-main p {
  margin: 7px 0;
  font-size: 17px;
}

.post-link {
  color: inherit;
  text-decoration: none;
}

.post-link:hover {
  text-decoration: none;
}

.muted {
  color: var(--muted);
  font: 12px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-page {
  display: grid;
  gap: 12px;
}

.place-page-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.place-filter-sidebar {
  position: static;
  top: auto;
}

.place-filter-panel {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: #fff;
  gap: 12px;
}

.place-filter-panel-title {
  margin: 0;
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-h3);
  color: #111827;
}

.place-filter-native-controls {
  display: none;
}

.place-filter-group {
  display: grid;
  gap: 10px;
}

.place-filter-group.place-filter-group-collapsible {
  transition:
    margin-top 260ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-top-width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.place-filter-group.place-filter-group-collapsible.place-filter-group-collapsed {
  margin-top: 0;
  padding-top: 0;
  border-top-width: 0;
  opacity: 0;
  pointer-events: none;
}

.place-filter-group + .place-filter-group {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 81, 50, 0.14);
}

.place-filter-group.hidden + .place-filter-group,
.place-filter-group[hidden] + .place-filter-group {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.place-filter-group-title {
  margin: 0;
  color: #111827;
  font: 700 18px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-filter-options {
  display: grid;
  gap: 6px;
}

.place-filter-options-list {
  grid-template-columns: 1fr;
}

.place-filter-options-list.place-filter-options-animating {
  will-change: height;
}

.place-filter-options-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 8px;
}

.place-filter-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: #374151;
  cursor: pointer;
  user-select: none;
}

.place-filter-option-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.place-filter-option-box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #111;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.place-filter-option:hover .place-filter-option-box {
  border-color: #111;
}

.place-filter-option-input:checked + .place-filter-option-box {
  background: #111111;
  border-color: #111;
}

.place-filter-option-input:checked + .place-filter-option-box::before {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.place-filter-option-text {
  min-width: 0;
  color: inherit;
  font: 400 14px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-filter-option.is-active .place-filter-option-text {
  color: #111827;
  font-weight: 400;
}

.place-filter-show-more {
  justify-self: start;
  margin-top: 2px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  box-shadow: none !important;
  font: 400 14px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.place-filter-show-more:hover,
.place-filter-show-more:focus-visible {
  color: #111827 !important;
  background: transparent !important;
  text-decoration: none;
}

.place-filter-options-grid-3 .place-filter-option {
  min-height: 30px;
  gap: 8px;
}

.place-filter-options-grid-3 .place-filter-option-box {
  width: 18px;
  height: 18px;
}

.place-filter-options-grid-3 .place-filter-option-text {
  font-size: 14px;
}

.place-filter-panel .place-filter-row-web {
  grid-template-columns: 1fr;
  gap: 10px;
}

.place-filter-apply-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
}

.place-filter-apply-btn {
  width: 100%;
  min-height: 42px;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  padding: 0 16px;
  font: 600 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.place-filter-apply-btn:hover,
.place-filter-apply-btn:focus-visible {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.place-filter-reset-btn,
.place-filter-reset-btn:hover,
.place-filter-reset-btn:focus-visible {
  background: #ffffff;
  color: #111111;
}

.place-list-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  min-height: calc(100vh - 220px);
}

.place-head {
  padding: 0;
}

.place-page > .place-head {
  margin-bottom: calc(var(--admin-page-title-bottom-space) - 12px);
}

.place-head h1 {
  margin: 0;
  font-size: var(--admin-page-title-size);
  line-height: var(--admin-page-title-line-height);
}

.place-head p {
  margin: 8px 0 0;
}

.place-count {
  margin-top: 8px;
  font: 600 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}

.place-list-toolbar .place-count {
  margin-top: 0;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

.place-sort-wrap {
  margin-left: auto;
  min-width: 200px;
}

.place-sort-shell {
  position: relative;
  width: 100%;
}

.place-sort-trigger {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff url("/icons/optiondown.png") no-repeat right 16px center;
  background-size: 16px 16px;
  padding: 0 42px 0 16px;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  font: 400 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111111;
}

.place-sort-display {
  display: block;
  min-width: 0;
  color: #111111;
  font: 400 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 100%;
  width: 220px;
  max-width: calc(100vw - 24px);
  max-height: 360px;
  z-index: 24;
  overflow-y: auto;
}

.place-sort-menu .place-sort-option {
  display: grid;
  justify-content: stretch;
  justify-items: start;
  min-height: 56px;
  padding: 12px 14px;
}

.place-sort-menu .place-sort-option.is-active {
  background: #f9fafb;
}

.place-sort-select {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.place-mobile-filter-bar {
  display: none;
}

.place-sort-select::-ms-expand {
  display: none;
}

.place-mobile-filter-apply-row {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.place-mobile-filter-trigger {
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font: 500 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-mobile-filter-trigger-label {
  font-weight: 600;
}

.place-mobile-filter-trigger-value {
  color: #475569;
}

.place-mobile-filter-trigger-caret {
  width: 8px;
  height: 8px;
  border-right: 1.8px solid #475569;
  border-bottom: 1.8px solid #475569;
  transform: rotate(45deg) translateY(-1px);
}

.place-mobile-filter-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.place-mobile-filter-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.place-mobile-filter-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.48);
  padding: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.place-mobile-filter-panel-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: min(64vh, 460px);
  max-height: 78vh;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -14px 34px rgba(2, 6, 23, 0.22);
  transform: translateY(100%);
  transition: transform 240ms ease;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.place-mobile-filter-sheet.is-open .place-mobile-filter-backdrop {
  opacity: 1;
}

.place-mobile-filter-sheet.is-open .place-mobile-filter-panel-sheet {
  transform: translateY(0);
}

.place-mobile-filter-sheet-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid #e5e7eb;
}

.place-mobile-filter-sheet-title {
  margin: 0;
  color: #0f172a;
  font: 700 18px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-mobile-filter-close-btn {
  border: 0;
  background: transparent;
  color: #334155;
  padding: 6px 8px;
  border-radius: 8px;
  font: 500 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-mobile-filter-options {
  overflow-y: auto;
  padding: 8px 12px 14px;
  display: grid;
  gap: 8px;
  align-content: start;
  grid-auto-rows: max-content;
}

.place-mobile-filter-option {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font: 500 15px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-mobile-filter-option.is-active {
  border-color: #0f172a;
  background: #f8fafc;
  font-weight: 700;
}

.place-mobile-filter-empty {
  padding: 20px 6px;
  color: #64748b;
  font: 400 14px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.top-controls-card {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  gap: 10px;
}

.place-search-wrap-web {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.place-search-input-web {
  width: 100%;
  min-width: 0;
  grid-column: 1 / -1;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  background: #f2f3f5;
  padding: 0 16px;
  font: 500 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-search-btn {
  height: 42px;
  border-radius: 999px;
  padding: 0 16px;
}

.place-filter-row-web {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 8px;
}

.filter-pill {
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 0 12px;
}

.filter-reset-btn {
  height: 38px;
  border-radius: 999px;
}

.place-actions {
  display: flex;
  justify-content: flex-start;
}

.place-actions-bottom {
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.place-infinite-row {
  justify-content: center;
  min-height: 56px;
  padding: 12px 0 4px;
}

.place-load-more-btn {
  min-width: 124px;
  min-height: 42px;
  border-radius: 999px;
}

.place-infinite-status {
  width: 100%;
  color: #6b7280;
  text-align: center;
  font: 500 13px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-page-info {
  min-width: 108px;
  font: 600 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #374151;
}

.place-list {
  margin-top: 2px;
  gap: 10px;
}

.place-list[aria-busy="true"] {
  min-height: 360px;
}

.place-list-skeleton-card {
  display: grid;
  grid-template-columns: clamp(156px, 28%, 204px) minmax(0, 1fr);
  gap: 16px;
  min-height: 176px;
  padding: 16px;
  border: 1px solid #000000;
  border-radius: 20px;
  background: #ffffff;
}

.place-list-skeleton-cover,
.place-list-skeleton-lines span {
  display: block;
  border-radius: 8px;
  background: #e5e7eb;
  animation: place-list-skeleton-pulse 1200ms ease-in-out infinite;
}

.place-list-skeleton-cover {
  width: 100%;
  min-width: 156px;
  aspect-ratio: 4 / 5;
}

.place-list-skeleton-lines {
  display: grid;
  align-content: center;
  gap: 14px;
}

.place-list-skeleton-lines span {
  height: 16px;
}

.place-list-skeleton-lines span:nth-child(1) {
  width: min(72%, 320px);
  height: 22px;
}

.place-list-skeleton-lines span:nth-child(2) {
  width: min(92%, 460px);
}

.place-list-skeleton-lines span:nth-child(3) {
  width: min(56%, 240px);
}

.place-list-state-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 184px;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 8px;
  background: #ffffff;
}

.place-list-state-card h2 {
  margin: 0;
  color: #111827;
  font: 800 18px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list-state-card p {
  max-width: 420px;
  margin: 0;
  color: #4b5563;
  font: 500 14px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list-retry-btn {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  cursor: pointer;
  font: 800 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list-retry-btn:hover,
.place-list-retry-btn:focus-visible {
  background: #000000;
}

@keyframes place-list-skeleton-pulse {
  0%,
  100% {
    opacity: 0.58;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .place-list-skeleton-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .place-list-skeleton-cover {
    min-width: 0;
    border-radius: 14px;
  }
}

.place-list .place-card {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0;
}

.place-list .card-2col {
  display: flex;
  align-items: stretch;
  gap: 16px;
  min-height: 176px;
}

.place-list .cover-box {
  flex: 0 0 clamp(156px, 28%, 204px);
  width: clamp(156px, 28%, 204px);
  min-width: 156px;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0;
  aspect-ratio: 4 / 5;
}

.place-list .cover-box::before {
  display: none;
  content: none;
}

.place-list .cover-left {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.place-list .cover-left-placeholder {
  background: #eceef2;
}

.place-list .mobile-cover-overlay,
.place-list .mobile-manage-row {
  display: none;
}

.place-list .right-col {
  flex: 1;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.place-list .top-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.place-list .name {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.place-list .name .post-link {
  font-weight: inherit;
}

.place-list .place-card-head-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.place-list .card-type-city {
  margin-top: 2px;
}

.place-list .multilang {
  margin-top: 3px;
  color: rgba(0, 0, 0, 0.56);
  font: 700 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list .multilang-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-list .place-subcost-line {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #475569;
  font: 600 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list .place-category-line {
  margin-top: 6px;
  color: #6b7280;
  font: 500 13px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list .place-subcost-sub,
.place-list .place-subcost-cost {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #374151;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-list .place-intro-line {
  margin-top: 6px;
  min-width: 0;
  max-width: 100%;
  color: rgba(17, 24, 39, 0.66);
  font: 500 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-list .place-subcost-sep {
  display: none;
}

.place-active-filter-chip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.place-active-filter-chip {
  margin-right: auto;
  color: #111827;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-active-filter-chip[hidden] {
  display: none;
}

.place-active-filter-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
}

.place-card-highlight {
  text-decoration: none;
  cursor: pointer;
}

.solo-dining-highlight-web {
  color: #6c63ff !important;
}

.place-active-filter-chip button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
  font: 800 16px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.place-card-highlight:hover,
.place-card-highlight:focus-visible {
  color: #374151;
  background: #e5e7eb;
}

.place-list .score-line {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.place-list .score-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font: 800 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.place-list .score-label {
  display: inline;
  font: inherit;
  color: inherit;
}

.place-list .score-badge {
  display: inline;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}

.place-list .score-item.pro {
  background: linear-gradient(135deg, #57e9f2 0%, #45d4fb 100%);
  color: #0b3e4b;
}

.place-list .score-item.experience,
.place-list .score-item.normal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: #0d3d2d;
}

.place-list .meta-text-line {
  margin-top: 6px;
}

.place-list .meta-text {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.place-list .meta-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: #666;
  font: 500 11px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-list .latest-mini {
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, 97px);
  gap: 6px;
  justify-content: flex-start;
}

.place-list .latest-mini--single {
  grid-template-columns: 97px;
}

.place-list .right-bottom {
  margin-top: auto;
}

@media (min-width: 861px) {
  body.place-list-nav-page .place-list .right-top {
    display: flex;
    flex-direction: column;
  }

  body.place-list-nav-page .place-list .top-line {
    order: 1;
  }

  body.place-list-nav-page .place-list .multilang {
    order: 2;
  }

  body.place-list-nav-page .place-list .place-category-line {
    order: 3;
  }

  body.place-list-nav-page .place-list .score-line {
    order: 4;
  }

  body.place-list-nav-page .place-list .place-intro-line {
    order: 5;
  }

  body.place-list-nav-page .place-list .place-subcost-line {
    order: 6;
    margin-top: 6px;
  }

  body.place-list-nav-page .place-list .meta-text-line {
    order: 7;
  }
}

.place-list .mini-sq {
  position: relative;
  width: 97px;
  padding-top: 97px;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f4f6;
}

.place-list .mini-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-card-actions {
  margin-top: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.place-action-btn {
  height: 30px;
  padding: 0 10px;
  text-decoration: none;
}

.admin-place-manage-page {
  gap: 18px;
}

.admin-place-head {
  margin-bottom: 0;
}

.admin-place-head-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-place-manage-page .admin-place-head-main {
  border-bottom: 0;
}

.admin-place-head-copy {
  display: grid;
  gap: 8px;
}

.admin-place-head-copy p {
  margin: 0;
  color: #4b5563;
}

.admin-place-head-actions {
  flex: 0 0 auto;
}

.admin-place-create-btn {
  min-width: 112px;
}

.admin-place-filter-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.admin-place-filter-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: stretch;
}

.admin-place-filter-select,
.admin-place-search-input,
.admin-place-filter-submit {
  box-sizing: border-box;
  min-width: 0;
  height: 41px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0 14px;
  background: #ffffff;
}

.admin-place-filter-select {
  flex: 0 0 144px;
  width: 144px;
}

.admin-place-search-input {
  flex: 1 1 auto;
  width: auto;
}

.admin-place-filter-submit {
  flex: 0 0 100px;
  width: 100px;
  min-width: 100px;
  padding: 0 14px;
}

.admin-place-list-panel {
  gap: 14px;
}

@media (max-width: 1100px) {
  .admin-place-filter-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .admin-place-filter-select,
  .admin-place-search-input,
  .admin-place-filter-submit {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
}

.admin-place-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: auto;
  padding: 0 2px;
}

.admin-place-import-open-btn {
  flex: 0 0 auto;
  min-width: 132px;
}

.admin-place-import-page {
  max-width: 980px;
  display: grid;
  gap: var(--admin-module-gap);
}

.place-import-page-head {
  display: block;
}

.place-import-page-head h1 {
  margin: 0;
  color: #111827;
  font-size: var(--admin-page-title-size);
  line-height: var(--admin-page-title-line-height);
  font-weight: 900;
}

.place-import-page-head p {
  margin: 8px 0 0;
  max-width: 560px;
  color: #64748b;
  font: 600 13px/1.7 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.place-import-page-action {
  min-width: 98px;
}

.place-import-page-panel {
  width: 100%;
  max-height: none;
  overflow: visible;
  box-shadow: none;
}

.place-import-page-panel .place-import-body {
  overflow: visible;
}

.place-import-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.place-import-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(4px);
}

.place-import-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.24);
}

.place-import-page-panel.place-import-panel {
  width: 100%;
  max-height: none;
  gap: 16px;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.place-import-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.place-import-kicker {
  margin: 0 0 6px;
  color: #64748b;
  font: 800 11px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.place-import-panel-head h2 {
  margin: 0;
  color: #111827;
  font: 900 22px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-close-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
  font: 700 22px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-close-btn:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

.place-import-body {
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding: 0;
}

.place-import-page-panel .place-import-body {
  padding: 0;
}

.place-import-label {
  color: #111827;
  font: 800 13px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-url-input {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border-radius: 16px;
  padding: 14px 16px;
  font: 600 14px/1.55 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-help {
  margin: 0;
  color: #64748b;
  font: 500 12px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-status {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font: 700 13px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-status.is-error {
  background: #fff1f2;
  border-color: rgba(225, 29, 72, 0.2);
  color: #be123c;
}

.place-import-status.is-success {
  background: #f0fdf4;
  border-color: rgba(22, 163, 74, 0.2);
  color: #166534;
}

.place-import-result {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.place-import-result-title {
  color: #111827;
  font: 900 15px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-result-grid {
  display: grid;
  gap: 8px;
}

.place-import-result-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  color: #64748b;
  font: 600 12px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-import-result-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #111827;
  font-weight: 700;
}

.place-import-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.place-import-result-action {
  width: 120px;
  min-width: 120px;
  min-height: 41px;
  text-decoration: none !important;
}

.place-import-result-action,
.place-import-result-action:hover,
.place-import-result-action:focus-visible {
  text-decoration: none !important;
}

.place-import-result-action--primary,
.place-import-result-action--primary:hover,
.place-import-result-action--primary:focus-visible {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.place-import-result-action--secondary,
.place-import-result-action--secondary:hover,
.place-import-result-action--secondary:focus-visible {
  background: #f3f4f6 !important;
  color: #111111 !important;
  border-color: #e5e7eb !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.place-import-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  border-top: 0;
}

.place-import-cancel-btn,
.place-import-submit-btn {
  width: 120px !important;
  min-width: 120px !important;
}

@media (max-width: 720px) {
  .admin-place-list-toolbar,
  .place-import-page-head,
  .place-import-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .place-import-page-head {
    display: flex;
  }

  .place-import-page-actions {
    justify-content: stretch;
  }

  .admin-place-import-open-btn,
  .place-import-page-action,
  .place-import-cancel-btn,
  .place-import-submit-btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .place-import-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .place-import-panel {
    max-height: calc(100vh - 24px);
    border-radius: 20px;
  }
}

.admin-place-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.admin-place-state-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: none;
}

.admin-place-state-title {
  margin: 0;
  color: #111827;
  font: 800 18px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-place-state-message {
  margin: 0;
  color: #4b5563;
  font: 500 13px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-place-filter-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-place-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #64748b;
  font: 600 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-place-filter-chip strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #111827;
  font-weight: 800;
}

.admin-place-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-place-state-action {
  min-height: 34px;
}

.admin-place-list .admin-place-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: none;
  overflow: visible;
}

.admin-place-card-media {
  display: flex;
  width: 104px;
  align-self: stretch;
}

.admin-place-cover-link {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 104px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f7;
}

.admin-place-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-place-cover-placeholder {
  background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.admin-place-card-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.admin-place-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-place-title-wrap {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.admin-place-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-place-title {
  margin: 0;
  color: #111827;
  font: 800 22px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-place-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-place-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #4b5563;
  font: 600 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-place-badge-strong {
  background: #111827;
  color: #ffffff;
}

.admin-place-subline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #6b7280;
  font: 500 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-place-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.admin-place-actions .place-action-btn,
.admin-place-actions .place-action-btn:hover,
.admin-place-actions .place-action-btn:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: 40px !important;
  min-width: 40px !important;
  height: 28px !important;
  min-height: 28px !important;
  padding: 0 4px !important;
  font: 400 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  white-space: nowrap !important;
}

.admin-place-actions .admin-danger.place-action-btn,
.admin-place-actions .admin-danger.place-action-btn:hover,
.admin-place-actions .admin-danger.place-action-btn:focus-visible {
  color: #d92d20 !important;
}

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

.admin-place-stat {
  min-width: 120px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.admin-place-stat-label {
  color: #6b7280;
  font: 600 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-place-stat-value {
  color: #111827;
  font: 800 18px/1.1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

@media (max-width: 1080px) {
  .admin-place-control-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-place-control-wide {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .admin-place-head-main,
  .admin-place-card-head {
    flex-direction: column;
  }

  .admin-place-control-grid {
    grid-template-columns: 1fr;
  }

  .admin-place-control-wide {
    grid-column: span 1;
  }

  .admin-place-list .admin-place-card {
    grid-template-columns: 1fr;
  }

  .admin-place-card-media,
  .admin-place-cover-link {
    width: 100%;
    height: 180px;
  }

  .admin-place-actions {
    justify-content: flex-start;
  }
}

.admin-page {
  display: grid;
  gap: var(--admin-module-gap);
  background: #fff;
}

/* Remove redundant outer frame/padding on top-level admin wrappers. */
.admin-page > .card.admin-content,
.admin-page > .card.admin-post-card,
.admin-page > .card.admin-geo-edit-card {
  border: 0;
  background: transparent;
  padding: 0;
}

.admin-page .card,
.admin-page .admin-toolbar-card,
.admin-page .post-create-section {
  background: #fff;
}

.admin-hero {
  padding: 16px;
}

.admin-page > .admin-hero {
  margin-bottom: calc(var(--admin-page-title-bottom-space) - 12px);
}

.admin-geo-title {
  padding: 0;
}

.admin-page h1.admin-title-module,
.admin-hero h1 {
  margin: 0;
  font-size: var(--admin-page-title-size);
  line-height: var(--admin-page-title-line-height);
}

.admin-title-module {
  margin: 0;
}

.admin-post-card > .admin-title-module {
  margin-bottom: calc(var(--admin-page-title-bottom-space) - 12px);
}

.admin-layout {
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
}

.admin-sidebar {
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
  position: sticky;
  top: calc(62px + 22px);
}

.admin-sidebar h2 {
  margin: 0;
  font-size: var(--admin-page-subtitle-size);
  line-height: var(--admin-page-subtitle-line-height);
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu-item {
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1f1f1f;
  cursor: pointer;
  text-align: left;
  padding: 0 12px;
  width: min(100%, 176px);
  font: 600 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-menu-item:hover {
  border-color: #bcb1a0;
  background: #faf8f2;
}

.admin-menu-item.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.admin-menu-item.admin-menu-item-danger {
  border-color: #d8b8b8;
  color: #7f1111;
  background: #fff7f7;
}

.admin-menu-item.admin-menu-item-danger.active {
  border-color: #7f1111;
  background: #7f1111;
  color: #fff;
}

.admin-content {
  padding: 18px;
  display: grid;
  gap: var(--admin-module-gap);
  align-content: start;
  min-height: 520px;
}

.admin-content-head h1 {
  margin: 0;
  font-size: var(--admin-page-title-size);
  line-height: var(--admin-page-title-line-height);
}

.admin-content-head p {
  margin: 8px 0 0;
}

.admin-content:not(.is-welcome) .admin-content-head {
  display: none;
}

.admin-content.is-welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.admin-content.is-welcome .admin-content-head {
  display: block;
  max-width: 680px;
}

.admin-content.is-welcome .admin-panel-body {
  display: none;
}

.admin-content.is-embed .admin-content-head {
  display: none;
}

.admin-content.is-embed {
  border: 0;
  background: transparent;
  padding: 0;
  gap: 0;
  min-height: 0;
}

.admin-content.is-embed .admin-panel-body {
  display: block;
  margin: 0;
}

.admin-content.is-group {
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.admin-content.is-group .admin-panel-body {
  flex: 1;
  display: grid;
  grid-template-rows: auto auto;
  align-items: stretch;
}

.admin-content.is-group .admin-action-grid {
  align-self: center;
  justify-self: center;
  grid-template-columns: 1fr;
  width: min(420px, 100%);
  margin-top: -300px;
}

.admin-content.is-group .admin-panel-body > .admin-panel-card:first-child {
  margin-bottom: calc(var(--admin-page-title-bottom-space) - 12px);
}

.admin-module-root {
  width: 100%;
}

.admin-module-root .container {
  max-width: none;
  margin: 0;
  padding: 0;
}

.admin-panel-body {
  display: grid;
  gap: var(--admin-module-gap);
}

.admin-panel-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.admin-panel-card h3 {
  margin: 0;
  font-size: var(--admin-page-title-size);
  line-height: var(--admin-page-title-line-height);
}

.admin-panel-card p {
  margin: 0;
}

/* Intro block in admin panel should be plain text, not nested card. */
.admin-layout .admin-panel-body > .admin-panel-card:first-child {
  border: 0;
  background: transparent;
  padding: 0;
}

/* Hide helper copy under admin card titles. */
.admin-layout .admin-panel-card > .muted {
  display: none;
}

/* Remove outer frames in admin dashboard group cards. */
.admin-layout .admin-action-grid > .admin-panel-card {
  border: 0;
  background: transparent;
  padding: 0;
}

.admin-layout .admin-action-grid > .admin-panel-card > h3 {
  display: none;
}

.admin-panel-actions {
  margin-top: 2px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--admin-module-gap);
}

.admin-feature-btn {
  width: 100%;
  justify-content: center;
  text-decoration: none !important;
}

/* Shared style for right-side admin group action buttons. */
.admin-content.is-group .admin-panel-actions {
  justify-content: center;
}

.admin-content.is-group .admin-panel-actions .admin-feature-btn,
.admin-content.is-group .admin-panel-actions .admin-feature-btn:hover,
.admin-content.is-group .admin-panel-actions .admin-feature-btn:focus-visible,
.admin-content.is-group .admin-panel-actions .admin-feature-btn:active {
  width: 210px !important;
  min-width: 210px !important;
  max-width: 210px !important;
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
  justify-content: center;
}

/* Keep "data repair" danger entries consistent with group primary action style. */
.admin-content.is-group .admin-panel-actions .admin-feature-btn.admin-danger,
.admin-content.is-group .admin-panel-actions .admin-feature-btn.admin-danger:hover,
.admin-content.is-group .admin-panel-actions .admin-feature-btn.admin-danger:focus-visible,
.admin-content.is-group .admin-panel-actions .admin-feature-btn.admin-danger:active {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.admin-danger {
  border-color: #d8b8b8;
  color: #7f1111;
  background: #fff7f7;
}

.admin-toolbar-card {
  padding: 12px;
}

/* Remove outer wrapper frame/padding for top filter bars in admin pages. */
.admin-post-card > .card.admin-toolbar-card {
  border: 0;
  background: transparent;
  padding: 0;
}

.admin-toolbar-card-plain {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.admin-home-banner-stack {
  display: grid;
  gap: 12px;
}

.admin-home-banner-hint {
  margin: 0;
}

.admin-home-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-home-banner-meta {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.admin-home-banner-meta code {
  word-break: break-all;
}

.admin-home-banner-preview-wrap {
  margin: 0;
  display: grid;
  gap: 8px;
}

.admin-home-banner-preview {
  display: block;
  width: min(100%, 720px);
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f7f4;
}

.admin-home-banner-preview-wrap figcaption {
  margin: 0;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: 180px 180px minmax(220px, 1fr) auto auto;
  gap: 8px;
}

.admin-toolbar.admin-toolbar-review {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.admin-toolbar.admin-toolbar-review.admin-toolbar-review-ratings {
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  align-items: center;
}

.admin-toolbar.admin-toolbar-review-posts {
  grid-template-columns: minmax(0, 1fr) 180px;
}

.admin-toolbar.admin-toolbar-review > #keywordInput {
  grid-column: 1 / -1;
  order: -1;
  width: 100%;
  min-width: 0;
}

.admin-toolbar.admin-toolbar-review > select {
  justify-self: start;
  width: min(180px, 100%);
}

.admin-toolbar.admin-toolbar-review > .btn {
  justify-self: end;
}

.admin-toolbar.admin-toolbar-review.admin-toolbar-review-ratings > #statusFilter {
  width: min(180px, 100%);
  justify-self: start;
  white-space: nowrap;
}

.admin-toolbar.admin-toolbar-review.admin-toolbar-review-ratings > #keywordInput {
  grid-column: auto;
  order: 0;
  width: 100%;
  min-width: 0;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

.admin-geo-toolbar {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.admin-geo-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.admin-geo-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
  align-items: end;
}

.admin-geo-search-input,
.admin-geo-toolbar-btn {
  width: 100%;
}

.admin-geo-search-input {
  grid-column: 1 / -1;
  min-width: 0;
}

.admin-geo-filter-row > .input,
.admin-geo-action-row > .input,
.admin-geo-action-row > .btn {
  min-width: 0;
}

.admin-geo-action-row .btn,
.admin-geo-action-row .btn.ghost {
  background: var(--dark);
  color: #fff;
  border-color: transparent;
}

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

.admin-review-toolbar-shell {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-review-segmented {
  display: inline-flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-review-segmented-btn {
  min-width: 92px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  font: 600 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.admin-review-segmented-btn.active {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.admin-review-segmented-btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.admin-review-loadmore-row {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.admin-review-item {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.admin-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.admin-review-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.admin-review-status {
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

.admin-review-comment {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

.admin-review-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-review-user-meta {
  display: grid;
  gap: 2px;
}

.admin-review-user-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.admin-review-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.2;
  border: 1px solid #dedede;
  background: #f6f6f6;
  color: #4a4a4a;
}

.admin-review-role.tier-pro {
  border-color: #d5bd85;
  background: #f6edd8;
  color: #6f4f0a;
}

.admin-review-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #f4f4f4;
}

.admin-review-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-review-chip {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #dad2c2;
  background: #f8f4eb;
  font: 600 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #3a3122;
}

.admin-review-block {
  display: grid;
  gap: 8px;
}

.admin-review-label {
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #2f2f2f;
}

.admin-review-score-section {
  display: grid;
  gap: 6px;
}

.admin-review-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdfa;
}

.admin-review-score-label {
  font-size: 13px;
  color: #343434;
}

.admin-review-score-value {
  font-size: 13px;
  font-weight: 600;
  color: #1f1f1f;
}

.admin-review-list {
  display: grid;
  gap: 6px;
}

.admin-review-rec-list {
  display: grid;
  gap: 8px;
}

.admin-review-rec-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdfa;
  padding: 8px;
}

.admin-review-rec-image-link {
  text-decoration: none;
}

.admin-review-rec-image {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #f5f5f5;
  display: block;
}

.admin-review-rec-image-empty {
  background: #f7f7f7;
}

.admin-review-rec-main {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.admin-review-rec-name-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}

.admin-review-rec-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.admin-review-rec-price {
  font-size: 13px;
  color: #755512;
  white-space: nowrap;
}

.admin-review-rec-foreign {
  font-size: 12px;
}

.admin-review-rec-comment {
  font-size: 13px;
  color: #373737;
  line-height: 1.4;
}

.admin-review-list-item {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdfa;
}

.admin-review-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.admin-review-image-item {
  display: grid;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.admin-review-image-item img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f5f5f5;
}

.admin-review-image-item span {
  font-size: 12px;
  line-height: 1.3;
  color: #575757;
}

.admin-review-meta {
  font-size: 12px;
  line-height: 1.6;
}

.admin-review-title-inline {
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
}

.admin-review-alert {
  padding: 8px 10px;
  border: 1px solid #f2c783;
  background: #fff5df;
  color: #835714;
  font: 600 12px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-review-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-review-actions--stacked,
.admin-review-table-actions--stacked {
  align-items: stretch;
  flex-direction: column;
}

.admin-review-action-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-review-reject-reason {
  display: grid;
  gap: 6px;
  width: 100%;
  min-width: 180px;
  font: 600 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #3a3a3a;
}

.admin-review-reject-reason textarea {
  width: 100%;
  min-height: 56px;
  resize: vertical;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font: 13px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #171717;
  background: #fff;
}

.admin-review-reject-reason textarea:focus {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 1px;
  border-color: #111;
}

.admin-review-reason {
  padding: 8px 10px;
  border: 1px solid #ffd3dd;
  border-radius: 10px;
  background: #fff6f8;
  color: #981b35;
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.admin-review-table-wrap {
  width: 100%;
  padding: 0;
  padding-bottom: 12px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 transparent;
  -webkit-overflow-scrolling: touch;
}

.admin-review-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 13px;
}

.admin-review-table-posts {
  table-layout: fixed;
  width: 1560px;
  min-width: 1560px;
}

.admin-review-table-reviews {
  table-layout: fixed;
  width: 2180px;
  min-width: 2180px;
}

.admin-review-table-posts th:nth-child(1),
.admin-review-table-posts td:nth-child(1) {
  width: 56px;
}

.admin-review-table-posts th:nth-child(2),
.admin-review-table-posts td:nth-child(2) {
  width: 390px;
}

.admin-review-table-posts th:nth-child(3),
.admin-review-table-posts td:nth-child(3) {
  width: 90px;
}

.admin-review-table-posts th:nth-child(4),
.admin-review-table-posts td:nth-child(4) {
  width: 120px;
}

.admin-review-table-posts th:nth-child(5),
.admin-review-table-posts td:nth-child(5) {
  width: 560px;
}

.admin-review-table-posts th:nth-child(6),
.admin-review-table-posts td:nth-child(6),
.admin-review-table-posts th:nth-child(7),
.admin-review-table-posts td:nth-child(7) {
  width: 150px;
}

.admin-review-table-posts th:nth-child(8),
.admin-review-table-posts td:nth-child(8),
.admin-review-table-posts th:nth-child(9),
.admin-review-table-posts td:nth-child(9),
.admin-review-table-posts th:nth-child(10),
.admin-review-table-posts td:nth-child(10) {
  width: 88px;
}

.admin-review-table-reviews th:nth-child(1),
.admin-review-table-reviews td:nth-child(1) {
  width: 140px;
}

.admin-review-table-reviews th:nth-child(2),
.admin-review-table-reviews td:nth-child(2) {
  width: 90px;
}

.admin-review-table-reviews th:nth-child(3),
.admin-review-table-reviews td:nth-child(3) {
  width: 180px;
}

.admin-review-table-reviews th:nth-child(4),
.admin-review-table-reviews td:nth-child(4) {
  width: 220px;
}

.admin-review-table-reviews th:nth-child(5),
.admin-review-table-reviews td:nth-child(5) {
  width: 180px;
}

.admin-review-table-reviews th:nth-child(6),
.admin-review-table-reviews td:nth-child(6) {
  width: 140px;
}

.admin-review-table-reviews th:nth-child(7),
.admin-review-table-reviews td:nth-child(7) {
  width: 200px;
}

.admin-review-table-reviews th:nth-child(8),
.admin-review-table-reviews td:nth-child(8) {
  width: 320px;
}

.admin-review-table-reviews th:nth-child(9),
.admin-review-table-reviews td:nth-child(9),
.admin-review-table-reviews th:nth-child(10),
.admin-review-table-reviews td:nth-child(10),
.admin-review-table-reviews th:nth-child(11),
.admin-review-table-reviews td:nth-child(11) {
  width: 150px;
}

.admin-review-table-reviews th:nth-child(12),
.admin-review-table-reviews td:nth-child(12) {
  width: 100px;
}

.admin-review-table-reviews th:nth-child(13),
.admin-review-table-reviews td:nth-child(13) {
  width: 160px;
}

.admin-review-table-posts th,
.admin-review-table-reviews th {
  position: relative;
}

.admin-col-resizable {
  user-select: none;
}

.admin-col-resize-handle {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 14px;
  cursor: col-resize;
  touch-action: none;
  z-index: 4;
}

.admin-col-resize-handle::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: #b8b29f;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.admin-review-table-posts th:hover .admin-col-resize-handle::after,
.admin-col-resize-handle.is-dragging::after {
  opacity: 1;
}

body.admin-col-resize-active {
  cursor: col-resize;
  user-select: none;
}

.admin-review-table th,
.admin-review-table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 10px 8px;
  vertical-align: top;
  white-space: nowrap;
}

.admin-review-table th {
  background: #f7f3eb;
  font-weight: 700;
  color: #3d3d3d;
  white-space: nowrap;
}

.admin-review-table td.admin-review-cell-main {
  min-width: 0;
  max-width: none;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.admin-review-table td.admin-review-cell-content {
  min-width: 0;
  max-width: none;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.5;
  color: #2f2f2f;
}

.admin-review-cell-wrap {
  min-width: 220px;
  max-width: 420px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.5;
  color: #2f2f2f;
}

.admin-review-table-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  white-space: normal;
}

.admin-review-table-actions.admin-review-table-actions--stacked {
  align-items: stretch;
  flex-direction: column;
}

.admin-review-table-actions .btn.admin-danger,
.admin-review-table-actions .btn.admin-danger:hover,
.admin-review-table-actions .btn.admin-danger:focus-visible,
.admin-review-table-actions .btn.admin-danger:active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.admin-review-thumb-list {
  display: inline-grid;
  grid-template-columns: repeat(3, 52px);
  align-items: start;
  gap: 6px;
  white-space: nowrap;
}

.admin-review-thumb-list .admin-review-thumb {
  width: 52px;
  height: 52px;
}

.admin-review-thumb-list .muted {
  grid-column: 1 / -1;
}

.admin-review-score-lines {
  display: grid;
  gap: 2px;
}

.admin-post-list-filter-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(220px, 1.5fr) 100px 104px 84px;
  gap: 8px;
  align-items: center;
}

.admin-post-list-filter-row > .input {
  min-width: 0;
}

#postCategoryFilter,
#postStatusFilter {
  width: 100px;
  min-width: 100px;
  white-space: nowrap;
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  padding: 0 12px !important;
}

#postCategoryFilter,
#postCategoryFilter:hover,
#postCategoryFilter:focus-visible,
#postStatusFilter,
#postStatusFilter:hover,
#postStatusFilter:focus-visible {
  border-radius: 6px !important;
}

.admin-post-table-wrap {
  width: 100%;
  padding: 0;
  padding-bottom: 12px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 transparent;
  -webkit-overflow-scrolling: touch;
}

.admin-post-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 13px;
}

.admin-post-table th,
.admin-post-table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 10px 8px;
  vertical-align: top;
  white-space: nowrap;
}

.admin-post-table th {
  position: relative;
  background: #f7f3eb;
  font-weight: 700;
  color: #3d3d3d;
}

.admin-post-table th:hover .admin-col-resize-handle::after,
.admin-col-resize-handle.is-dragging::after {
  opacity: 1;
}

.admin-post-table td.admin-post-cell-wrap {
  min-width: 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.admin-post-title-cell {
  max-width: none;
}

.admin-post-author-cell {
  max-width: none;
  color: #2f2f2f;
}

.admin-post-date-cell,
.admin-post-actions-cell {
  white-space: nowrap;
}

.admin-post-actions-cell {
  vertical-align: middle;
}

.admin-post-cover-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f5f5;
}

.admin-post-cover-empty {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: #707070;
  background: #faf7f1;
  font-size: 12px;
}

.admin-post-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.admin-review-posts-wrap {
  padding: 0;
  overflow: visible;
}

.admin-review-post-list {
  display: grid;
  gap: 0;
}

.admin-review-posts-state {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
}

.admin-review-post-card {
  display: grid;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  overflow: visible;
}

.admin-review-post-card + .admin-review-post-card {
  border-top: 1px solid #e5e7eb;
  margin-top: 18px;
  padding-top: 18px;
}

.admin-review-post-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 18px 22px;
  position: relative;
}

.admin-review-post-row + .admin-review-post-row {
  border-top: 0;
}

.admin-review-post-row + .admin-review-post-row::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: #e5e7eb;
}

.admin-review-post-row-head {
  display: grid;
  gap: 16px;
}

.admin-review-post-row-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.admin-review-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-review-post-meta-item + .admin-review-post-meta-item {
  position: relative;
  padding-left: 24px;
}

.admin-review-post-meta-item + .admin-review-post-meta-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.2em;
  background: #d1d5db;
  transform: translateY(-50%);
}

.admin-review-post-status-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-review-post-row-dates {
  flex-wrap: wrap;
  gap: 24px;
}

.admin-review-post-row-images,
.admin-review-post-row-content {
  display: block;
}

.admin-review-post-row-content {
  padding-top: 22px;
  padding-bottom: 22px;
}

.admin-review-post-row-images + .admin-review-post-row-content {
  padding-top: 8px;
}

.admin-review-post-row-images + .admin-review-post-row-content::before {
  display: none;
}

.admin-review-post-row-actions {
  justify-content: flex-end;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 22px;
}

.admin-review-post-row.admin-review-actions--stacked {
  align-items: stretch;
  flex-direction: column;
}

.admin-review-post-label {
  flex: 0 0 auto;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.admin-review-post-value,
.admin-review-post-meta {
  color: #111827;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.admin-review-post-title {
  margin: 0;
  min-width: 0;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111827;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.admin-review-post-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.admin-review-post-status--pending {
  background: transparent;
  border: 0;
  border-color: transparent;
  padding: 0;
  min-height: 0;
  border-radius: 0;
  color: #d92d20;
}

.admin-review-post-status--approved {
  background: #ecfdf3;
  border-color: #86efac;
  color: #166534;
}

.admin-review-post-status--rejected {
  background: #fef2f2;
  border-color: #f5a3a3;
  color: #b42318;
}

.admin-review-post-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.admin-review-post-image-link {
  display: block;
}

.admin-review-post-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
}

.admin-review-post-image-empty {
  width: 100%;
  max-width: 220px;
}

.admin-review-post-content-box {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  gap: 18px;
  color: #1f2937;
}

.admin-review-post-content-segment {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 2;
  letter-spacing: 0.025em;
}

.admin-review-posts-pagination {
  margin-top: 16px;
}

.admin-user-table-wrap {
  padding: 0;
  overflow: hidden;
}

.admin-user-table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 transparent;
  -webkit-overflow-scrolling: touch;
}

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

.admin-user-search-row > select {
  flex: 0 0 240px;
  width: 240px;
  min-width: 180px;
}

.admin-user-search-row > #keywordInput {
  flex: 1 1 auto;
  min-width: 0;
}

.admin-user-search-row > #searchBtn {
  flex: 0 0 auto;
  min-width: 100px;
}

.admin-user-filter-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.admin-user-filter-row .input {
  width: min(280px, 100%);
}

.admin-user-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 13px;
}

.admin-user-table th,
.admin-user-table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 10px 8px;
  vertical-align: top;
  white-space: nowrap;
}

.admin-user-table th {
  background: #f7f3eb;
  font-weight: 700;
  color: #3d3d3d;
}

.admin-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #f5f5f5;
}

.admin-user-avatar-empty {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  color: #707070;
  background: #faf7f1;
  font-size: 11px;
}

.admin-user-role-select {
  height: 34px;
  min-width: 112px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1f1f1f;
  font: 600 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding: 0 8px;
  cursor: pointer;
}

.admin-user-role-select.is-dirty {
  border-color: #111;
  box-shadow: inset 0 -2px 0 #111;
  background: #fffdf5;
}

.admin-user-role-select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.admin-user-table td.admin-user-capability-cell {
  min-width: 320px;
  white-space: normal;
}

.admin-user-capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 420px;
}

.admin-user-capability-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #e7dfd3;
  background: #faf7f1;
  color: #433830;
  white-space: nowrap;
  font: 600 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-user-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
}

.admin-user-footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}

.admin-geo-table-wrap {
  width: 100%;
  padding: 0;
  padding-bottom: 12px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 transparent;
  -webkit-overflow-scrolling: touch;
}

.admin-geo-groups-wrap {
  padding: 0;
}

.admin-geo-groups {
  display: grid;
  gap: 18px;
}

.admin-geo-groups-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.admin-geo-empty,
.admin-geo-loading,
.admin-geo-loadmore-text {
  color: #6b7280;
  font: 500 14px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-geo-loadmore-text.done {
  opacity: 0.82;
}

.admin-geo-country-block {
  display: grid;
  gap: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.admin-geo-country-header,
.admin-geo-level-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-geo-country-header {
  justify-content: space-between;
  align-items: center;
  column-gap: 16px;
}

.admin-geo-country-title {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.admin-geo-country-name {
  font: 700 20px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #1f2937;
}

.admin-geo-country-count,
.admin-geo-level-count {
  color: #6b7280;
  font: 600 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-geo-country-meta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #f8fafc;
}

.admin-geo-country-meta-panel.is-editing {
  border-color: rgba(37, 99, 235, 0.28);
  background: #f8fbff;
}

.admin-geo-country-meta-grid {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.admin-geo-country-meta-grid--fields {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-right: 104px;
}

.admin-geo-country-meta-field {
  display: block;
  min-width: 0;
}

.admin-geo-country-meta-label,
.admin-geo-country-policy-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font: 700 11px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-geo-country-meta-value {
  display: flex;
  align-items: center;
  height: 36px;
  min-height: 36px;
  overflow: hidden;
  color: #111827;
  font: 700 14px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-geo-country-meta-input {
  width: 100%;
  min-width: 0;
  height: 36px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  color: #111827;
  font: 700 14px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  outline: none;
}

.admin-geo-country-meta-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.admin-geo-country-meta-input[readonly] {
  background: #f1f5f9;
  color: #64748b;
  cursor: not-allowed;
}

.admin-geo-country-meta-field[data-country-meta-field="code"] .admin-geo-country-meta-value {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.admin-geo-country-meta-field[data-country-meta-field="code"] .admin-geo-country-meta-input {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.admin-geo-country-policy-panel {
  display: grid;
  grid-template-columns: max-content minmax(220px, 280px);
  align-items: center;
  justify-content: start;
  gap: 10px 16px;
  min-width: 0;
}

.admin-geo-country-policy-label {
  margin-bottom: 0;
}

.admin-geo-country-policy-panel .admin-geo-address-policy {
  width: 100%;
  margin-left: 0;
}

.admin-geo-country-meta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 0;
}

.admin-geo-country-meta-actions--top {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
}

.admin-geo-country-meta-panel .admin-geo-country-meta-edit-btn,
.admin-geo-country-meta-panel .admin-geo-country-meta-edit-btn:hover,
.admin-geo-country-meta-panel .admin-geo-country-meta-edit-btn:focus-visible,
.admin-geo-country-meta-panel .admin-geo-country-meta-action-btn,
.admin-geo-country-meta-panel .admin-geo-country-meta-action-btn:hover,
.admin-geo-country-meta-panel .admin-geo-country-meta-action-btn:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: 40px !important;
  min-width: 40px !important;
  height: 28px !important;
  min-height: 28px !important;
  padding: 0 4px !important;
  font: 400 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.admin-geo-country-meta-panel .admin-geo-country-meta-action-btn:disabled,
.admin-geo-country-meta-panel .admin-geo-country-meta-action-btn:disabled:hover,
.admin-geo-country-meta-panel .admin-geo-country-meta-action-btn:disabled:focus-visible {
  opacity: 0.55;
  cursor: wait;
}

.admin-geo-address-policy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(76px, 1fr) minmax(92px, 1fr);
  align-items: stretch;
  flex: 0 0 auto;
  width: min(260px, 100%);
  margin-left: auto;
  padding: 4px;
  border-radius: 14px;
  background: #eceff3;
  overflow: hidden;
  color: #8c94a1;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-geo-address-policy-indicator {
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: calc(50% - 4px);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(17, 24, 39, 0.08);
  transform: translateX(0);
  transition: transform 220ms ease;
  pointer-events: none;
  z-index: 1;
}

.admin-geo-address-policy.is-english .admin-geo-address-policy-indicator {
  transform: translateX(100%);
}

.admin-geo-address-policy-option {
  appearance: none;
  position: relative;
  z-index: 2;
  min-height: 36px;
  border: 0;
  border-radius: 11px;
  padding: 0 12px;
  background: transparent;
  color: inherit;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.admin-geo-address-policy-option.active {
  color: #111111;
}

.admin-geo-address-policy-option:disabled {
  cursor: wait;
}

.admin-geo-address-policy.is-saving {
  opacity: 0.6;
  cursor: wait;
}

.admin-geo-level-block {
  display: grid;
  gap: 10px;
}

.admin-geo-level-block + .admin-geo-level-block {
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-geo-level-name {
  font: 700 15px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #374151;
}

.admin-geo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.admin-geo-row-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-geo-row-name {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-geo-row-title {
  font: 700 15px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
}

.admin-geo-row-subtitle {
  color: #6b7280;
  font: 500 13px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-geo-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  background: #f3f4f6;
  color: #374151;
  font: 700 11px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.02em;
}

.admin-geo-badge.cc {
  background: #ede9fe;
  color: #5b21b6;
}

.admin-geo-row-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #6b7280;
  font: 500 12px/1.55 "SFMono-Regular", Consolas, monospace;
}

.admin-geo-row-aliases {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-geo-alias {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  background: #fff7ed;
  color: #9a3412;
  font: 600 11px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

@media (max-width: 900px) {
  .admin-geo-country-meta-actions--top {
    position: static;
    justify-self: end;
    order: -1;
  }

  .admin-geo-country-meta-grid--fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 0;
  }

  .admin-geo-country-policy-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .admin-geo-country-policy-panel .admin-geo-address-policy {
    max-width: 280px;
  }
}

@media (max-width: 560px) {
  .admin-geo-country-meta-grid--fields {
    grid-template-columns: 1fr;
  }

  .admin-geo-country-meta-panel {
    padding: 12px;
  }
}

.admin-geo-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 13px;
}

.admin-geo-table th,
.admin-geo-table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 10px 8px;
  vertical-align: top;
  white-space: nowrap;
}

.admin-geo-table th {
  background: #f7f3eb;
  font-weight: 700;
  color: #3d3d3d;
}

.admin-mini-btn {
  height: 30px;
  padding: 0 10px;
  text-decoration: none;
}

.admin-geo-edit-card {
  padding: 16px;
  display: grid;
}

.admin-post-card {
  padding: 16px;
  display: grid;
  gap: var(--admin-module-gap);
}

.ai-admin-stack {
  display: grid;
  gap: var(--admin-module-gap);
}

.ai-admin-grid {
  display: grid;
  gap: var(--admin-module-gap);
}

.ai-admin-grid-sync {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 160px);
  align-items: end;
}

.ai-admin-grid-sync > .ai-admin-field-search {
  grid-column: 1 / -1;
  order: -1;
}

.ai-admin-grid-sync > .ai-admin-field-search .input {
  width: 100%;
  min-width: 0;
}

.ai-admin-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 180px);
  gap: 12px;
}

.ai-admin-inline-chat {
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
}

.ai-admin-field {
  display: grid;
  gap: 6px;
}

.ai-admin-field > label {
  font-size: 13px;
  color: var(--muted);
}

.ai-admin-textarea {
  min-height: 140px;
  width: 100%;
}

.ai-admin-textarea-tall {
  min-height: 260px;
}

.ai-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.ai-admin-actions-tight {
  justify-content: flex-end;
}

.ai-admin-checkbox-card {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #faf8f2;
  border-radius: 12px;
}

.ai-admin-status[data-state="error"] {
  color: #b42318;
}

.ai-admin-result-card {
  display: grid;
  gap: 16px;
}

.ai-admin-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ai-admin-meta-grid-chat {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ai-admin-meta-item {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #faf8f2;
}

.ai-admin-meta-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.ai-admin-meta-value {
  font-weight: 700;
}

.ai-admin-answer {
  display: grid;
  gap: 10px;
}

.ai-admin-grid-chat {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-admin-answer h3,
.ai-admin-kb-editor h3,
.ai-admin-kb-list h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.ai-admin-answer-body {
  white-space: pre-wrap;
  word-break: break-word;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.ai-admin-empty {
  color: var(--muted);
}

.ai-admin-citation {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.ai-admin-citation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ai-admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
}

.ai-admin-link {
  color: var(--accent);
  text-decoration: none;
}

.ai-admin-link:hover {
  text-decoration: none;
}

.ai-admin-result-pre {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #0f1115;
  color: #e5edf5;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font: 12px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.ai-admin-kv-list {
  display: grid;
  gap: 10px;
}

.ai-admin-kv-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ai-admin-kv-key {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ai-admin-kv-value {
  text-align: right;
  word-break: break-word;
}

.ai-admin-flag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-admin-flag {
  display: inline-grid;
  gap: 4px;
  min-width: 132px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.ai-admin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.ai-admin-entity-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.ai-admin-entity-media {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4efe2, #ece3cf);
}

.ai-admin-entity-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-admin-entity-cover-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  color: #6b5c42;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ai-admin-entity-body {
  display: grid;
  gap: 8px;
}

.ai-admin-entity-title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.ai-admin-entity-subtitle {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.ai-admin-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-admin-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f5efe4;
  color: #3d3426;
  font-size: 12px;
}

.ai-admin-chip-muted {
  background: #f3f4f6;
  color: #4b5563;
}

.ai-admin-caption {
  color: #423826;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.ai-admin-rec-card .ai-admin-result-pre {
  background: #f7f7f8;
  color: #1f2937;
}

.ai-admin-log-list {
  display: grid;
  gap: 10px;
}

.ai-admin-log-item {
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.ai-admin-log-title {
  font-weight: 700;
}

.ai-admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
}

.ai-admin-kb-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: start;
}

.ai-admin-kb-editor,
.ai-admin-kb-list {
  display: grid;
  gap: 12px;
}

.ai-admin-callout {
  padding: 12px 14px;
  border: 1px solid rgba(205, 58, 46, 0.18);
  background: rgba(205, 58, 46, 0.06);
  color: #6d1b12;
  line-height: 1.6;
}

.ai-admin-callout code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.ai-admin-table-wrap {
  width: 100%;
  padding: 0;
  padding-bottom: 12px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 transparent;
  -webkit-overflow-scrolling: touch;
}

.ai-admin-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 13px;
}

.ai-admin-table th,
.ai-admin-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.ai-admin-table th {
  font-weight: 700;
  color: #3d3d3d;
  background: #f7f3eb;
}

.ai-admin-table tbody tr.is-active {
  background: rgba(205, 58, 46, 0.06);
}

.ai-admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-admin-mini-btn {
  min-height: 32px;
  padding: 0 10px;
  font-size: 13px;
}

.admin-geo-edit-shell {
  align-items: start;
}

.admin-geo-edit-meta {
  margin-top: 0;
}

.admin-geo-edit-content {
  min-width: 0;
  padding: 0;
  gap: var(--admin-module-gap);
  min-height: 520px;
}

.admin-geo-edit-content .admin-content-head {
  display: block;
}

.admin-geo-edit-section {
  min-width: 0;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.admin-geo-edit-section + .admin-geo-edit-section {
  margin-top: 0;
}

.admin-geo-edit-actions-bar {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-geo-edit-actions-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-geo-edit-actions-right > .btn,
.admin-geo-edit-actions-right > a.btn {
  justify-content: center;
  text-decoration: none;
}

.admin-page .admin-geo-edit-delete-btn,
.admin-page .admin-geo-edit-delete-btn:hover,
.admin-page .admin-geo-edit-delete-btn:focus-visible {
  color: #dc2626 !important;
  border-color: #e5e7eb !important;
}

.admin-page .admin-geo-edit-delete-btn:hover,
.admin-page .admin-geo-edit-delete-btn:focus-visible {
  color: #b91c1c !important;
}

.admin-geo-section-title {
  margin: 0 0 10px;
  font-size: var(--admin-page-subtitle-size);
  line-height: var(--admin-page-subtitle-line-height);
  color: #1f2937;
}

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

.admin-form-grid-inline-basic {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.admin-form-grid-inline-basic .admin-field-wide {
  grid-column: auto;
}

.admin-form-grid-inline-basic > .admin-field:nth-child(-n+3) {
  grid-column: span 4;
}

.admin-form-grid-inline-basic > .admin-field:nth-child(n+4) {
  grid-column: span 3;
}

.admin-field {
  min-width: 0;
  display: grid;
  gap: 6px;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 13px;
  color: #333;
}

.admin-field-wide {
  grid-column: 1 / -1;
}

.admin-field-help {
  margin-top: 2px;
}

.admin-country-suggest {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.admin-country-suggest-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eceef2;
  background: #fff;
  color: #111;
  text-align: left;
  padding: 10px 12px;
  font: 600 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.admin-country-suggest-item:last-child {
  border-bottom: 0;
}

.admin-country-suggest-item:hover {
  background: #f9fafb;
}

@media (max-width: 720px) {
  .admin-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-form-grid-inline-basic {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-form-grid-inline-basic .admin-field-wide {
    grid-column: 1 / -1;
  }

  .admin-form-grid-inline-basic > .admin-field:nth-child(-n+3),
  .admin-form-grid-inline-basic > .admin-field:nth-child(n+4) {
    grid-column: 1 / -1;
  }

  .admin-geo-row {
    grid-template-columns: minmax(0, 1fr);
  }
 
  .admin-mini-btn {
    width: 100%;
    justify-content: center;
  }

  .admin-geo-edit-actions-bar {
    align-items: stretch;
  }

  .admin-geo-edit-actions-right {
    justify-content: stretch;
  }

  .admin-geo-edit-actions-right > .btn,
  .admin-geo-edit-actions-right > a.btn,
  .admin-geo-edit-delete-btn {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .admin-form-grid-inline-basic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-form-grid-inline-basic .admin-field-wide {
    grid-column: 1 / -1;
  }

  .admin-form-grid-inline-basic > .admin-field:nth-child(-n+3),
  .admin-form-grid-inline-basic > .admin-field:nth-child(n+4) {
    grid-column: span 1;
  }
}

.admin-upload-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #333;
}

.post-place-search-result {
  border: 1px solid var(--line);
  background: #fff;
  max-height: 220px;
  overflow: auto;
}

.post-place-result-item {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #eceef2;
  background: #fff;
  padding: 10px 12px;
  display: grid;
  gap: 3px;
  cursor: pointer;
}

.post-place-result-item--with-media {
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
}

.post-place-result-item--plain {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.post-place-result-cover {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 9px;
  object-fit: cover;
  background: #f3f4f6;
}

.post-place-result-cover--brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font: 800 18px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-place-result-main {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.post-place-result-item:last-child {
  border-bottom: 0;
}

.post-place-result-item:hover {
  background: #f9fafb;
}

.post-place-result-name {
  font: 700 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

.post-place-result-sub {
  font: 500 12px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #6b7280;
}

.post-place-result-address {
  font: 500 12px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #6b7280;
}

.post-linked-place-row {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 10px;
  display: grid;
  gap: 8px;
}

.post-linked-place-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.post-linked-place-text {
  min-width: 0;
  font: 600 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-linked-place-list {
  display: grid;
  gap: 8px;
}

.post-linked-place-list .post-linked-place-card-web {
  max-width: 100%;
}

.post-brand-token-input.input {
  width: 100%;
  height: auto;
  min-height: 54px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  cursor: text;
}

.post-brand-token-input.input:focus-within {
  outline: 3px solid rgba(59, 130, 246, 0.45);
  outline-offset: 0;
}

.post-brand-token-list {
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.post-brand-token-list:empty {
  display: none;
}

.post-brand-token {
  max-width: 100%;
  min-height: 34px;
  flex: 0 1 auto;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f3f4f6;
  color: #374151;
  padding: 0 8px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-brand-token-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-brand-token-remove {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #ef4444;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 800 18px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.post-brand-token-remove:hover,
.post-brand-token-remove:focus-visible {
  color: #dc2626;
  outline: 1px solid rgba(239, 68, 68, 0.45);
  outline-offset: 1px;
}

.post-brand-token-search {
  flex: 1 1 220px;
  min-width: 180px;
  height: 34px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  font: 500 15px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
}

.post-brand-token-search::placeholder {
  color: #9ca3af;
}

.release-switch-row-web {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 42px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font: 500 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.release-form-web {
  border: 1px solid var(--line);
  background: #f9fafb;
  padding: 10px;
}

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

.release-grid-item-full {
  grid-column: 1 / -1;
}

.release-grid-item-main {
  grid-column: span 4;
}

.release-grid-item-side,
.release-grid-item-third {
  grid-column: span 2;
}

.release-grid-item-price {
  grid-column: 1 / span 4;
  grid-row: 2;
}

.release-grid-item-tax {
  grid-column: 5 / span 2;
  grid-row: 2;
}

.release-grid-item-draw {
  grid-column: 1 / span 3;
  grid-row: 3;
}

.release-grid-item-register-toggle {
  grid-column: 4 / span 3;
  grid-row: 3;
}

.release-grid-item-register-time {
  grid-column: span 2;
  grid-row: 4;
}

.release-channel-row-web {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.release-channel-row-web--single {
  grid-template-columns: minmax(0, 1fr);
}

.release-chip-list-web {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.release-chip-web {
  border: 1px solid #d1d5db;
  background: #fff;
  padding: 0 8px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

.release-chip-remove-web {
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.release-offline-place-list-web {
  display: grid;
  gap: 8px;
}

.release-offline-place-card-web {
  border: 1px solid #d1d5db;
  border-radius: 9px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.release-offline-place-name-web {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 600 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.release-offline-place-cover-web {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 9px;
  background: #f3f4f6;
}

.release-offline-place-main-web {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 6px;
}

.release-offline-place-sub-web {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #6b7280;
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.release-offline-place-address-web {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #6b7280;
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.release-offline-place-remove-web {
  border: 0;
  background: #111;
  color: #ef4444;
  font: 700 20px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  text-align: center;
}

.post-image-preview-list {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px dashed transparent;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.post-image-preview-list.is-file-drag-over {
  border-color: #111;
  background: rgba(17, 17, 17, 0.03);
}

.post-image-item,
.post-image-add-card {
  width: 136px;
  height: 136px;
}

.post-image-upload-tip {
  margin: 6px 0 10px;
  color: #6b7280;
  font: 500 12px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-image-item {
  cursor: grab;
}

.post-image-item--cover {
  width: var(--post-image-preview-width, 136px);
}

.post-image-item.dragging {
  opacity: 0.55;
}

.post-image-item.drag-over .post-image-thumb {
  border: 2px dashed #111;
}

.post-image-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
}

.post-image-item--cover .post-image-thumb {
  aspect-ratio: var(--post-image-preview-ratio, 1 / 1);
}

.post-image-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  display: block;
}

.post-image-thumb-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font: 600 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-image-remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.post-image-cover-tag {
  position: absolute;
  left: 6px;
  top: 6px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  color: #111;
  font: 700 11px/20px "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-image-add-card {
  border: 1px dashed #9aa0ab;
  background: #f9fafb;
  color: #374151;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.post-image-add-card.drag-over {
  border-color: #111;
  background: rgba(17, 17, 17, 0.05);
}

.post-image-add-plus {
  font: 500 34px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-crop-modal-content {
  width: min(720px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
}

.post-crop-ratio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.crop-ratio-btn.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.post-crop-canvas-wrap {
  width: 100%;
  border: 1px solid var(--line);
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 52vh;
}

.post-crop-canvas {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  touch-action: none;
  cursor: grab;
}

.post-crop-canvas:active {
  cursor: grabbing;
}

.post-crop-slider-grid {
  display: grid;
  gap: 8px;
}

.post-crop-slider-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #555;
}

.post-crop-slider-item input[type="range"] {
  width: 100%;
}

@media (max-width: 640px) {
  .post-draft-toolbar {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .post-draft-toolbar .input {
    min-width: 0;
    width: 100%;
  }

  .release-grid-web {
    grid-template-columns: minmax(0, 1fr);
  }

  .release-grid-web > * {
    grid-column: 1 / -1;
  }

  .release-channel-row-web {
    grid-template-columns: minmax(0, 1fr);
  }

  .post-image-item,
  .post-image-add-card {
    width: 112px;
    height: 112px;
  }

  .post-crop-modal-content {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }

  .post-crop-canvas-wrap {
    max-height: 44vh;
  }
}

.admin-actions-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.post-bottom-actions {
  justify-content: flex-end;
  padding-top: 4px;
}

/* Shared bottom action buttons (baseline: post edit "更新" button). */
.admin-bottom-actions-common {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-bottom-actions-common .admin-bottom-action-btn {
  width: 120px !important;
  min-width: 120px !important;
  height: 41px !important;
  min-height: 41px !important;
  padding: 0 16px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  text-decoration: none !important;
  white-space: nowrap;
  font: 600 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
}

.admin-bottom-actions-common .admin-bottom-action-btn--primary,
.admin-bottom-actions-common .admin-bottom-action-btn--primary:hover,
.admin-bottom-actions-common .admin-bottom-action-btn--primary:focus-visible {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.admin-bottom-actions-common .admin-bottom-action-btn--secondary,
.admin-bottom-actions-common .admin-bottom-action-btn--secondary:hover,
.admin-bottom-actions-common .admin-bottom-action-btn--secondary:focus-visible {
  background: #f3f4f6 !important;
  color: #111111 !important;
  border-color: #e5e7eb !important;
}

.admin-bottom-actions-common .admin-bottom-action-btn--danger,
.admin-bottom-actions-common .admin-bottom-action-btn--danger:hover,
.admin-bottom-actions-common .admin-bottom-action-btn--danger:focus-visible {
  background: #f3f4f6 !important;
  color: #dc2626 !important;
  border-color: #e5e7eb !important;
}

.admin-bottom-actions-common .admin-bottom-action-btn.is-loading,
.admin-bottom-actions-common .admin-bottom-action-btn.is-loading:hover,
.admin-bottom-actions-common .admin-bottom-action-btn.is-loading:focus-visible {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.admin-bottom-actions-common .admin-bottom-action-btn.is-success,
.admin-bottom-actions-common .admin-bottom-action-btn.is-success:hover,
.admin-bottom-actions-common .admin-bottom-action-btn.is-success:focus-visible {
  background: #16794c !important;
  color: #ffffff !important;
  border-color: #16794c !important;
}

.admin-bottom-actions-common .admin-bottom-action-btn.is-error,
.admin-bottom-actions-common .admin-bottom-action-btn.is-error:hover,
.admin-bottom-actions-common .admin-bottom-action-btn.is-error:focus-visible {
  background: #b42318 !important;
  color: #ffffff !important;
  border-color: #b42318 !important;
}

/* Medium shared action button (baseline: post-create "加载草稿" button). */
.admin-medium-action-btn,
.admin-medium-action-btn:hover,
.admin-medium-action-btn:focus-visible {
  width: 100px !important;
  min-width: 100px !important;
  height: 41px !important;
  min-height: 41px !important;
  padding: 0 16px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none !important;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  font-size: var(--font-size-body) !important;
  line-height: var(--line-height-body) !important;
  font-weight: 600 !important;
}

/* Mini shared action button (baseline: place-list edit button). */
.admin-mini-action-btn,
.admin-mini-action-btn:hover,
.admin-mini-action-btn:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: 40px !important;
  min-width: 40px !important;
  height: 28px !important;
  min-height: 28px !important;
  padding: 0 4px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  text-decoration: none !important;
  font: 400 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
}

.admin-mini-action-btn.admin-mini-action-btn--danger,
.admin-mini-action-btn.admin-mini-action-btn--danger:hover,
.admin-mini-action-btn.admin-mini-action-btn--danger:focus-visible {
  color: #d92d20 !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-sections {
  display: grid;
  gap: 12px;
}

#postEditorRoot[data-mode="create"] {
  gap: 0;
}

#postEditorRoot[data-mode="create"] > .admin-title-module {
  margin-bottom: var(--admin-page-title-bottom-space);
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) {
  --pc-field-h: 38px;
  --pc-radius: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-sections .input:not(textarea) {
  height: var(--pc-field-h);
  min-height: var(--pc-field-h);
  line-height: var(--pc-field-h);
  box-sizing: border-box;
  border-radius: var(--pc-radius);
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-section {
  border: 0;
  background: #fff;
  border-radius: var(--pc-radius);
  padding: 12px;
  display: grid;
  gap: 10px;
}

#postEditorRoot[data-mode="create"] .post-create-section {
  padding: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-section-title {
  font: 700 16px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: start;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-main,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-side {
  min-width: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-side {
  width: 150px;
  max-width: 100%;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) #uploadHint:empty {
  display: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) #richCoverUploadHint:empty {
  display: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-image-preview-list {
  padding: 0;
  border: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-cover-preview-list {
  align-items: flex-start;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-image-source-field {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-image-source-label {
  color: #4b5563;
  font: 600 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-image-source-input {
  width: 100%;
}

.activity-editor-images .post-image-preview-list,
.activity-submit-images .post-image-preview-list {
  padding: 0;
  border: 0;
}

.activity-editor-images .post-image-preview-list.is-file-drag-over,
.activity-submit-images .post-image-preview-list.is-file-drag-over {
  border: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-inline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 8px;
  align-items: center;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-content-mode-control {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(54px, 1fr));
  height: var(--pc-field-h);
  min-height: var(--pc-field-h);
  border: 1px solid #111827;
  border-radius: var(--pc-radius);
  overflow: hidden;
  background: #fff;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-content-mode-btn {
  min-width: 54px;
  height: 100%;
  padding: 0 10px;
  border: 0;
  border-right: 1px solid #111827;
  border-radius: 0;
  background: #fff;
  color: #111827;
  cursor: pointer;
  font: 800 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-content-mode-btn:last-child {
  border-right: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-content-mode-btn.active,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-content-mode-btn[aria-pressed="true"] {
  background: #111827;
  color: #fff;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-input-wrap {
  position: relative;
  min-width: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: end;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-meta-grid .input,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-meta-grid .release-switch-row-web {
  height: var(--pc-field-h);
  min-height: var(--pc-field-h);
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-inline-row > .post-create-input-wrap,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-inline-row > .post-create-input-wrap > .input,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-textarea {
  width: 100%;
  box-sizing: border-box;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-input-wrap > .input {
  padding-right: 72px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-counter {
  color: #6b7280;
  font: 500 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  justify-self: end;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-input-wrap > .post-create-counter {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-textarea-wrap {
  position: relative;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor-wrap {
  position: relative;
  display: grid;
  gap: 8px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-tool,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-select-wrap,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-select {
  height: 34px;
  border: 1px solid #111827 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111827 !important;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-tool {
  width: 34px;
  min-width: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-clear-style-tool {
  width: auto;
  min-width: 72px;
  padding: 0 10px;
  font-weight: 700;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-tool-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-tool {
  position: relative;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-tool-preview {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 5px;
  height: 3px;
  background: #111827;
  border: 1px solid rgba(17, 24, 39, 0.18);
  pointer-events: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-tool:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-tool:focus-visible {
  background: #111827 !important;
  color: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-tool:hover .post-rich-tool-icon,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-tool:focus-visible .post-rich-tool-icon {
  filter: invert(1);
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-select-wrap {
  width: auto;
  min-width: 82px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-align-wrap {
  position: relative;
  width: auto;
  min-width: 92px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-select {
  width: auto;
  min-width: 78px;
  padding: 0 8px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-select-wrap .post-rich-select {
  height: 32px;
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  padding: 0 2px;
  border: 0 !important;
  background: transparent !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-picker {
  position: absolute;
  left: 10px;
  top: var(--post-rich-color-picker-top, 42px);
  z-index: 22;
  width: min(360px, calc(100% - 20px));
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-picker.hidden {
  display: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-title {
  text-align: center;
  color: #111827;
  font: 800 15px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-sv {
  --rich-color-hue: 221;
  position: relative;
  height: 132px;
  border-radius: 10px;
  background:
    linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to right, #fff 0%, hsl(var(--rich-color-hue) 100% 50%) 100%);
  cursor: crosshair;
  touch-action: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-hue {
  position: relative;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(to right, #f00, #ff0, #0f0, #0ff, #00f, #f0f, #f00);
  cursor: pointer;
  touch-action: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.35), 0 2px 5px rgba(15, 23, 42, 0.24);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-sv .post-rich-color-handle {
  left: 0;
  top: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-hue .post-rich-color-handle {
  top: 50%;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-value-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 62px;
  gap: 8px;
  align-items: center;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-preview {
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background: #111827;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-hex {
  width: 100%;
  height: 40px !important;
  min-height: 40px !important;
  border-radius: 10px !important;
  background: #fff !important;
  font: 700 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-color-eyedropper {
  height: 40px;
  min-width: 62px;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #111827 !important;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  cursor: pointer;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-picker {
  position: absolute;
  left: 10px;
  right: 10px;
  top: var(--post-rich-place-picker-top, 52px);
  z-index: 20;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-picker > .input {
  width: 100%;
  background: #fff;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-picker .post-place-search-result {
  border: 0 !important;
  border-top: 1px solid #eef2f7 !important;
  border-radius: 0 !important;
  max-height: 240px !important;
  background: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-result-item {
  min-height: 52px;
  padding: 8px 2px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-picker.hidden {
  display: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor {
  min-height: 220px !important;
  height: 280px !important;
  resize: vertical;
  padding: 8px 10px 24px !important;
  overflow: auto;
  font-size: 14px !important;
  line-height: 1.6 !important;
  white-space: normal;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor--plain {
  white-space: pre-wrap;
  font: 400 14px/1.7 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  background: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor:empty::before {
  content: attr(data-placeholder);
  color: #9ca3af;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor > :is(p, div):not(.post-rich-image-block):not(.post-rich-place-card) {
  margin: 0;
  min-height: 1.6em;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor > :is(p, div):not(.post-rich-image-block):not(.post-rich-place-card):last-child {
  margin-bottom: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor u {
  text-underline-offset: 0.12em;
  text-decoration-thickness: 0.05em;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor .post-rich-align-left {
  text-align: left;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor .post-rich-align-center {
  text-align: center;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor .post-rich-align-right {
  text-align: right;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor span.post-rich-align-left,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor span.post-rich-align-center,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-editor span.post-rich-align-right {
  display: block;
  width: 100%;
}

body.activity-page .activity-rich-editor-wrap,
.activity-editor .activity-rich-editor-wrap {
  position: relative;
  display: grid;
  gap: 8px;
}

body.activity-page .activity-rich-editor-wrap .post-rich-toolbar,
.activity-editor .activity-rich-editor-wrap .post-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

body.activity-page .activity-rich-editor-wrap .post-rich-tool,
body.activity-page .activity-rich-editor-wrap .post-rich-select-wrap,
body.activity-page .activity-rich-editor-wrap .post-rich-select,
.activity-editor .activity-rich-editor-wrap .post-rich-tool,
.activity-editor .activity-rich-editor-wrap .post-rich-select-wrap,
.activity-editor .activity-rich-editor-wrap .post-rich-select {
  height: 34px !important;
  border: 1px solid #111827 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111827 !important;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
}

body.activity-page .activity-rich-editor-wrap .post-rich-tool,
.activity-editor .activity-rich-editor-wrap .post-rich-tool {
  width: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.activity-page .activity-rich-editor-wrap .post-rich-clear-style-tool,
.activity-editor .activity-rich-editor-wrap .post-rich-clear-style-tool {
  width: auto !important;
  min-width: 72px !important;
  padding: 0 10px !important;
  font-weight: 700 !important;
}

body.activity-page .activity-rich-editor-wrap .post-rich-tool-icon,
.activity-editor .activity-rich-editor-wrap .post-rich-tool-icon {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  object-fit: contain !important;
}

body.activity-page .activity-rich-editor-wrap .post-rich-tool:hover,
body.activity-page .activity-rich-editor-wrap .post-rich-tool:focus-visible,
.activity-editor .activity-rich-editor-wrap .post-rich-tool:hover,
.activity-editor .activity-rich-editor-wrap .post-rich-tool:focus-visible {
  background: #111827 !important;
  color: #fff !important;
}

body.activity-page .activity-rich-editor-wrap .post-rich-tool:hover .post-rich-tool-icon,
body.activity-page .activity-rich-editor-wrap .post-rich-tool:focus-visible .post-rich-tool-icon,
.activity-editor .activity-rich-editor-wrap .post-rich-tool:hover .post-rich-tool-icon,
.activity-editor .activity-rich-editor-wrap .post-rich-tool:focus-visible .post-rich-tool-icon {
  filter: invert(1);
}

body.activity-page .activity-rich-editor-wrap .post-rich-select-wrap,
.activity-editor .activity-rich-editor-wrap .post-rich-select-wrap {
  width: 58px !important;
  min-width: 58px !important;
  padding: 0 6px !important;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

body.activity-page .activity-rich-editor-wrap .post-rich-select-wrap .post-rich-select,
.activity-editor .activity-rich-editor-wrap .post-rich-select-wrap .post-rich-select {
  height: 32px !important;
  width: 20px !important;
  min-width: 20px !important;
  flex: 0 0 20px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.activity-page .activity-rich-editor-wrap .post-rich-editor,
.activity-editor .activity-rich-editor-wrap .post-rich-editor {
  min-height: 220px !important;
  height: 280px !important;
  resize: vertical;
  padding: 8px 10px 24px !important;
  overflow: auto;
  background: #f3f4f6 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  white-space: normal;
}

body.activity-page .activity-rich-editor-wrap .post-rich-editor:empty::before,
.activity-editor .activity-rich-editor-wrap .post-rich-editor:empty::before {
  content: attr(data-placeholder);
  color: #9ca3af;
}

body.activity-page .activity-rich-editor-wrap .post-rich-editor p,
.activity-editor .activity-rich-editor-wrap .post-rich-editor p {
  margin: 0 0 10px;
}

body.activity-page .activity-rich-editor-wrap .post-create-counter-float,
.activity-editor .activity-rich-editor-wrap .post-create-counter-float {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: #6b7280 !important;
  font: 500 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  pointer-events: none;
}

/* Keep activity add/remove action buttons out of global black-pill button rules. */
body.activity-page .activity-location-add-btn:not(.admin-medium-action-btn),
body.activity-page .activity-location-add-btn:not(.admin-medium-action-btn):hover,
body.activity-page .activity-location-add-btn:not(.admin-medium-action-btn):focus-visible,
body.activity-page .activity-location-add-btn:not(.admin-medium-action-btn):active,
.admin-page .activity-editor .activity-location-add-btn:not(.admin-medium-action-btn),
.admin-page .activity-editor .activity-location-add-btn:not(.admin-medium-action-btn):hover,
.admin-page .activity-editor .activity-location-add-btn:not(.admin-medium-action-btn):focus-visible,
.admin-page .activity-editor .activity-location-add-btn:not(.admin-medium-action-btn):active,
.activity-editor .activity-location-add-btn:not(.admin-medium-action-btn),
.activity-editor .activity-location-add-btn:not(.admin-medium-action-btn):hover,
.activity-editor .activity-location-add-btn:not(.admin-medium-action-btn):focus-visible,
.activity-editor .activity-location-add-btn:not(.admin-medium-action-btn):active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 76px !important;
  width: auto !important;
  height: 42px !important;
  padding: 0 14px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: none !important;
  font: 600 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  text-decoration: none !important;
}

body.activity-page .activity-location-remove,
body.activity-page .activity-location-remove:hover,
body.activity-page .activity-location-remove:focus-visible,
body.activity-page .activity-location-remove:active,
body.activity-page .activity-highlight-remove,
body.activity-page .activity-highlight-remove:hover,
body.activity-page .activity-highlight-remove:focus-visible,
body.activity-page .activity-highlight-remove:active,
.admin-page .activity-editor .activity-location-remove,
.admin-page .activity-editor .activity-location-remove:hover,
.admin-page .activity-editor .activity-location-remove:focus-visible,
.admin-page .activity-editor .activity-location-remove:active,
.admin-page .activity-editor .activity-highlight-remove,
.admin-page .activity-editor .activity-highlight-remove:hover,
.admin-page .activity-editor .activity-highlight-remove:focus-visible,
.admin-page .activity-editor .activity-highlight-remove:active,
.activity-editor .activity-location-remove,
.activity-editor .activity-location-remove:hover,
.activity-editor .activity-location-remove:focus-visible,
.activity-editor .activity-location-remove:active,
.activity-editor .activity-highlight-remove,
.activity-editor .activity-highlight-remove:hover,
.activity-editor .activity-highlight-remove:focus-visible,
.activity-editor .activity-highlight-remove:active {
  display: inline !important;
  min-width: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 2px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: transparent !important;
  color: #dc2626 !important;
  box-shadow: none !important;
  justify-self: end !important;
  align-self: center !important;
  font: 600 13px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  text-decoration: none !important;
}

body.activity-page .activity-place-name-result,
.activity-editor .activity-place-name-result {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-image-block,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card {
  position: relative;
  margin: 12px 0;
  min-height: 0;
  cursor: pointer;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-image-preview {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 520px;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  object-fit: contain;
  background: transparent;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-image-block {
  display: block;
  width: fit-content;
  max-width: min(600px, 100%);
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  line-height: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-image-block.post-rich-align-left {
  margin-left: 0;
  margin-right: auto;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-image-block.post-rich-align-center {
  margin-left: auto;
  margin-right: auto;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-image-block.post-rich-align-right {
  margin-left: auto;
  margin-right: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-image-block.is-selected::after {
  display: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  width: min(600px, 100%);
  max-width: 100%;
  height: 150px;
  min-height: 150px;
  box-sizing: border-box;
  margin: 12px 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  overflow: hidden;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card.post-rich-align-left {
  margin-left: 0;
  margin-right: auto;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card.post-rich-align-center {
  margin-left: auto;
  margin-right: auto;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card.post-rich-align-right {
  margin-left: auto;
  margin-right: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid #d1d5db;
  border-radius: inherit;
  pointer-events: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card.is-delete-pending::after {
  border: 3px solid #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card.is-selected::after {
  border: 2px solid #111827;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-cover-wrap {
  display: block;
  width: 150px;
  height: 150px;
  min-height: 150px;
  min-width: 0;
  background: #f3f4f6;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-cover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-cover-empty {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  background: #f3f4f6;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-main {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name score"
    "foreign-name score"
    "sub score"
    "address score";
  align-content: center;
  align-items: center;
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px 20px;
  border: 0;
  border-left: 1px solid #e5e7eb;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-main--no-foreign {
  grid-template-areas:
    "name score"
    "sub score"
    "address score";
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-name {
  grid-area: name;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: anywhere;
  font: 800 18px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-score {
  grid-area: score;
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  aspect-ratio: 1 / 1;
  min-width: 0;
  width: 70px;
  min-height: 70px;
  max-height: 70px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #9efbd3 0%, #57e9f2 50%, #45d4fb 100%);
  color: #111;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  text-align: center;
  white-space: nowrap;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-score-label {
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 9px;
  line-height: 1.1;
  color: #111;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-score-value {
  padding: 0;
  color: #111;
  font: 800 20px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-foreign-name,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-sub,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-address {
  min-width: 0;
  font: 500 13px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-foreign-name {
  grid-area: foreign-name;
  color: #111827;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-sub,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-address {
  color: #6b7280;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-sub {
  grid-area: sub;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-address {
  grid-area: address;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-card-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 16px/1 Arial, sans-serif;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-card-remove:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-card-remove:focus-visible {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

@media (max-width: 640px) {
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-row,
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-inline-row {
    grid-template-columns: 1fr;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-content-mode-control,
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-switch,
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-side {
    width: 100%;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-card {
    grid-template-columns: 112px minmax(0, 1fr);
    width: 100%;
    height: 128px;
    min-height: 128px;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-cover-wrap {
    width: 112px;
    height: 128px;
    min-height: 128px;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-main {
    column-gap: 10px;
    padding: 12px;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-name {
    font-size: 15px;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-score {
    width: 50px;
    min-height: 50px;
    max-height: 50px;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-score-label {
    font-size: 8px;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-score-value {
    font-size: 16px;
  }

  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-foreign-name,
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-sub,
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-place-address {
    font-size: 12px;
  }
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-textarea {
  min-height: 280px;
  padding-bottom: 28px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-counter-float {
  position: absolute;
  right: 10px;
  bottom: 8px;
  pointer-events: none;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-switch-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-switch-state {
  min-width: 20px;
  color: #6b7280;
  font: 500 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: right;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-title-switch {
  width: 170px;
  max-width: 100%;
  min-height: var(--pc-field-h);
  height: var(--pc-field-h);
  padding: 0 10px;
  border-radius: var(--pc-radius);
  white-space: nowrap;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-meta-grid .release-switch-row-web {
  min-height: var(--pc-field-h);
  padding: 0 10px;
  border-radius: var(--pc-radius);
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .release-form-web .release-switch-row-web {
  height: var(--pc-field-h);
  min-height: var(--pc-field-h);
  box-sizing: border-box;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .release-form-web .release-switch-row-web--field {
  width: 100%;
  justify-content: flex-end;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .release-form-web {
  border: 0;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-choice-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-choice-btn {
  border: 1px solid #d1d5db !important;
  background: #fff !important;
  color: #374151 !important;
  min-width: 132px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px !important;
  font: 600 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-choice-btn:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-choice-btn:focus-visible {
  border-color: #111 !important;
  background: #f3f4f6 !important;
  color: #111 !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-choice-btn.active {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-choice-btn.active:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-choice-btn.active:focus-visible {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions {
  justify-content: flex-end;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn {
  width: 120px;
  min-width: 120px;
  border-radius: 999px !important;
  background: #111 !important;
  color: #fff !important;
  border: 0 !important;
  white-space: nowrap;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn:focus-visible {
  background: #111 !important;
  color: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-loading,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-loading:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-loading:focus-visible {
  background: #111 !important;
  color: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-error,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-error:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-error:focus-visible {
  background: #b42318 !important;
  color: #fff !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-success,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-success:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .post-submit-btn.is-success:focus-visible {
  background: #16794c !important;
  color: #fff !important;
}

#postEditorRoot[data-mode="edit"] .post-bottom-actions .post-bottom-delete-btn {
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  background: #e5e7eb !important;
  color: #3f3f46 !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

#postEditorRoot[data-mode="edit"] .post-bottom-actions .post-bottom-delete-btn:hover,
#postEditorRoot[data-mode="edit"] .post-bottom-actions .post-bottom-delete-btn:focus-visible {
  background: #d4d8df !important;
  color: #27272a !important;
}

#postEditorRoot[data-mode="edit"] .post-bottom-actions .post-bottom-delete-btn:disabled {
  background: #eceff3 !important;
  color: #8a8f98 !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-sections .btn,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-bottom-actions .btn {
  height: var(--pc-field-h);
  min-height: var(--pc-field-h);
  border-radius: var(--pc-radius);
}

.post-draft-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.post-draft-toolbar .input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.post-draft-toolbar :is(.input, .btn),
.draft-strip-row :is(.input, .btn) {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

.post-draft-toolbar .input,
.draft-strip-row .input,
.draft-strip .muted {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
}

#loadDraftBtn {
  white-space: nowrap;
}

.draft-strip .btn.secondary {
  white-space: nowrap;
}

.draft-strip .draft-delete-btn,
.draft-strip .draft-delete-btn:hover,
.draft-strip .draft-delete-btn:focus-visible {
  color: #dc2626 !important;
}

.draft-strip .draft-delete-btn:hover,
.draft-strip .draft-delete-btn:focus-visible {
  color: #b91c1c !important;
}

.addplace-page .restore-addr-btn:not(.admin-medium-action-btn),
.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):hover,
.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):hover,
.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border-color: #e5e7eb !important;
}

.addplace-page .address-restore-item-web .restore-addr-btn:not(.admin-medium-action-btn),
.addplace-page .address-restore-item-web .restore-addr-btn:not(.admin-medium-action-btn):hover,
.addplace-page .address-restore-item-web .restore-addr-btn:not(.admin-medium-action-btn):focus-visible {
  width: 96px !important;
  min-width: 96px !important;
  min-height: var(--pc-field-h) !important;
  justify-content: center !important;
  padding: 0 12px !important;
}

.admin-page #addReleaseChannelBtn,
.admin-page #addReleaseChannelBtn:hover,
.admin-page #addReleaseChannelBtn:focus-visible {
  background: transparent !important;
  color: #3f3f46 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-width: auto !important;
}

.admin-page #addReleaseChannelBtn:hover,
.admin-page #addReleaseChannelBtn:focus-visible {
  background: transparent !important;
  color: #27272a !important;
}

#draftSelect {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

.place-editor-page {
  display: grid;
  gap: var(--admin-module-gap);
}

.editor-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: var(--admin-module-gap);
}

.editor-sidebar {
  display: grid;
  gap: var(--admin-module-gap);
  align-content: start;
}

.editor-panel {
  padding: 12px;
  display: grid;
  gap: 10px;
}

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

.panel-head h2 {
  margin: 0;
  font-size: var(--admin-page-subtitle-size);
  line-height: var(--admin-page-subtitle-line-height);
}

.editor-main {
  padding: 16px;
  display: grid;
  gap: var(--admin-module-gap);
}

.editor-head h1 {
  margin: 0;
  font-size: var(--admin-page-title-size);
  line-height: var(--admin-page-title-line-height);
}

.editor-main > .editor-head {
  margin-bottom: calc(var(--admin-page-title-bottom-space) - 14px);
}

.editor-toolbar {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.place-form {
  display: grid;
  gap: 12px;
}

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

.field {
  display: grid;
  gap: 4px;
}

.field span {
  font: 600 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #374151;
}

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

.textarea {
  height: auto;
  min-height: 88px;
  padding: 10px;
  resize: vertical;
}

.addplace-page .place-brand-intro-locked {
  background: #f9fafb;
  color: #374151;
}

.place-pick-list {
  display: grid;
  gap: 8px;
}

.pick-item {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.pick-main h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.pick-actions {
  display: flex;
  gap: 6px;
}

.pick-btn {
  height: 34px;
  padding: 0 10px;
}

.pick-btn.danger {
  border-color: #eab0b0;
  color: #9f1239;
}

.json-panel {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.json-preview {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  max-height: 340px;
  overflow: auto;
  white-space: pre;
  font: 12px/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.addplace-page {
  max-width: 980px;
}

.addplace-card {
  padding: 0;
  display: grid;
  gap: var(--admin-module-gap);
}

.addplace-head h1 {
  margin: 0;
  font-size: var(--admin-page-title-size);
  line-height: var(--admin-page-title-line-height);
}

.addplace-card > .addplace-head {
  margin-bottom: calc(var(--admin-page-title-bottom-space) - 16px);
}

.addplace-head-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.addplace-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.draft-strip {
  background: #fff;
  display: grid;
  gap: 8px;
  width: 100%;
  justify-self: stretch;
}

.draft-strip-row {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
}

.addplace-form {
  display: grid;
  gap: var(--admin-module-gap);
}

.form-item {
  position: relative;
  display: grid;
  gap: 8px;
}

.geo-admin-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  margin-top: 6px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.geo-admin-suggest-list {
  display: grid;
  max-height: 260px;
  overflow-y: auto;
}

.geo-admin-suggest-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: transparent;
  color: #111827;
  padding: 10px 12px;
  text-align: left;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.geo-admin-suggest-item:last-child {
  border-bottom: 0;
}

.geo-admin-suggest-item:hover,
.geo-admin-suggest-item.active {
  background: #f8fafc;
}

.addplace-page .geo-admin-suggest-item,
.addplace-page .geo-admin-suggest-item:hover,
.addplace-page .geo-admin-suggest-item:focus-visible,
.addplace-page .geo-admin-suggest-item.active {
  border: 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: #fff !important;
  color: #111827 !important;
  box-shadow: none !important;
  padding: 10px 12px !important;
}

.addplace-page .geo-admin-suggest-item:last-child {
  border-bottom: 0 !important;
}

.addplace-page .geo-admin-suggest-item:hover,
.addplace-page .geo-admin-suggest-item:focus-visible,
.addplace-page .geo-admin-suggest-item.active {
  background: #f8fafc !important;
}

.geo-admin-suggest-primary {
  font: 600 14px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.geo-admin-suggest-meta,
.geo-admin-suggest-empty {
  color: #6b7280;
  font: 500 12px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.geo-admin-suggest-empty {
  padding: 10px 12px;
}

.form-label {
  font: 700 var(--admin-page-subtitle-size)/var(--admin-page-subtitle-line-height) "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #1f2937;
}

.highlight-group-web {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: text;
}

.highlight-group-web:focus-within {
  outline: 3px solid rgba(59, 130, 246, 0.45);
  outline-offset: 0;
}

.highlight-count-web {
  margin-left: 6px;
  color: #6b7280;
  font: 500 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.highlight-chip-list-web {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.highlight-chip-list-web:empty {
  display: none;
}

.highlight-chip-web,
.highlight-chip-empty-web {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.highlight-chip-web {
  gap: 8px;
  max-width: 100%;
  flex: 0 1 auto;
  padding: 0 8px 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f3f4f6;
  color: #374151;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.highlight-chip-empty-web {
  color: #6b7280;
  font-size: 13px;
}

.highlight-chip-remove-web {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #ef4444;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 800 18px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.highlight-chip-remove-web:hover,
.highlight-chip-remove-web:focus-visible {
  color: #dc2626;
  outline: 1px solid rgba(239, 68, 68, 0.45);
  outline-offset: 1px;
}

.solo-dining-config-row-web {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  flex-wrap: nowrap;
}

.solo-dining-check-list-web {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
}

.solo-dining-option-card-web {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  padding: 0 12px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #fff;
  box-sizing: border-box;
}

.solo-dining-option-card-web.is-active {
  border-color: rgba(17, 24, 39, 0.32);
}

.solo-dining-option-card-web:focus-within {
  border-color: rgba(17, 24, 39, 0.38);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.16);
}

.solo-dining-check-option-web {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111827;
  font: 800 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.solo-dining-check-option-web:focus,
.solo-dining-check-option-web:focus-visible,
.solo-dining-suboption-web:focus,
.solo-dining-suboption-web:focus-visible {
  outline: 0;
}

.solo-dining-card-label-web {
  flex: 0 0 auto;
  color: #111827;
  font: 800 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.solo-dining-check-box-web {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid #c9ced6;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.solo-dining-check-option-web.is-active .solo-dining-check-box-web {
  background: #111827;
  border-color: #111827;
}

.solo-dining-check-option-web.is-active .solo-dining-check-box-web::before {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.solo-dining-suboptions-web {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
}

.solo-dining-suboption-web {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  font: 700 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.solo-dining-suboption-web.is-active {
  border-color: transparent;
  background: transparent;
  color: #111827;
}

.solo-dining-suboption-web.is-active .solo-dining-check-box-web {
  background: #111827;
  border-color: #111827;
}

.solo-dining-suboption-web.is-active .solo-dining-check-box-web::before {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.highlight-input-web {
  flex: 1 1 240px;
  min-width: min(100%, 240px);
  height: 34px;
  border: 0;
  background: transparent;
  padding: 0;
}

.highlight-suggest-web {
  right: auto;
  width: min(520px, 100%);
  padding: 0;
}

.highlight-suggest-web .geo-admin-suggest-list {
  max-height: 230px;
}

.highlight-suggest-item-web {
  min-height: 40px;
}

.highlight-suggest-item-web .geo-admin-suggest-primary {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.place-cover-upload-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.place-cover-upload-card {
  width: 136px;
  height: auto;
  aspect-ratio: 4 / 5;
}

.place-cover-upload-card:hover,
.place-cover-upload-card:focus-visible {
  background: #f3f4f6 !important;
  color: #374151 !important;
}

.place-cover-upload-card:disabled {
  cursor: wait;
  opacity: 0.72;
}

.place-cover-upload-plus {
  font: 500 34px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-cover-upload-label {
  font: 600 13px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.cover-preview-img {
  width: 136px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
}

.menu-image-list-web {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-image-card-web {
  position: relative;
  width: 136px;
  aspect-ratio: 4 / 5;
}

.menu-image-thumb-btn-web {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: #f5f5f5;
  cursor: pointer;
  overflow: hidden;
}

.menu-image-thumb-web,
.menu-image-thumb-empty-web {
  width: 100%;
  height: 100%;
}

.menu-image-thumb-web {
  display: block;
  object-fit: cover;
}

.menu-image-thumb-empty-web {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #888;
  font: 500 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: center;
}

.menu-image-remove-web {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font: 700 18px/28px "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: center;
  cursor: pointer;
}

.menu-image-add-card-web {
  width: 136px;
  aspect-ratio: 4 / 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
}

.menu-image-add-plus-web {
  font: 500 34px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.list-grid {
  display: grid;
  gap: 8px;
}

.list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

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

.menu-row-web {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr) minmax(0, 0.7fr) 100px 100px;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  align-items: center;
}

.menu-row-web + .menu-row-web {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.menu-fields-web {
  display: grid;
  gap: 8px;
}

.menu-row-web > .input {
  width: 100%;
  min-width: 0;
}

.menu-row-action-btn {
  width: 100px;
  min-width: 100px;
}

.addplace-page .menu-row-action-btn.btn.secondary,
.addplace-page .menu-row-action-btn.btn.secondary:hover,
.addplace-page .menu-row-action-btn.btn.secondary:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: 100px !important;
  min-width: 100px !important;
  padding: 0 16px !important;
}

.addplace-page .menu-row-remove-btn,
.addplace-page .menu-row-remove-btn:hover,
.addplace-page .menu-row-remove-btn:focus-visible {
  color: #dc2626 !important;
}

.addplace-page .menu-row-remove-btn:hover,
.addplace-page .menu-row-remove-btn:focus-visible {
  color: #b91c1c !important;
}

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

.hours-detail-hint {
  margin-bottom: 8px;
}

.hours-day-web {
  border: 0;
  padding: 0;
  background: #fff;
  display: grid;
  gap: 8px;
}

.hours-day-title {
  font: 700 14px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #374151;
}

.slot-list-web {
  --slot-gap: 8px;
  --slot-copy-width: 160px;
  --slot-action-width: 160px;
  --slot-remove-width: 96px;
  --slot-dash-width: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--slot-copy-width);
  align-items: center;
  column-gap: var(--slot-gap);
  row-gap: var(--slot-gap);
}

.slot-row-web {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--slot-dash-width) minmax(0, 1fr) var(--slot-action-width) var(--slot-remove-width);
  align-items: center;
  gap: var(--slot-gap);
  width: 100%;
}

.slot-list-web > .slot-row-web {
  grid-column: 1;
}

.slot-list-web > [data-action="slot-copy"],
.slot-list-web > .slot-copy-placeholder-web {
  grid-column: 2;
}

.slot-time-web {
  width: 100%;
  min-width: 0;
  height: 38px;
  text-align: center;
}

.slot-actions-web {
  display: flex;
  gap: 8px;
}

.inline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.poi-layout-web {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  background: #f3f4f6;
  overflow: hidden;
}

.poi-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  border: 0;
  background: #f3f4f6;
}

.poi-overlay-web {
  position: absolute;
  top: 12px;
  left: 12px;
  bottom: auto;
  z-index: 30;
  pointer-events: auto;
  width: min(360px, 36%);
  max-height: calc(100% - 24px);
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 6px;
  overflow: hidden;
}

.poi-search-row-web {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.poi-search-row-web > .input {
  width: 100%;
  border-radius: 12px;
}

.poi-map-status {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: #374151;
  font: 600 13px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.poi-results {
  display: grid;
  gap: 0;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.poi-result-item {
  width: 100%;
  display: grid;
  gap: 4px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
  background: #fff;
  color: #111827;
  padding: 12px 0;
  cursor: pointer;
  border-radius: 0;
  box-shadow: none;
}

.poi-result-item:first-child {
  border-top: 1px solid rgba(209, 213, 219, 0.8);
}

.poi-result-head {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.poi-result-index {
  flex-shrink: 0;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: 600;
  color: #111827;
}

.poi-result-item:hover {
  background: #fafafa;
}

.poi-result-item.active {
  background: #f9fafb;
}

.poi-result-title {
  flex: 1 1 auto;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.poi-result-addr,
.poi-result-ll {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-weight: var(--font-weight-caption);
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poi-page-row-web {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.poi-page-row-web.is-visible {
  display: flex;
}

.poi-page-info {
  margin-right: auto;
  text-align: left;
  min-width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #9ca3af;
  font: 600 14px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: none;
}

.poi-page-actions-web {
  display: inline-flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.poi-page-btn {
  min-width: 88px;
  font: 600 14px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  min-height: 41px;
  padding: 0 14px !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #4b5563 !important;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

.poi-page-btn:hover,
.poi-page-btn:focus-visible {
  border-color: #cbd5e1 !important;
  background: #f8fafc !important;
  color: #111827 !important;
}

.poi-page-btn:disabled,
.poi-page-btn:disabled:hover,
.poi-page-btn:disabled:focus-visible {
  border-color: #e5e7eb !important;
  background: #f8fafc !important;
  color: #9ca3af !important;
  cursor: not-allowed;
}

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

.three-col-web {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.place-type-grid-web {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.address-geo-web {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.address-pane-web {
  display: grid;
  gap: 12px;
}

#f_address {
  min-height: 41px;
  height: 41px;
  padding: 8px 10px;
  resize: none;
  box-sizing: border-box;
}

.address-meta-row-web {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.address-meta-row-web.address-meta-row-web--coords-only {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.address-meta-row-web > .form-item {
  margin-bottom: 0;
  min-width: 0;
}

.address-meta-row-web > .form-item > .input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.address-restore-item-web {
  min-width: 96px;
  display: flex;
  align-items: flex-end;
}

.location-meta-row-web {
  align-items: end;
}

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

.lang-name-row-web {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
}

.submit-button-web {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 6px;
}

.copy-modal-web {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.copy-modal-content {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.copy-modal-title {
  font: 700 var(--admin-page-subtitle-size)/var(--admin-page-subtitle-line-height) "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.copy-days-list {
  display: grid;
  gap: 8px;
  max-height: 40vh;
  overflow: auto;
}

.copy-day-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.copy-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

#copyModal .hours-copy-modal-btn,
#copyModal .hours-copy-modal-btn:hover,
#copyModal .hours-copy-modal-btn:focus-visible {
  border: 0 !important;
  border-radius: 8px;
  box-shadow: none;
}

#copyModal .hours-copy-modal-cancel-btn,
#copyModal .hours-copy-modal-cancel-btn:hover,
#copyModal .hours-copy-modal-cancel-btn:focus-visible {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

#copyModal .hours-copy-modal-confirm-btn,
#copyModal .hours-copy-modal-confirm-btn:hover,
#copyModal .hours-copy-modal-confirm-btn:focus-visible {
  background: #111111 !important;
  color: #ffffff !important;
}

.post-list-page {
  display: grid;
  gap: 12px;
}

.post-list-nav-banner {
  background: #000;
  border-bottom-color: #111827;
}

.user-profile-nav-banner {
  height: 260px;
  border-bottom-color: #111827;
  background:
    radial-gradient(circle at 50% -10%, rgba(96, 165, 250, 0.36), transparent 56%),
    radial-gradient(circle at 16% 72%, rgba(34, 197, 94, 0.2), transparent 44%),
    radial-gradient(circle at 84% 24%, rgba(16, 185, 129, 0.22), transparent 40%),
    linear-gradient(132deg, #020617 0%, #0f172a 46%, #082f49 100%);
}

.place-nav-banner,
.admin-nav-banner {
  background: #000;
  border-bottom-color: #111827;
}

.post-list-nav-banner-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
}

.post-list-nav-banner-title {
  margin: 0;
  color: #f3f4f6;
  font: 700 34px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.legal-doc-page {
  background: #e7e7e7;
}

.legal-doc-main {
  padding-top: 18px;
  padding-bottom: 8px;
}

.legal-doc-card {
  background: #ffffff;
  border: 0;
  border-radius: 20px;
  padding: 26px 28px;
  display: grid;
  gap: 18px;
}

.legal-doc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.legal-doc-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  color: #374151;
  text-decoration: none;
  font: 500 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.legal-doc-tab.is-active {
  border-color: #111827;
  background: #111827;
  color: #f9fafb;
}

.legal-doc-header {
  display: grid;
  gap: 8px;
}

.legal-doc-header h2 {
  margin: 0;
  color: #111827;
  font: 700 30px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.legal-doc-dates {
  margin: 0;
  color: #4b5563;
  font: 400 14px/1.8 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.legal-doc-content {
  display: grid;
  gap: 18px;
  color: #111827;
}

.legal-doc-content h3 {
  margin: 0;
  font: 700 20px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.legal-doc-content p {
  margin: 0;
  font: 400 15px/1.9 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.legal-doc-sublist {
  display: grid;
  gap: 6px;
}

.user-profile-nav-banner-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-profile-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.user-profile-avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 36px rgba(2, 6, 23, 0.42);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.user-profile-avatar,
.user-profile-avatar-fallback {
  width: 100%;
  height: 100%;
}

.user-profile-avatar {
  display: block;
  object-fit: cover;
}

.user-profile-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  font: 700 44px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-transform: uppercase;
}

.user-profile-name {
  margin: 0;
  color: #f8fafc;
  font: 700 36px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-shadow: 0 8px 20px rgba(2, 6, 23, 0.44);
}

.user-profile-meta {
  margin: 0;
  color: rgba(226, 232, 240, 0.92);
  font: 400 14px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.user-profile-empty {
  grid-column: 1 / -1;
  min-height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
}

@keyframes me-page-gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.me-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background-color: #f3f9ff;
  background-image:
    radial-gradient(118% 86% at 10% 100%, rgba(56, 189, 248, 0.28) 0%, rgba(56, 189, 248, 0) 70%),
    radial-gradient(110% 80% at 98% -8%, rgba(251, 146, 60, 0.24) 0%, rgba(251, 146, 60, 0) 68%),
    radial-gradient(94% 72% at 60% 14%, rgba(45, 212, 191, 0.22) 0%, rgba(45, 212, 191, 0) 72%);
  background-repeat: no-repeat;
  background-size: cover;
}

.me-page::before,
.me-page::after {
  content: "";
  position: fixed;
  inset: -8vh -6vw;
  pointer-events: none;
  z-index: -1;
}

.me-page::before {
  background:
    radial-gradient(56% 52% at 18% 14%, rgba(251, 146, 60, 0.48) 0%, rgba(251, 146, 60, 0.08) 56%, rgba(251, 146, 60, 0) 72%),
    radial-gradient(62% 58% at 70% 24%, rgba(45, 212, 191, 0.5) 0%, rgba(45, 212, 191, 0.1) 58%, rgba(45, 212, 191, 0) 76%),
    radial-gradient(60% 54% at 86% 76%, rgba(56, 189, 248, 0.5) 0%, rgba(56, 189, 248, 0.06) 60%, rgba(56, 189, 248, 0) 78%),
    radial-gradient(48% 42% at 34% 82%, rgba(14, 165, 233, 0.32) 0%, rgba(14, 165, 233, 0) 74%);
  filter: blur(32px) saturate(108%);
  opacity: 0.9;
}

.me-page::after {
  background:
    radial-gradient(46% 40% at 14% 78%, rgba(56, 189, 248, 0.42) 0%, rgba(56, 189, 248, 0) 76%),
    radial-gradient(52% 45% at 84% 10%, rgba(251, 146, 60, 0.36) 0%, rgba(251, 146, 60, 0) 74%),
    radial-gradient(44% 40% at 56% 88%, rgba(45, 212, 191, 0.34) 0%, rgba(45, 212, 191, 0) 72%);
  filter: blur(44px) saturate(104%);
  opacity: 0.7;
}

.me-page .user-profile-nav-banner {
  height: 286px;
  background: transparent;
  border-bottom-color: transparent;
}

.me-page.home-index-page .nav-bar {
  position: sticky;
  background: rgba(15, 15, 16, 0.30);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(138%);
  -webkit-backdrop-filter: blur(14px) saturate(138%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.me-page .user-profile-nav-banner-inner {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 10px;
}

.me-page .me-avatar-stage {
  width: 100%;
  min-width: 0;
  min-height: 208px;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: var(--me-post-radius, 18px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 18px 22px;
}

.me-page .me-avatar-stage .user-profile-hero {
  order: -1;
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-items: unset;
  gap: 18px;
  text-align: left;
}

.me-page .me-pro-badges-panel {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 168px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
}

.me-page .me-pro-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.me-page .me-pro-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.35);
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  color: #9a3412;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.me-page .me-pro-badges-empty {
  margin: 0;
  color: #64748b;
  font: 500 14px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.me-page .me-profile-name {
  margin: 0;
  max-width: 160px;
  color: #111827;
  font: 700 22px/1.25 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  text-shadow: none;
}

.me-page .site-footer {
  margin-top: 0;
  background: transparent;
  border-top: 0;
}

.me-page .user-profile-avatar-wrap {
  width: 124px;
  height: 124px;
  border: 1px solid #000000;
  box-shadow: none;
  background: rgba(98, 124, 156, 0.56);
}

.me-page .user-profile-avatar-fallback {
  font-size: 50px;
}

.me-page .me-content-page {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding-top: 0;
}

.me-tab-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 52px;
}

.me-tab-shell::before {
  content: none;
  display: none;
}

.me-flat-tabs {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  z-index: 3;
}

.me-flat-tab {
  min-width: 132px;
  height: 52px;
  border: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-radius: var(--me-post-radius, 18px) var(--me-post-radius, 18px) 0 0;
  padding: 0 16px;
  background: #ffffff;
  color: #4b5563;
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-h3);
  cursor: pointer;
  box-shadow: none;
  position: relative;
  text-shadow: none;
}

.me-flat-tab[data-tab="favorites"] {
  margin-right: 0;
}

.me-flat-tab[data-tab="reviews"],
.me-flat-tab[data-tab="explores"],
.me-flat-tab[data-tab="settings"] {
  margin-left: 0;
}

.me-flat-tab + .me-flat-tab {
  margin-left: 8px;
}

.me-flat-tab.is-active[data-tab="favorites"] {
  background: #ffffff;
  color: #030712;
  border-color: #000000;
  border-bottom-color: transparent;
  z-index: 5;
}

.me-flat-tab.is-active[data-tab="reviews"],
.me-flat-tab.is-active[data-tab="explores"],
.me-flat-tab.is-active[data-tab="settings"] {
  background: #ffffff;
  color: #030712;
  border-color: #000000;
  border-bottom-color: transparent;
  z-index: 5;
}

.me-flat-tab:not(.is-active) {
  background: #ffffff;
  color: #4b5563;
  z-index: 2;
}

.me-flat-tab.is-active::after {
  content: none;
  display: none;
}

.me-flat-tab:hover,
.me-flat-tab:focus-visible {
  color: #030712;
}

.me-flat-tabs::after {
  content: none;
  display: none;
}

.me-flat-board {
  position: relative;
  background: #ffffff;
  border: 1px solid #000000;
  border-top: 1px solid #000000;
  margin-top: -1px;
  border-radius: 0 var(--me-post-radius, 18px) var(--me-post-radius, 18px) var(--me-post-radius, 18px);
  padding: 20px 22px 18px;
  min-height: 520px;
}

.me-flat-board::before {
  content: none;
  display: none;
}

.me-page {
  --me-top-control-height: 42px;
  --me-top-control-border: rgba(15, 23, 42, 0.18);
  --me-top-control-font: 700 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  --me-post-radius: 18px;
}

.me-review-tier-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  justify-self: end;
  margin: 0 0 0 auto;
  padding: 2px;
  border: 1px solid var(--me-top-control-border);
  border-radius: 999px;
  background: #ffffff;
}

#reviewsPanel.post-list-main {
  gap: 10px;
}

.me-reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--me-top-control-height);
}

.me-review-count {
  margin-top: 0;
  font: var(--me-top-control-font);
  line-height: 1;
  color: #0f172a;
}

.me-review-tier-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 122px;
  height: calc(var(--me-top-control-height) - 6px);
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font: var(--me-top-control-font);
  cursor: pointer;
}

.me-review-tier-tab.is-active {
  background: #0f172a;
  color: #ffffff;
}

.me-review-tier-count {
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: inherit;
  font: 700 11px/18px "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: center;
}

.me-review-tier-tab.is-active .me-review-tier-count {
  background: rgba(255, 255, 255, 0.2);
}

.me-flat-board .post-list-main {
  gap: 16px;
}

.me-flat-board .post-feed {
  gap: 14px;
}

.me-page #reviewsPanel .post-feed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.me-page #reviewsPanel .user-profile-empty {
  grid-column: 1 / -1;
}

.me-page #reviewsPanel .me-explore-card {
  border-radius: var(--me-post-radius, 18px);
  border: 1px solid #000000;
  box-shadow: none;
  background: #d1d5db;
  overflow: hidden;
}

.me-page #reviewsPanel .me-explore-cover-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  overflow: hidden;
  background: #e5e7eb;
}

.me-page #reviewsPanel .me-explore-cover-link::after {
  content: none;
}

.me-page #reviewsPanel .me-explore-cover,
.me-page #reviewsPanel .me-explore-cover-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.me-page #reviewsPanel .me-explore-cover {
  object-fit: cover;
  display: block;
}

.me-page #reviewsPanel .me-explore-cover-placeholder {
  background: linear-gradient(145deg, #d4d4d8 0%, #f4f4f5 100%);
  display: block;
}

.me-page #reviewsPanel .me-explore-overlay {
  position: absolute;
  left: 10px;
  right: auto;
  bottom: 10px;
  top: auto;
  transform: none;
  z-index: 2;
  width: calc(100% - 20px);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 16, 0.24);
  backdrop-filter: blur(8px) saturate(128%);
  -webkit-backdrop-filter: blur(8px) saturate(128%);
  display: grid;
  gap: 6px;
  text-align: left;
}

.me-page #reviewsPanel .me-explore-line {
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 600 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.34);
}

.me-page #reviewsPanel .me-explore-comment {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.me-page #reviewsPanel .me-explore-item-name {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.24;
}

.me-page #reviewsPanel .me-explore-score-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.me-page #reviewsPanel .me-explore-score-label {
  color: #f8fafc;
  font: 800 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.34);
}

.me-page #reviewsPanel .me-explore-score-badge {
  width: 32px;
  min-width: 32px;
  height: 32px;
}

.me-page #reviewsPanel .me-explore-place-bottom {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px) saturate(128%);
  -webkit-backdrop-filter: blur(8px) saturate(128%);
  color: rgba(248, 250, 252, 0.96);
  font: 700 13px/1.25 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  max-width: calc(100% - 20px);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .me-page #reviewsPanel .me-explore-overlay {
    background: rgba(15, 15, 16, 0.40);
  }

  .me-page #reviewsPanel .me-explore-place-bottom {
    background: rgba(15, 23, 42, 0.55);
  }
}

.me-flat-board .post-list-more {
  padding-bottom: 6px;
}

.me-favorites-panel .place-page-layout {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 16px;
}

.me-favorites-panel .place-filter-sidebar {
  position: sticky;
  top: calc(var(--top-meta-h, 0px) + var(--mast-h, 0px) + var(--top-nav-h, 0px) + 12px);
}

.me-favorites-panel .place-sort-wrap {
  margin-left: auto;
  min-width: 0;
  width: auto;
  max-width: 220px;
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}

.me-favorites-panel .place-sort-select {
  width: auto;
  min-width: 176px;
  max-width: 220px;
  height: var(--me-top-control-height);
  border-radius: 999px;
  border: 1px solid var(--me-top-control-border);
  background: #ffffff;
  color: #111827;
  font: var(--me-top-control-font);
  padding: 0 38px 0 16px;
}

.me-favorites-panel .place-list-toolbar .place-count {
  font: var(--me-top-control-font);
  color: #111827;
}

.me-settings-panel {
  padding-top: 2px;
}

.me-settings-layout {
  min-height: 380px;
}

.me-settings-side {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.me-settings-side-item {
  width: 100%;
  height: 44px;
  border: 1px solid #000000;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  font: 700 16px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: default;
}

.me-settings-main {
  border: 1px solid #d1d5db;
  border-radius: var(--me-post-radius, 18px);
  background: #ffffff;
  padding: 20px;
  display: grid;
  gap: 18px;
}

.me-settings-title {
  margin: 0;
  color: #0f172a;
  font: 800 24px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.me-settings-section {
  display: grid;
  gap: 10px;
}

.me-settings-label {
  margin: 0;
  color: #111827;
  font: 700 16px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.me-settings-avatar-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.me-settings-avatar-preview-wrap {
  width: 88px;
  height: 88px;
  border: 1px solid #000000;
  border-radius: 999px;
  overflow: hidden;
  background: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
}

.me-settings-avatar-preview {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.me-settings-avatar-fallback {
  color: #111827;
  font: 800 34px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.me-settings-input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #ffffff;
  color: #111827;
  font: 600 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding: 0 14px;
}

.me-settings-input::placeholder {
  color: #9ca3af;
}

.me-settings-nickname-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.me-settings-nickname-input {
  min-width: 0;
}

.me-settings-nickname-btn {
  width: 132px;
  min-width: 132px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.24);
  background: #efefef;
  font: 700 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding: 0 16px;
}

.me-settings-avatar-btn {
  width: 132px;
  min-width: 132px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.24);
  background: #efefef;
  color: #111827;
  font: 700 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding: 0 18px;
}

.me-settings-nickname-btn:hover,
.me-settings-nickname-btn:focus-visible,
.me-settings-avatar-btn:hover,
.me-settings-avatar-btn:focus-visible {
  background: #efefef;
}

.me-settings-avatar-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.me-settings-avatar-delete-btn {
  color: #b91c1c;
}

.me-settings-section + .me-settings-section {
  margin-top: 14px;
}

.me-settings-tip-section {
  gap: 0;
}

.me-settings-tip {
  margin: 0;
  color: #111827;
  text-align: center;
  font: 700 18px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.me-settings-qrcode-section {
  justify-items: center;
}

.me-settings-qrcode {
  display: block;
  width: min(100%, 350px);
  max-width: 350px;
  height: auto;
  margin: 0 auto;
}

.me-settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.me-settings-actions .btn {
  min-width: 120px;
  border-radius: 999px;
}

.me-nickname-modal-content {
  width: min(520px, calc(100vw - 24px));
  gap: 14px;
}

.me-nickname-modal-input {
  width: 100%;
}

.me-nickname-modal-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.me-nickname-modal-actions .btn {
  min-width: 108px;
}

.favorite-place-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1240px) minmax(220px, 300px);
  gap: 10px 14px;
  align-items: start;
  justify-content: start;
}

.favorite-place-entry + .favorite-place-entry {
  margin-top: 18px;
  padding-top: 24px;
}

.favorite-place-entry + .favorite-place-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
  pointer-events: none;
}

.favorite-place-entry + .favorite-place-entry::after {
  content: none;
}

.me-favorites-panel .place-list .favorite-place-card {
  grid-column: 1;
  width: 100%;
  max-width: 1240px;
  padding: 16px !important;
  border: 1px solid #000000 !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  cursor: pointer;
}

.me-favorites-panel .place-list .favorite-place-card:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.me-favorites-panel .place-list .favorite-place-card .cover-left {
  border-radius: 20px !important;
}

.favorite-place-card .card-2col {
  min-height: 220px;
}

.favorite-side-actions {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: min(300px, 100%);
  height: 100%;
  min-height: 220px;
  align-content: start;
}

.favorite-edit-note-btn,
.favorite-remove-btn {
  width: 100%;
  border-radius: 999px;
}

.favorite-edit-note-btn {
  grid-column: 1;
}

.btn.ghost.favorite-edit-note-btn--empty,
.btn.ghost.favorite-edit-note-btn--empty:visited,
.btn.ghost.favorite-edit-note-btn--empty:hover,
.btn.ghost.favorite-edit-note-btn--empty:focus-visible,
.btn.ghost.favorite-edit-note-btn--empty:active {
  border-color: transparent !important;
  background: #111111;
  color: #ffffff !important;
}

.btn.ghost.favorite-edit-note-btn--filled,
.btn.ghost.favorite-edit-note-btn--filled:visited,
.btn.ghost.favorite-edit-note-btn--filled:hover,
.btn.ghost.favorite-edit-note-btn--filled:focus-visible,
.btn.ghost.favorite-edit-note-btn--filled:active {
  border-color: transparent !important;
  background: #efefef;
  color: #111111 !important;
}

.favorite-remove-btn {
  grid-column: 2;
  border-color: transparent;
  background: #efefef;
  color: #b91c1c;
}

.btn.ghost.favorite-remove-btn,
.btn.ghost.favorite-remove-btn:visited,
.btn.ghost.favorite-remove-btn:hover,
.btn.ghost.favorite-remove-btn:focus-visible,
.btn.ghost.favorite-remove-btn:active {
  border-color: transparent !important;
  background: #efefef;
  color: #b91c1c !important;
}

.favorite-note-trigger-btn {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  text-align: left;
}

.favorite-side-actions--has-note {
  grid-template-rows: minmax(0, 1fr) auto;
}

.favorite-side-actions--has-note .favorite-note-trigger-btn {
  grid-row: 1;
}

.favorite-side-actions--has-note .favorite-edit-note-btn,
.favorite-side-actions--has-note .favorite-remove-btn {
  grid-row: 2;
}

.favorite-note-trigger-btn--text {
  border: 0;
  background: linear-gradient(180deg, #fffbe2 0%, #fff6cc 100%);
  color: #111827;
  padding: 14px;
  min-height: 0;
  height: 100%;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  font: 500 14px/1.7 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: pre-wrap;
  word-break: break-word;
  display: block;
}

.favorite-note-input {
  min-height: 86px;
  resize: vertical;
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.6;
}

.favorite-note-time,
.favorite-note-hint {
  color: #64748b;
  font: 500 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.favorite-note-modal-content {
  width: min(640px, calc(100vw - 24px));
  gap: 14px;
}

.favorite-note-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.favorite-note-modal-input {
  min-height: 220px;
}

.favorite-note-modal-count {
  color: #64748b;
  font: 500 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: right;
}

.me-page .pager-info.place-page-info {
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: 600;
  color: var(--ink);
}

.favorite-note-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.modal-open {
  overflow: hidden;
}

.me-flat-board .user-profile-empty {
  min-height: 260px;
  border: 0;
  border-radius: var(--me-post-radius, 18px);
  background: #ffffff;
  color: #8f95a1;
}

.me-entity-card .post-feed-main {
  gap: 6px;
}

.me-entity-sub {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.me-entity-subline {
  display: inline-block;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .me-page .user-profile-nav-banner-inner {
    padding-top: 8px;
  }

  .me-page .user-profile-nav-banner {
    height: 246px;
  }

  .me-page .me-avatar-stage {
    width: 100%;
    min-width: 0;
    min-height: 184px;
    gap: 18px;
    padding: 14px 16px;
  }

  .me-page .me-pro-badges-panel {
    min-height: 144px;
    padding: 12px 14px;
  }

  .me-page .me-pro-badge {
    height: 28px;
    padding: 0 10px;
    font-size: 12px;
  }

  .me-page .user-profile-avatar-wrap {
    width: 96px;
    height: 96px;
  }

  .me-page .user-profile-avatar-fallback {
    font-size: 40px;
  }

  .me-page .me-profile-name {
    max-width: 132px;
    font-size: 18px;
  }

  .me-flat-tab {
    min-width: 116px;
    height: 48px;
    font-size: var(--font-size-h3);
    padding: 0 10px;
  }

  .me-tab-shell {
    width: 100%;
    margin: 0;
    padding-top: 48px;
  }

  .me-tab-shell::before {
    top: 47px;
  }

  .me-flat-board {
    min-height: 420px;
    padding: 18px 16px 14px;
  }

  .me-review-tier-tab {
    min-width: 124px;
    padding: 0 12px;
    font-size: 13px;
  }

  .me-page #reviewsPanel .post-feed {
    gap: 10px;
  }

  .me-reviews-toolbar {
    gap: 10px;
  }

  .me-page #reviewsPanel .me-explore-overlay {
    width: calc(100% - 16px);
    padding: 10px 11px;
    border-radius: 14px;
    left: 8px;
    bottom: 8px;
  }

  .me-page #reviewsPanel .me-explore-line {
    font-size: 12px;
  }

  .me-page #reviewsPanel .me-explore-item-name {
    font-size: 16px;
  }

  .me-page #reviewsPanel .me-explore-score-label {
    font-size: 12px;
  }

  .me-page #reviewsPanel .me-explore-score-badge {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .me-page #reviewsPanel .me-explore-place-bottom {
    top: 8px;
    right: 8px;
    left: auto;
    bottom: auto;
    font-size: 12px;
    max-width: calc(100% - 16px);
  }

  .me-favorites-panel .place-page-layout {
    grid-template-columns: 1fr;
  }

  .me-favorites-panel .place-filter-sidebar {
    position: static;
    top: auto;
  }

  .me-settings-layout {
    min-height: 0;
  }

  .me-settings-side {
    padding: 0;
  }

  .me-settings-main {
    padding: 16px;
    gap: 14px;
  }

  .me-settings-nickname-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .me-settings-avatar-row {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }

  .me-settings-avatar-preview-wrap {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 768px) {
  .me-page .user-profile-nav-banner-inner {
    padding-top: 6px;
  }

  .me-page .user-profile-nav-banner {
    height: 190px;
  }

  .me-page .me-avatar-stage {
    height: auto;
    min-height: 150px;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--me-post-radius, 14px);
  }

  .me-page .me-avatar-stage .user-profile-hero {
    flex-basis: 180px;
    gap: 12px;
  }

  .me-page .me-pro-badges-panel {
    min-height: 116px;
    padding: 8px 10px;
  }

  .me-page .me-pro-badge {
    height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .me-page .me-pro-badges-empty {
    font-size: 12px;
  }

  .me-page .user-profile-avatar-wrap {
    width: 72px;
    height: 72px;
  }

  .me-page .user-profile-avatar-fallback {
    font-size: 30px;
  }

  .me-page .me-profile-name {
    max-width: 92px;
    font-size: 14px;
  }

  .me-page .me-content-page {
    margin-top: -30px;
    padding: 0 14px 16px;
  }

  .me-flat-tabs {
    position: static;
    transform: none;
    width: 100%;
    gap: 8px;
    margin-bottom: 12px;
  }

  .me-flat-tabs::after {
    content: none;
    display: none;
  }

  .me-tab-shell {
    padding-top: 0;
  }

  .me-tab-shell::before {
    content: none;
    display: none;
  }

  .me-flat-tab {
    flex: 1;
    min-width: 0;
    height: 38px;
    border-radius: var(--me-post-radius, 14px) var(--me-post-radius, 14px) 0 0;
    padding: 0 8px;
    font-size: var(--font-size-h3);
  }

  .me-flat-board {
    border-top: 1px solid #000000;
    margin-top: 0;
    border-radius: 0 var(--me-post-radius, 14px) var(--me-post-radius, 14px) var(--me-post-radius, 14px);
    padding: 14px;
    min-height: 240px;
  }

  .me-flat-board .user-profile-empty {
    min-height: 180px;
  }

  .me-entity-subline {
    max-width: 58vw;
  }

  .me-review-tier-tabs {
    width: 100%;
    justify-self: stretch;
    margin: 0;
  }

  .me-reviews-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .me-review-count {
    margin-right: auto;
  }

  .me-review-tier-tab {
    flex: 1;
    min-width: 0;
    padding: 0 8px;
  }

  .me-page #reviewsPanel .post-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .me-page #reviewsPanel .me-explore-card {
    border-radius: var(--me-post-radius, 14px);
  }

  .me-page #reviewsPanel .me-explore-overlay {
    width: calc(100% - 12px);
    padding: 7px 8px;
    border-radius: 10px;
    gap: 3px;
    left: 6px;
    bottom: 6px;
  }

  .me-page #reviewsPanel .me-explore-line {
    font-size: 10px;
    line-height: 1.3;
  }

  .me-page #reviewsPanel .me-explore-item-name {
    font-size: 14px;
  }

  .me-page #reviewsPanel .me-explore-score-label {
    font-size: 10px;
  }

  .me-page #reviewsPanel .me-explore-score-badge {
    width: 24px;
    min-width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .me-page #reviewsPanel .me-explore-place-bottom {
    top: 6px;
    right: 6px;
    left: auto;
    bottom: auto;
    padding: 3px 8px;
    font-size: 10px;
    max-width: calc(100% - 12px);
  }

  .favorite-place-entry {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .favorite-side-actions,
  .favorite-edit-note-btn,
  .favorite-remove-btn,
  .favorite-note-trigger-btn {
    grid-column: 1;
    grid-row: auto;
  }

  .favorite-side-actions {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }

  .favorite-side-actions--has-note .favorite-note-trigger-btn,
  .favorite-side-actions--has-note .favorite-edit-note-btn,
  .favorite-side-actions--has-note .favorite-remove-btn {
    grid-row: auto;
  }

  .favorite-place-entry + .favorite-place-entry {
    margin-top: 14px;
    padding-top: 18px;
  }

  .favorite-place-entry + .favorite-place-entry::before {
    left: 0;
    right: 0;
  }

  .favorite-place-entry + .favorite-place-entry::after {
    left: 6%;
    right: 6%;
  }

  .me-settings-side-item {
    height: 40px;
    font-size: 14px;
  }

  .me-settings-main {
    padding: 14px;
    gap: 12px;
  }

  .me-settings-title {
    font-size: 18px;
  }

  .me-settings-label {
    font-size: 14px;
  }

  .me-settings-avatar-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }

  .me-settings-nickname-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .me-settings-nickname-btn {
    width: auto;
    min-width: 0;
  }

  .me-settings-avatar-btn {
    width: auto;
    min-width: 0;
  }

  .me-settings-avatar-btns {
    width: 100%;
    justify-content: flex-start;
  }

  .me-settings-avatar-preview-wrap {
    width: 68px;
    height: 68px;
  }

  .me-settings-tip {
    font-size: 15px;
  }

  .me-settings-qrcode {
    width: min(100%, 350px);
  }

  .me-settings-avatar-fallback {
    font-size: 26px;
  }

  .me-settings-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .me-settings-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .me-nickname-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .me-nickname-modal-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .favorite-note-trigger-btn {
    min-width: 0;
  }

  .favorite-note-modal-head,
  .favorite-note-modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .favorite-note-modal-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .me-page {
    animation: none;
    background-position: 50% 50%;
  }

  .login-page {
    animation: none;
    background-position: 50% 50%;
  }

  .login-locale-track {
    animation: none;
  }
}

.post-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.post-list-main {
  display: grid;
  gap: 12px;
}

.post-list-more {
  display: flex;
  justify-content: center;
}

.post-list-more .btn {
  border-radius: 999px;
  border: 0 !important;
  background: transparent !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  font-weight: var(--font-weight-body) !important;
}

.post-list-more .btn:hover,
.post-list-more .btn:focus-visible,
.post-list-more .btn:disabled {
  border: 0 !important;
  background: transparent !important;
  color: #9ca3af !important;
}

.list-toolbar {
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

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

.post-feed-card {
  display: block;
  position: relative;
  background: transparent;
  border: 0;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
}

.post-list-page .post-feed-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.post-feed-cover-link {
  display: block;
}

.post-feed-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 0;
  display: block;
}

.post-feed-cover-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #e5e7eb;
  display: block;
}

.post-feed-main {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 56%, rgba(15, 23, 42, 0.92) 100%);
  display: grid;
  align-content: start;
  gap: 8px;
  z-index: 1;
}

.post-list-page .post-feed-main {
  background: none;
  z-index: 2;
}

.post-feed-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-weight: var(--font-weight-caption);
  color: rgba(226, 232, 240, 0.88);
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.view-count-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-count-icon {
  width: 12px;
  height: 12px;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.post-feed-main h2 {
  --post-feed-title-line-height: var(--line-height-h2);
  margin: 0;
  font-size: var(--font-size-h2);
  line-height: var(--post-feed-title-line-height);
  font-weight: var(--font-weight-h2);
  min-height: calc(2 * var(--post-feed-title-line-height) * 1em);
  color: #f8fafc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.post-feed-main h2 .post-link {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: auto;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.post-list-page .post-feed-main h2 .post-link {
  font-weight: 700;
}

.post-feed-main h2 .post-link::after {
  display: none;
}

.post-feed-main h2 .post-link:hover,
.post-feed-main h2 .post-link:focus-visible {
  text-decoration: none;
}

.post-feed-main h2 .post-link:hover::after,
.post-feed-main h2 .post-link:focus-visible::after {
  transform: none;
}

.single-post-nav-bar {
  top: 0;
}

.single-read-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 62px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 21;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.single-read-progress.is-active {
  opacity: 1;
  transform: translateY(0);
}

.single-read-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--category-accent, #22c55e);
  transition: width 0.08s linear;
}

.single-post-nav-bar .single-post-nav-right {
  width: auto;
  order: 0;
  margin-left: auto;
}

.single-post-nav-right {
  gap: 8px;
}

.single-post-page {
  max-width: none;
  padding: 0;
  margin-bottom: 64px;
  display: grid;
  gap: 20px;
}

.single-post-hero {
  position: relative;
  min-height: clamp(220px, 30vh, 340px);
  width: min(1196px, calc(100% - 44px));
  margin: 20px auto 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #000000;
  color: #f8fafc;
}

.single-post-hero-media {
  position: absolute;
  inset: -6% 0 0 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.single-post-hero-fallback {
  position: absolute;
  inset: 0;
  background: #000000;
}

.single-post-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18) 0%, rgba(2, 6, 23, 0.44) 54%, rgba(2, 6, 23, 0.76) 100%);
}

.single-post-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-align: left;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  --single-hero-content-pad: 20px;
  --single-hero-title-height: 64px;
  --single-hero-title-gap: 2px;
}

.single-post-hero-category {
  position: absolute;
  left: var(--single-hero-content-pad);
  bottom: calc(50% + (var(--single-hero-title-height) / 2) + var(--single-hero-title-gap));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--category-accent, #f8fafc);
  font: 400 16px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.single-post-hero-title {
  position: absolute;
  top: 50%;
  left: var(--single-hero-content-pad);
  right: var(--single-hero-content-pad);
  display: flex;
  align-items: center;
  margin: 0;
  max-width: min(900px, 100%);
  height: var(--single-hero-title-height);
  min-height: var(--single-hero-title-height);
  font-size: var(--font-size-h1);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 600;
  transform: translateY(-50%);
}

.single-post-hero-title-text {
  display: block;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-2px);
}

.single-post-hero-meta {
  position: absolute;
  left: var(--single-hero-content-pad);
  top: calc(50% + (var(--single-hero-title-height) / 2) + var(--single-hero-title-gap));
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 0;
  flex-wrap: nowrap;
  color: rgba(241, 245, 249, 0.92);
  font: 500 14px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-hero-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.single-post-hero-author-link {
  color: inherit;
  text-decoration: none;
}

.single-post-hero-author-link:hover .single-post-hero-author-name,
.single-post-hero-author-link:focus-visible .single-post-hero-author-name {
  text-decoration: none;
}

.single-post-hero-author-avatar,
.single-post-hero-author-avatar-fallback {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}

.single-post-hero-author-avatar {
  object-fit: cover;
}

.single-post-hero-author-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-hero-author-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-post-hero-date {
  white-space: nowrap;
}

.single-post-hero-views {
  white-space: nowrap;
  margin-left: auto;
}

.single-post-hero-edit-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(71, 85, 105, 0.56);
  background: rgba(229, 231, 235, 0.94);
  color: #374151;
  font: 600 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.single-post-hero-edit-btn:hover,
.single-post-hero-edit-btn:focus-visible {
  background: #e5e7eb;
  border-color: rgba(55, 65, 81, 0.72);
  color: #1f2937;
}

.single-post-body-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: start;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.single-post-article {
  --single-post-section-x-padding: 20px;
  padding: 0;
  display: grid;
  gap: 16px;
  border: 0;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.single-post-article .card {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-post-loading-block {
  min-height: 156px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
}

.single-post-loading {
  display: block;
}

.single-post-image-list {
  --single-post-image-edge-mask: var(--single-post-section-x-padding, 20px);
  position: relative;
  padding: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-post-image-list::before,
.single-post-image-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: var(--single-post-image-edge-mask);
  background: #fff;
  pointer-events: none;
}

.single-post-image-list::before {
  left: 0;
}

.single-post-image-list::after {
  right: 0;
}

.single-post-image-source-card {
  padding: 0 20px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-post-image-source-card--hero {
  padding-top: 10px;
}

.single-post-image-viewport {
  position: relative;
  width: min(600px, 100%);
  max-width: 100%;
  overflow: visible;
  margin: 0 auto;
}

.single-post-image-board {
  width: max-content;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 0;
  overflow: visible;
  margin: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.single-post-image-frame {
  flex: 0 0 min(600px, calc(100vw - 48px));
  min-width: 0;
  display: block;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.single-post-image-list--single .single-post-image-frame {
  flex-basis: min(600px, calc(100vw - 48px));
}

.single-post-image {
  width: 100%;
  height: auto;
  max-height: 760px;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.22s ease;
  will-change: transform;
}

.single-post-image-source {
  width: min(600px, 100%);
  margin: 16px auto 0;
  color: #9ca3af;
  text-align: center;
  word-break: break-word;
  font: 400 12px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-image-carousel-controls {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 5;
  pointer-events: none;
}

.single-post-image-carousel-btn {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: opacity 0.18s ease;
}

.single-post-image-carousel-btn[data-single-image-carousel-prev] {
  left: clamp(10px, 3vw, 28px);
}

.single-post-image-carousel-btn[data-single-image-carousel-next] {
  right: clamp(10px, 3vw, 28px);
}

.single-post-image-carousel-btn:hover,
.single-post-image-carousel-btn:focus-visible {
  opacity: 0.92;
  transform: translateY(-50%);
}

.single-post-image-carousel-btn:disabled {
  cursor: not-allowed;
  opacity: 0.28;
  transform: translateY(-50%);
}

.single-post-image-carousel-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: brightness(0);
}

.single-post-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 5, 9, 0.78);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(0.16, 1, 0.3, 1), visibility 260ms linear;
}

.single-post-image-lightbox.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.single-post-image-lightbox.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.single-post-image-lightbox-stage {
  --single-post-lightbox-side-gap: 50px;
  --single-post-lightbox-side-width: min(11vw, 150px);
  --single-post-lightbox-current-left: 50%;
  --single-post-lightbox-current-right: 50%;
  position: relative;
  width: min(96vw, 1400px);
  height: min(88vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.single-post-image-lightbox-stage.is-dragging {
  cursor: grabbing;
}

.single-post-image-lightbox-image {
  position: relative;
  min-width: 0;
  max-width: min(72vw, 940px);
  max-height: min(68vh, 660px);
  width: auto;
  height: auto;
  object-fit: contain;
  backface-visibility: hidden;
  opacity: 0.74;
  transform: translateZ(0) scale(0.78);
  transform-origin: center center;
  transition:
    opacity 460ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-user-drag: none;
  user-select: none;
}

.single-post-image-lightbox-slide.is-active .single-post-image-lightbox-image {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

.single-post-image-lightbox-slide.is-adjacent .single-post-image-lightbox-image {
  opacity: 0.9;
}

.single-post-image-lightbox-slide.is-entering-start .single-post-image-lightbox-image,
.single-post-image-lightbox-slide.is-leaving .single-post-image-lightbox-image {
  opacity: 0.74;
  transform: translateZ(0) scale(0.78);
}

.single-post-image-lightbox.is-swap-animating .single-post-image-lightbox-track,
.single-post-image-lightbox.is-swap-animating .single-post-image-lightbox-side {
  opacity: 0 !important;
  transition: none !important;
}

.single-post-image-lightbox.is-swap-animating .single-post-image-lightbox-image {
  transition: none !important;
}

.single-post-image-lightbox.is-swap-finishing .single-post-image-lightbox-track,
.single-post-image-lightbox.is-swap-finishing .single-post-image-lightbox-side,
.single-post-image-lightbox.is-swap-finishing .single-post-image-lightbox-image {
  transition: none !important;
}

.single-post-image-lightbox-motion-layer {
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  overflow: visible;
}

.single-post-image-lightbox-motion-clone {
  position: absolute;
  display: block;
  object-fit: contain;
  pointer-events: none;
  transform: translateZ(0);
  transform-origin: top left;
  will-change: transform, opacity;
}

.single-post-image-lightbox-motion-clone.is-incoming {
  z-index: 1;
}

.single-post-image-lightbox-motion-clone.is-outgoing {
  z-index: 2;
}

.single-post-image-lightbox-motion-clone.is-side-preview {
  z-index: 0;
  filter: saturate(0.84);
}

.single-post-image-lightbox-track {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  z-index: 4;
}

.single-post-image-lightbox-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px clamp(32px, 5.5vw, 85px) 96px;
  box-sizing: border-box;
  overflow: hidden;
}

.single-post-image-lightbox-side {
  position: absolute;
  top: 50%;
  width: var(--single-post-lightbox-side-width);
  height: min(22vh, 250px);
  object-fit: contain;
  opacity: 0.68;
  filter: saturate(0.84);
  z-index: 7;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 260ms cubic-bezier(0.16, 1, 0.3, 1), transform 260ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.single-post-image-lightbox-prev {
  left: calc(var(--single-post-lightbox-current-left) - var(--single-post-lightbox-side-gap));
  right: auto;
  transform: translate(-100%, -50%);
}

.single-post-image-lightbox-next {
  left: calc(100% - var(--single-post-lightbox-current-right) + var(--single-post-lightbox-side-gap));
  right: auto;
  transform: translateY(-50%);
}

.single-post-image-lightbox-side.is-hidden {
  display: none;
}

.single-post-image-lightbox-prev:hover {
  opacity: 0.8;
  filter: saturate(1);
}

.single-post-image-lightbox-next:hover {
  opacity: 0.8;
  filter: saturate(1);
}

.single-post-image-lightbox-controls {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 8;
}

.single-post-image-lightbox-nav-btn {
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(3, 5, 9, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 220ms ease, background-color 220ms ease;
}

.single-post-image-lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.96);
}

.single-post-image-lightbox-nav-btn:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  transform: none;
}

.single-post-image-lightbox-nav-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  filter: brightness(0);
}

.single-post-text {
  --single-post-copy-line-height: var(--line-height-body);
  padding: 20px var(--single-post-section-x-padding, 20px);
  display: grid;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.single-post-content {
  font-size: var(--font-size-body);
  line-height: var(--single-post-copy-line-height);
  font-weight: var(--font-weight-body);
  color: #2b2f38;
  word-break: break-word;
  width: 100%;
  margin: 0;
}

.single-post-content-rich {
  display: grid;
  gap: 0;
}

.single-post-rich-html {
  line-height: inherit;
}

.single-post-rich-html .post-rich-align-left {
  text-align: left;
}

.single-post-rich-html .post-rich-align-center {
  text-align: center;
}

.single-post-rich-html .post-rich-align-right {
  text-align: right;
}

.single-post-rich-html span.post-rich-align-left,
.single-post-rich-html span.post-rich-align-center,
.single-post-rich-html span.post-rich-align-right {
  display: block;
  width: 100%;
}

.single-post-rich-html p,
.single-post-rich-html h2,
.single-post-rich-html h3,
.single-post-rich-html ul,
.single-post-rich-html ol {
  margin-top: 0;
  margin-bottom: 0;
}

.single-post-rich-html > :last-child {
  margin-bottom: 0;
}

.single-post-rich-html .single-post-rich-spacer {
  min-height: 0;
}

.single-post-rich-html .single-post-rich-spacer > br {
  display: block;
}

.single-post-rich-html u {
  text-underline-offset: 0.12em;
  text-decoration-thickness: 0.05em;
}

.single-post-rich-html h2 {
  font-size: 1.35em;
  line-height: 1.35;
}

.single-post-rich-html h3 {
  font-size: 1.18em;
  line-height: 1.4;
}

.single-post-rich-image {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #f3f4f6;
}

.single-post-rich-image-wrap {
  width: min(600px, 100%);
  margin: 0;
}

.single-post-rich-image-wrap.post-rich-align-left {
  margin-left: 0;
  margin-right: auto;
}

.single-post-rich-image-wrap.post-rich-align-center {
  margin-left: auto;
  margin-right: auto;
}

.single-post-rich-image-wrap.post-rich-align-right {
  margin-left: auto;
  margin-right: 0;
}

.single-post-place-card-list {
  display: grid;
  gap: 0;
  width: min(600px, calc(100% - 40px));
  max-width: 100%;
  justify-self: center;
  margin: 32px auto 4px;
  padding: 0;
  border: 1px solid #000;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.single-post-place-card-label {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  justify-self: stretch;
  box-sizing: border-box;
  padding: 0 18px;
  border-radius: 0;
  background: #111;
  color: #fff;
  font: 800 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0;
}

.single-post-rich-place-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  width: min(600px, 100%);
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 150px;
  min-height: 150px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.single-post-rich-place-card.post-rich-align-left {
  margin-left: 0;
  margin-right: auto;
}

.single-post-rich-place-card.post-rich-align-center {
  margin-left: auto;
  margin-right: auto;
}

.single-post-rich-place-card.post-rich-align-right {
  margin-left: auto;
  margin-right: 0;
}

.single-post-place-card-list .single-post-rich-place-card {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.single-post-place-card-list .single-post-rich-place-card + .single-post-rich-place-card {
  border-top: 1px solid #d1d5db;
}

.single-post-place-card-list .single-post-rich-place-card::after {
  display: none;
}

.single-post-rich-place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid #d1d5db;
  border-radius: inherit;
  pointer-events: none;
}

.single-post-rich-place-cover-wrap {
  display: block;
  width: 150px;
  height: 150px;
  min-width: 0;
  min-height: 150px;
  background: #f3f4f6;
}

.single-post-rich-place-cover,
.single-post-rich-place-cover-empty {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  background: #f3f4f6;
}

.single-post-place-card-list .single-post-rich-place-cover-wrap {
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
}

.single-post-rich-place-main {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name score"
    "foreign-name score"
    "sub score"
    "address score";
  align-content: center;
  align-items: center;
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px 20px;
  border: 0;
  border-left: 1px solid #e5e7eb;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.single-post-rich-place-main--no-foreign {
  grid-template-areas:
    "name score"
    "sub score"
    "address score";
}

.single-post-rich-place-name {
  grid-area: name;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: anywhere;
  font: 800 18px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
}

.single-post-rich-place-score {
  grid-area: score;
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  aspect-ratio: 1 / 1;
  min-width: 0;
  width: 70px;
  min-height: 70px;
  max-height: 70px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #9efbd3 0%, #57e9f2 50%, #45d4fb 100%);
  color: #111;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  text-align: center;
  white-space: nowrap;
}

.single-post-rich-place-score-label {
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  font-size: 9px;
  line-height: 1.1;
  color: #111;
}

.single-post-rich-place-score-value {
  padding: 0;
  color: #111;
  font: 800 20px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-rich-place-foreign-name,
.single-post-rich-place-sub,
.single-post-rich-place-address {
  min-width: 0;
  font: 500 13px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}

.single-post-rich-place-foreign-name {
  grid-area: foreign-name;
  color: #111827;
}

.single-post-rich-place-sub,
.single-post-rich-place-address {
  color: #6b7280;
}

.single-post-rich-place-sub {
  grid-area: sub;
}

.single-post-rich-place-address {
  grid-area: address;
}

@media (max-width: 640px) {
  .single-post-rich-place-card {
    grid-template-columns: 112px minmax(0, 1fr);
    width: 100%;
    min-height: 128px;
  }

  .single-post-rich-place-cover-wrap {
    min-height: 128px;
  }

  .single-post-rich-place-main {
    column-gap: 10px;
    padding: 12px;
  }

  .single-post-rich-place-name {
    font-size: 15px;
  }

  .single-post-rich-place-score {
    width: 50px;
    min-height: 50px;
    max-height: 50px;
  }

  .single-post-rich-place-score-label {
    font-size: 8px;
  }

  .single-post-rich-place-score-value {
    font-size: 16px;
  }

  .single-post-rich-place-foreign-name,
  .single-post-rich-place-sub,
  .single-post-rich-place-address {
    font-size: 12px;
  }
}

.single-post-section-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.single-post-release {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.single-post-article .single-post-release.card {
  width: auto;
  margin-left: 20px;
  margin-right: 20px;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  background: #ffffff;
}

.single-post-release-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #111827;
  padding: 10px 0;
}

.single-post-release-row + .single-post-release-row {
  border-top: 1px solid #e5e7eb;
}

.single-post-release-row + .single-post-release-block,
.single-post-release-block + .single-post-release-block {
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
}

.single-post-release-row > span,
.single-post-release-block > span {
  color: #6b7280;
  font: 700 var(--font-size-body) / var(--line-height-body) "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-release-row > strong {
  font: var(--font-weight-body) var(--font-size-body) / var(--line-height-body) "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-release-block {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 8px;
  align-items: start;
}

.single-post-release-block > :not(span) {
  min-width: 0;
}

.single-post-release-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.single-post-release-chip {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 3px 10px;
  font: 500 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-release-place-list {
  display: grid;
  gap: 10px;
}

.single-post-release-place-item,
.single-post-standalone-place {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.single-post-standalone-place-wrap {
  padding: 0 20px;
}

.single-post-standalone-place {
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  background: #ffffff;
}

.single-post-release-place-cover,
.single-post-release-place-fallback {
  width: 96px;
  height: 96px;
  border-radius: 9px;
  border: 1px solid #e5e7eb;
}

.single-post-release-place-cover {
  object-fit: cover;
}

.single-post-release-place-fallback {
  display: inline-block;
  background: linear-gradient(135deg, #ececec 0%, #dcdcdc 100%);
}

.single-post-release-place-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
}

.single-post-release-place-name {
  color: #6b7280;
  font: var(--font-weight-body) var(--font-size-body) / var(--line-height-body) "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-release-place-sub {
  color: #6b7280;
  font: var(--font-weight-body) var(--font-size-body) / var(--line-height-body) "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-post-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.single-post-action-item {
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  background: #fafafa;
  padding: 10px 8px;
  text-align: center;
  display: grid;
  gap: 2px;
}

.single-post-action-btn {
  cursor: pointer;
}

.single-post-action-btn.is-liked {
  border-color: #ef4444;
  color: #ef4444;
}

.single-post-action-label {
  color: #6b7280;
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-action-number {
  font: 700 17px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-related {
  padding: 14px;
  display: grid;
  gap: 10px;
  border: 0;
  border-radius: 0;
}

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

.single-post-related-item {
  display: grid;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.single-post-related-cover,
.single-post-related-cover-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  display: block;
}

.single-post-related-cover {
  object-fit: cover;
}

.single-post-related-cover-fallback {
  background: linear-gradient(135deg, #ececec 0%, #dcdcdc 100%);
}

.single-post-related-title {
  font: 600 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.single-post-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  display: block;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
}

.single-post-share {
  padding: 14px 20px 20px;
  display: grid;
  gap: 10px;
}

.single-post-share-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  flex-wrap: nowrap;
  padding: 0 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.single-post-share-icon-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.single-post-share-icon-btn:hover {
  background: transparent;
}

.single-post-share-icon-btn .social-icon-image {
  width: 30px;
  height: 30px;
  display: block;
}

.single-post-latest-wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: start;
}

.single-post-latest {
  grid-column: 1;
  padding: 20px 22px 22px;
  display: grid;
  gap: 12px;
  border: 0;
  border-radius: 28px;
  background: #ffffff;
}

.single-post-latest-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.single-post-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.single-post-latest-item {
  text-decoration: none;
  color: inherit;
  border: 1px solid #000000;
  background: #0f172a;
  padding: 0;
  display: block;
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.single-post-latest-item::before {
  display: none;
}

.single-post-latest-item:hover {
  background: #0f172a;
}

.single-post-latest-item:active,
.single-post-latest-item:focus-visible {
  background: #0f172a;
}

.single-post-latest-cover,
.single-post-latest-cover-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  border: 0;
}

.single-post-latest-cover {
  object-fit: cover;
}

.single-post-latest-cover-placeholder {
  background: linear-gradient(135deg, #ececec 0%, #dcdcdc 100%);
}

.single-post-latest-title {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 20%;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #ffffff;
  font: 700 14px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.66);
}

.single-post-latest-meta {
  display: none;
}

.single-post-top-list > .single-post-loading,
.single-post-latest-grid > .single-post-loading {
  grid-column: 1 / -1;
}

.single-post-sidebar {
  padding: 20px;
  display: grid;
  gap: 12px;
  position: sticky;
  top: 74px;
  align-content: start;
  border: 0 !important;
  border-radius: 28px;
  background: #ffffff;
}

.single-post-sidebar .single-post-sidebar-head h2 {
  margin: 0;
  text-align: center;
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-h2);
  color: #fff;
}

.single-post-sidebar-head {
  margin: -20px -20px 0;
  padding: 14px 20px;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: #050505;
}

.single-post-top-list {
  display: grid;
  gap: 10px;
}

.single-post-top-feature {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.single-post-top-feature-cover-link {
  display: block;
  text-decoration: none;
}

.single-post-top-feature-cover,
.single-post-top-feature-cover-placeholder {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  border: 1px solid #d4d4d8;
}

.single-post-top-feature-cover {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.single-post-top-feature-cover-placeholder {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #ddd 0%, #ececec 100%);
}

.single-post-top-feature-content {
  text-decoration: none;
  color: #111;
  display: grid;
  gap: 6px;
  align-content: start;
}

.single-post-top-feature-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px;
  align-items: start;
}

.single-post-top-feature-index {
  font: 600 16px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

.single-post-top-feature .single-post-top-feature-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font: 400 14px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-top-feature-date {
  color: #6b7280;
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-top-feature-meta,
.single-post-rank-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.single-post-top-feature-meta .view-count-icon,
.single-post-rank-meta .view-count-icon {
  filter: none;
  opacity: 0.72;
}

.single-post-rank-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.single-post-rank-item {
  border-top: 0;
}

.single-post-rank-item + .single-post-rank-item {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.single-post-rank-link {
  display: grid;
  grid-template-columns: 28px 92px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  text-decoration: none;
  color: #111;
}

.single-post-rank-cover-wrap {
  display: block;
  text-decoration: none;
}

.single-post-rank-cover,
.single-post-rank-cover-placeholder {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  border: 1px solid #d4d4d8;
}

.single-post-rank-cover {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.single-post-rank-cover-placeholder {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #ddd 0%, #ececec 100%);
}

.single-post-rank-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.single-post-rank-link .single-post-rank-index {
  align-self: start;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 0;
  padding: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font: 800 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-rank-main .single-post-rank-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font: 400 14px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-rank-date {
  color: #6b7280;
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.single-post-rank-item.active .single-post-rank-index,
.single-post-rank-item.active .single-post-rank-title {
  color: #000;
}

.single-post-rank-item.active .single-post-rank-index {
  color: #fff;
}

.single-post-rank-link:hover .single-post-rank-title {
  text-decoration: none;
}

.single-post-top-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-post-top-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.single-post-top-name {
  font: 700 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-post-top-meta {
  color: #6b7280;
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-detail-page {
  --place-detail-module-radius: 28px;
  --place-detail-module-padding: 20px;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.place-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: start;
}

.place-detail {
  padding: 0;
  display: grid;
  gap: 0;
}

.place-detail.card {
  border: 0;
  background: transparent;
}

.place-detail-head h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

.place-detail-head,
.place-detail-score-line,
.place-detail-eat-meta,
.place-detail-content,
.place-detail-meta-grid,
.place-detail-tags,
.place-detail-menu,
.place-detail-gallery {
  padding-left: 24px;
  padding-right: 24px;
}

.place-detail-score-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.place-detail-score-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.place-detail-score-label {
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

.place-detail-score-badge {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.place-detail-score-badge.pro {
  background: linear-gradient(135deg, #9efbd3 0%, #57e9f2 50%, #45d4fb 100%);
}

.place-detail-score-badge.normal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.place-detail-eat-meta {
  font: 700 15px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

.place-detail-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid var(--line);
}

.place-detail-content {
  font-size: 18px;
  line-height: 1.75;
  color: #2b2f38;
}

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

.place-detail-meta-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.place-detail-meta-card h3 {
  margin: 0;
  font: 700 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111;
}

.place-detail-meta-card p {
  margin: 8px 0 0;
  font: 500 13px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #2b2f38;
}

.place-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.place-detail-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.07);
  color: #4b5563;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding: 0 10px;
}

.place-detail-menu {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  gap: 10px;
}

.place-detail-menu h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.place-detail-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.place-detail-menu-item {
  border: 1px solid #ece7dc;
  background: #fff;
  padding: 8px 10px;
  display: grid;
  gap: 4px;
}

.place-detail-menu-title {
  font: 700 14px/1.25 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
}

.place-detail-menu-sub {
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-detail-menu-price {
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #0f172a;
}

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

.place-detail-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.place-hot-sidebar {
  padding: var(--place-detail-module-padding, 8px 14px 12px);
  display: grid;
  gap: 0;
  position: sticky;
  top: calc(62px + 14px);
  border: 0;
  border-radius: var(--place-detail-module-radius, 28px);
  overflow: hidden;
  background: #fff;
}

.place-hot-sidebar.card {
  border: 0;
  border-radius: var(--place-detail-module-radius, 28px);
  background: #fff;
}

.place-hot-sidebar-head {
  padding: 16px 20px 14px;
  border-bottom: 0;
}

.place-hot-sidebar-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.place-hot-sidebar-head p {
  margin: 6px 0 0;
}

.place-hot-list {
  display: grid;
  gap: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: #fff;
}

.place-hot-item {
  text-decoration: none;
  color: inherit;
  border: 0;
  background: #fff;
  padding: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.place-hot-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.place-hot-item + .place-hot-item {
  border-top: 0;
}

.place-hot-item:hover {
  background: #fff;
}

.place-hot-item.active {
  background: #fff;
}

.place-hot-item.active:hover {
  background: #fff;
}

.place-hot-rank {
  min-width: 46px;
  color: #111;
  font: 700 44px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.place-hot-cover-wrap {
  display: block;
  width: 76px;
  height: 76px;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}

.place-hot-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.place-hot-cover--empty {
  background: transparent;
}

.place-hot-main {
  min-width: 0;
  display: grid;
  gap: 5px;
  align-content: center;
}

.place-hot-score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  margin-top: 1px;
}

.place-hot-name {
  font: 700 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-hot-foreign {
  color: #4b5563;
  font: 600 12px/1.25 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-hot-meta {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-hot-category {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  color: #6b7280;
  font: 600 12px/1.25 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-hot-side {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-left: 56px;
}

.place-hot-score {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 2px 9px;
  border-radius: 999px;
  font: 400 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.place-hot-score-label {
  display: inline;
  font: inherit;
  color: inherit;
}

.place-hot-score-badge {
  display: inline;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}

.place-hot-score--pro,
.place-hot-score-badge--pro {
  background: linear-gradient(135deg, #57e9f2 0%, #45d4fb 100%);
  color: #0b3e4b;
}

.place-hot-score--normal,
.place-hot-score-badge--normal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: #0d3d2d;
}

.site-footer {
  border-top: 1px solid #d4d4d4;
  background: #ffffff;
  margin-top: 26px;
}

.home-index-page .site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  border-top: 0;
  background-color: #eefbff;
  background-image:
    radial-gradient(120% 88% at 8% 100%, rgba(69, 212, 251, 0.3) 0%, rgba(69, 212, 251, 0) 70%),
    radial-gradient(112% 78% at 98% -6%, rgba(255, 217, 61, 0.34) 0%, rgba(255, 217, 61, 0) 68%),
    radial-gradient(92% 70% at 62% 14%, rgba(67, 233, 123, 0.24) 0%, rgba(67, 233, 123, 0) 72%);
  background-repeat: no-repeat;
  background-size: cover;
}

.home-index-page .site-footer::before,
.home-index-page .site-footer::after {
  content: "";
  position: absolute;
  inset: -18% -8%;
  pointer-events: none;
  z-index: 0;
}

.home-index-page .site-footer::before {
  background:
    radial-gradient(56% 52% at 18% 14%, rgba(255, 217, 61, 0.62) 0%, rgba(255, 217, 61, 0.08) 56%, rgba(255, 217, 61, 0) 72%),
    radial-gradient(62% 58% at 70% 24%, rgba(67, 233, 123, 0.58) 0%, rgba(67, 233, 123, 0.1) 58%, rgba(67, 233, 123, 0) 76%),
    radial-gradient(60% 54% at 86% 76%, rgba(69, 212, 251, 0.54) 0%, rgba(69, 212, 251, 0.06) 60%, rgba(69, 212, 251, 0) 78%),
    radial-gradient(48% 42% at 34% 82%, rgba(67, 233, 123, 0.42) 0%, rgba(67, 233, 123, 0) 74%);
  filter: blur(32px) saturate(112%);
  opacity: 0.92;
}

.home-index-page .site-footer::after {
  background:
    radial-gradient(46% 40% at 14% 78%, rgba(69, 212, 251, 0.46) 0%, rgba(69, 212, 251, 0) 76%),
    radial-gradient(52% 45% at 84% 10%, rgba(255, 217, 61, 0.42) 0%, rgba(255, 217, 61, 0) 74%),
    radial-gradient(44% 40% at 56% 88%, rgba(67, 233, 123, 0.38) 0%, rgba(67, 233, 123, 0) 72%);
  filter: blur(44px) saturate(108%);
  opacity: 0.74;
}

.home-index-page .site-footer .footer-main,
.home-index-page .site-footer .footer-legal-bar {
  position: relative;
  z-index: 1;
}

/* Keep home category band and footer on one continuous background source (body). */
.home-index-page .home-page {
  background: transparent;
}

.home-index-page .category-band {
  background: transparent;
}

.home-index-page .category-band::before,
.home-index-page .category-band::after {
  content: none;
}

.home-index-page .site-footer,
.single-post-nav-page .site-footer,
.place-list-nav-page .site-footer {
  background: transparent;
  border-top: 0;
}

.home-index-page .site-footer::before,
.home-index-page .site-footer::after,
.single-post-nav-page .site-footer::before,
.single-post-nav-page .site-footer::after,
.place-list-nav-page .site-footer::before,
.place-list-nav-page .site-footer::after {
  content: none;
}

.footer-main {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-col {
  min-width: 0;
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-link {
  text-decoration: none;
  color: #222;
  font: 400 14px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.footer-link:hover {
  text-decoration: none;
}

.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
}

.footer-logo-image {
  display: block;
  width: auto;
  height: 128px;
  max-width: min(520px, 72vw);
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social-link {
  width: 24px;
  height: 24px;
}

.wechat-social-link {
  position: relative;
  overflow: visible;
}

.social-qrcode-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  width: 180px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
  text-align: center;
}

.social-qrcode-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.98);
  transform: translate(-50%, -50%) rotate(45deg);
}

.wechat-social-link:hover .social-qrcode-popover,
.wechat-social-link:focus-visible .social-qrcode-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.social-qrcode-caption {
  display: block;
  margin-bottom: 8px;
  color: #222;
  font: 500 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.social-qrcode-frame {
  display: block;
  min-height: 160px;
}

.social-qrcode-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.footer-social-link .social-icon-image {
  width: 24px;
  height: 24px;
}

.footer-legal-bar {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #f0f0f0;
  font: 400 14px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.footer-record-link {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-record-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-record-link:focus-visible {
  text-decoration: none;
}

.footer-legal-inner span {
  min-width: 0;
  word-break: break-word;
}

.footer-legal-inner a {
  flex-shrink: 0;
}

.footer-inner {
  color: var(--muted);
  font: 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  font-family: "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.place-filter-loading-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.28);
}

.place-filter-loading-content {
  min-width: 108px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 600 15px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

[hidden],
.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .home-hero-shell {
    --home-hero-gap: 14px;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  }

  .home-hero-shell .featured-post {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .home-hero-shell .featured-hero-overlay {
    right: 0;
    padding: 80px 22px 22px;
  }

  .home-hero-shell .trending-posts {
    bottom: auto;
  }

  .home-hero-shell .trending-list {
    gap: 0;
  }

  .brand-main {
    font-size: 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .featured-post {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .featured-hero-title {
    max-width: 100%;
    font-size: 36px;
  }

  .home-hero-shell.home-hero-shell--single-pick .featured-hero-title {
    max-width: 100%;
  }

  .promo-banner {
    min-height: 132px;
    padding: 14px 16px;
  }

  .promo-banner h2 {
    font-size: 30px;
  }

  .weekly-hot-places {
    --weekly-hot-gap: 10px;
  }

  .weekly-hot-shell {
    width: calc(100% - 24px);
  }

  .weekly-hot-band {
    margin-top: 7px;
    padding: 25px 0 27px;
  }

  .category-band {
    padding: 2px 0 14px;
  }

  .category-shell {
    width: calc(100% - 24px);
  }

  .category-block {
    padding: 14px;
    border-radius: 22px;
  }

  .category-block-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-post h3 {
    font-size: 20px;
  }

  .single-head h1 {
    font-size: 38px;
  }

  .single-content {
    font-size: 17px;
  }

  .post-feed-card {
    grid-template-columns: 1fr;
  }

  .post-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-feed-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .post-feed-main h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    font-weight: var(--font-weight-h2);
  }

  .post-list-layout {
    grid-template-columns: 1fr;
  }

  .place-page-layout {
    grid-template-columns: 1fr;
  }

  .place-filter-sidebar {
    position: static;
    top: auto;
  }

  .place-list-toolbar {
    gap: 10px;
  }

  .place-sort-wrap {
    min-width: 180px;
  }

  .place-filter-panel .place-filter-row-web {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-filter-options-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .place-detail-layout {
    grid-template-columns: 1fr;
  }

  .place-hot-sidebar {
    position: static;
  }

  .place-detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .place-detail-head h1 {
    font-size: 38px;
  }

  .editor-grid {
    grid-template-columns: 1fr;
  }

  .editor-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .draft-strip-row {
    grid-template-columns: 1fr;
  }

  .slot-row-web {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .admin-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .admin-action-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .admin-toolbar .input:nth-child(3) {
    grid-column: 1 / -1;
  }

  .admin-geo-filter-row {
    grid-template-columns: 1fr 1fr;
  }

  .admin-geo-action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-geo-search-input {
    grid-column: 1 / -1;
  }

  .admin-post-list-filter-row {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .menu-row-web {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 120px 84px 84px;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-location-pill-height: 36px;
  }

  .home-hero-band {
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .home-hero-shell {
    --home-hero-gap: 12px;
    --home-section-radius: 18px;
    --home-media-radius: 10px;
    grid-template-columns: minmax(0, 1fr);
    width: calc(100% - 24px);
    max-width: none;
    padding: 0;
    border-radius: 0;
  }

  .home-hero-shell .featured-post {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .home-hero-shell .featured-hero {
    aspect-ratio: 1 / 1;
  }

  .home-hero-shell .featured-hero-overlay {
    display: flex;
    right: 0;
    min-height: 44%;
    gap: 8px;
    padding: 72px 18px 32px;
  }

  .home-hero-shell .featured-hero::after {
    display: block;
  }

  .home-hero-shell .trending-posts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    max-height: none;
    display: block;
    pointer-events: auto;
    z-index: 1;
    height: auto;
    overflow: visible;
  }

  .home-hero-shell .trending-posts:hover,
  .home-hero-shell .trending-posts:focus-within {
    height: auto;
    overflow: visible;
  }

  .home-hero-shell .trending-head {
    display: none;
  }

  .home-hero-shell .trending-list {
    display: grid;
    grid-template-rows: none;
    gap: 10px;
    height: auto;
  }

  .home-hero-shell .trending-item {
    display: flex;
    min-height: 0;
    height: auto;
    gap: 10px;
    padding: 8px;
  }

  .home-hero-shell .trending-thumb-link {
    width: 92px;
    height: 92px;
    min-height: 92px;
    flex-basis: 92px;
  }

  .home-hero-shell .trending-content {
    min-height: 92px;
  }

  .home-hero-shell .trending-title {
    font-size: 15px;
    line-height: 1.34;
  }

  .home-hero-shell .home-hero-dots {
    display: none;
    pointer-events: none;
    align-items: center;
    align-self: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-tap-highlight-color: transparent;
  }

  .home-hero-shell .home-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }

  .home-hero-shell .home-hero-dot.is-active {
    background: rgba(255, 255, 255, 0.96);
    transform: scale(1.15);
  }

  .home-hero-shell .home-hero-dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.98);
    outline-offset: 2px;
  }

  .topbar {
    padding: 0 12px;
  }

  .meta-left,
  .meta-right {
    flex-wrap: wrap;
  }

  .meta-bar {
    min-height: 42px;
    height: auto;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }

  .location-picker-panel {
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
    max-height: calc(100vh - 28px);
  }

  .location-picker-close {
    top: 14px;
    right: 14px;
  }

  .location-picker-title {
    font-size: 38px;
  }

  .location-picker-search-row {
    grid-template-columns: 1fr;
  }

  .location-picker-suggest {
    border-radius: 0;
  }

  .location-picker-search-btn,
  .location-picker-action {
    height: 46px;
  }

  .nav-bar {
    min-height: 54px;
    height: auto;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .subpage-nav-banner {
    height: 150px;
  }

  .legal-doc-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .legal-doc-header h2 {
    font-size: 24px;
  }

  .legal-doc-content h3 {
    font-size: 18px;
  }

  .legal-doc-content p {
    font-size: 14px;
  }

  .user-profile-nav-banner {
    height: 220px;
  }

  .user-profile-avatar-wrap {
    width: 96px;
    height: 96px;
  }

  .user-profile-avatar-fallback {
    font-size: 34px;
  }

  .user-profile-name {
    font-size: 30px;
  }

  .user-profile-meta {
    font-size: 13px;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .home-nav-left {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .home-site-name {
    font-size: 24px;
  }

  .nav-right {
    order: 1;
    width: 100%;
    justify-content: flex-end;
  }

  .nav-search-input {
    width: 140px;
    height: 41px;
    font-size: 12px;
  }

  .wx-login-btn {
    padding: 0 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
  }

  .nav-bar .wx-login-btn.wx-login-btn-round {
    width: 41px;
    min-width: 41px;
    height: 41px;
  }

  .main-nav {
    width: 100%;
    margin-right: 0;
    order: 2;
    gap: 4px;
  }

  .login-shell {
    min-height: auto;
  }

  .login-card {
    width: 100%;
    aspect-ratio: auto;
    margin: 0;
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 18px;
    border-radius: 22px;
  }

  .login-title {
    font-size: 40px;
  }

  .login-description {
    font-size: 15px;
  }

  .login-main {
    grid-template-rows: minmax(220px, 1fr) auto;
    align-content: stretch;
    gap: 18px;
    height: auto;
  }

  .login-qr-stage {
    min-height: 180px;
  }

  .login-locale-square {
    width: 100%;
    height: 100%;
  }

  .login-locale-wall {
    align-items: center;
    gap: 4px;
  }

  .login-locale-track {
    gap: 0;
    padding-inline: 0;
  }

  .login-locale-row--en .login-locale-track {
    gap: 0;
  }

  .login-locale-wall span {
    font-size: clamp(32px, 8.8vw, 46px);
    line-height: 1.08;
  }

  .login-qr-mount {
    padding: 6px;
  }

  .login-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .login-primary-btn,
  .login-secondary-btn {
    width: 100%;
    min-width: 0;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .menu-row-web {
    grid-template-columns: 1fr 1fr;
  }

  .menu-row-price-web {
    grid-column: 1 / -1;
  }

  .menu-row-action-btn {
    width: 100%;
    min-width: 0;
  }

  .admin-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-geo-filter-row,
  .admin-geo-action-row {
    grid-template-columns: 1fr;
  }

  .admin-geo-search-input {
    grid-column: auto;
  }

  .admin-post-table {
    min-width: 860px;
  }

  .admin-user-search-row {
    flex-wrap: wrap;
  }

  .admin-user-search-row > select {
    flex: 1 1 100%;
    width: 100%;
  }

  .admin-user-search-row > #keywordInput,
  .admin-user-search-row > #searchBtn {
    flex: 1 1 100%;
    width: 100%;
  }

  .admin-user-filter-row .input {
    width: 100%;
  }

  .admin-user-table {
    min-width: 980px;
  }

  .admin-user-footer-row {
    flex-wrap: wrap;
  }

  .admin-review-table {
    min-width: 980px;
  }

  .admin-post-pagination {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .chip {
    height: 36px;
    padding: 0 10px;
  }

  .nav-bar .chip {
    height: 32px;
    padding: 0 10px;
  }

  .nav-bar .site-location-pill.nav-location-pill {
    height: var(--nav-location-pill-height);
    gap: 5px;
    padding: 0;
    margin-right: 5px;
    font-size: 16px;
  }

  .nav-bar .site-location-pill.nav-location-pill::after {
    width: 9px;
    height: 9px;
    flex-basis: 9px;
  }

  .chip::after {
    left: 10px;
    right: 10px;
    bottom: 5px;
  }

  .ticker {
    grid-template-columns: 1fr;
  }

  .weekly-hot-carousel {
    padding: 0;
  }

  .weekly-hot-nav-btn {
    width: 32px;
    height: 32px;
    background-size: 14px 14px;
  }

  .weekly-hot-nav-prev {
    left: 6px;
  }

  .weekly-hot-nav-next {
    right: 6px;
  }

  .weekly-hot-places {
    --weekly-hot-gap: 8px;
  }

  .weekly-hot-main {
    --weekly-hot-main-inset: 10px;
    left: var(--weekly-hot-main-inset);
    right: var(--weekly-hot-main-inset);
    bottom: var(--weekly-hot-main-inset);
    padding: 8px;
  }

  .weekly-hot-sub {
    transform: translateY(calc(-100% - 4px));
  }

  .weekly-hot-score-line,
  .weekly-hot-meta-line {
    font-size: 12px;
  }

  .weekly-hot-meta-pill {
    font-size: var(--font-size-caption);
    line-height: var(--line-height-caption);
    padding: 2px 8px;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-feed {
    grid-template-columns: 1fr;
  }

  .user-profile-nav-banner {
    height: 190px;
  }

  .user-profile-avatar-wrap {
    width: 84px;
    height: 84px;
  }

  .user-profile-avatar-fallback {
    font-size: 30px;
  }

  .user-profile-name {
    font-size: 24px;
  }

  .post-cover {
    width: 100%;
    height: 190px;
  }

  .input.wide {
    width: 100%;
  }

  .post-main h3 {
    font-size: 28px;
  }

  .place-search-wrap-web {
    grid-template-columns: 1fr;
  }

  .place-filter-row-web {
    grid-template-columns: 1fr 1fr;
  }

  .place-list-toolbar {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .place-sort-wrap {
    margin-left: 0;
    width: 100%;
    min-width: 0;
  }

  .place-filter-panel .place-filter-row-web {
    grid-template-columns: 1fr;
  }

  .place-filter-options-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-list .card-2col {
    flex-direction: column;
    min-height: 0;
  }

  .place-list .cover-box {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    padding: 0;
    aspect-ratio: 4 / 5;
  }

  .place-list .cover-box::before {
    display: none;
    content: none;
  }

  .place-list .cover-left {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .place-list .name {
    font-size: 20px;
  }

  .place-list .score-item {
    min-height: 30px;
    font-size: 12px;
  }

  .place-list .score-badge {
    font-size: inherit;
  }

  .featured-hero-title {
    font-size: 31px;
  }

  .promo-banner {
    min-height: 116px;
  }

  .promo-banner h2 {
    font-size: 24px;
  }

  .category-block-grid {
    grid-template-columns: 1fr;
  }

  .category-block {
    padding: 12px;
    border-radius: 18px;
  }

  .category-post h3 {
    font-size: 18px;
  }

  .single-head h1 {
    font-size: 30px;
  }

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

  .place-detail-head h1 {
    font-size: 30px;
  }

  .place-hot-sidebar-head h2 {
    font-size: 20px;
  }

  .single-post-hero-category {
    font-size: 14px;
    min-height: 0;
    padding: 0;
  }

  .place-detail-menu-list,
  .place-detail-gallery {
    grid-template-columns: 1fr;
  }

  .editor-sidebar {
    grid-template-columns: 1fr;
  }

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

  .field.span-2 {
    grid-column: auto;
  }

  .editor-head h1 {
    font-size: var(--admin-page-title-size);
  }

  .addplace-head h1 {
    font-size: var(--admin-page-title-size);
  }

  .two-col-web {
    grid-template-columns: 1fr;
  }

  .three-col-web {
    grid-template-columns: 1fr;
  }

  .address-geo-web {
    grid-template-columns: 1fr;
  }

  .address-meta-row-web,
  .geo-side-web {
    grid-template-columns: 1fr;
  }

  .inline-row {
    grid-template-columns: 1fr;
  }

  .lang-name-row-web {
    grid-template-columns: 1fr;
  }

  .poi-layout-web {
    border: 0;
    background: transparent;
    display: grid;
    gap: 8px;
  }

  .poi-map {
    height: 360px;
    border: 1px solid var(--line);
  }

  .poi-overlay-web {
    position: static;
    width: auto;
    border: 1px solid var(--line);
    background: #fff;
  }

  .poi-search-row-web {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: center;
    text-align: center;
  }

  .footer-social-link {
    width: 22px;
    height: 22px;
  }

  .social-qrcode-popover {
    width: 150px;
    bottom: calc(100% + 12px);
    padding: 8px;
    border-radius: 16px;
  }

  .social-qrcode-caption {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .footer-social-link .social-icon-image {
    width: 22px;
    height: 22px;
  }

  .footer-legal-inner {
    min-height: 56px;
    flex-direction: column;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
  }
}

@media (max-width: 1080px) {
  .single-post-hero-content {
    --single-hero-title-gap: 8px;
  }

  .single-post-hero-title {
    font-size: 30px;
  }

  .single-post-body-layout {
    grid-template-columns: 1fr;
  }

  .single-post-latest-wrap {
    grid-template-columns: 1fr;
  }

  .single-post-sidebar {
    position: static;
  }

  .single-post-sidebar-head h2 {
    font-size: 24px;
  }

  .single-post-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .single-read-progress {
    height: 3px;
  }

  .single-post-page {
    padding: 0;
    margin-bottom: 44px;
  }

  .single-post-hero {
    min-height: clamp(180px, 24vh, 240px);
    width: calc(100% - 20px);
    border-radius: 16px;
  }

  .single-post-hero-content {
    padding: 18px 12px 12px;
  }

  .single-post-hero-meta {
    margin-top: 0;
    gap: 8px;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .single-post-hero-views {
    margin-left: 0;
  }

  .single-post-hero-edit-btn {
    right: 12px;
    bottom: 12px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 9px;
    font-size: 13px;
  }

  .single-post-content {
    font-size: 16px;
    width: 100%;
  }

  .single-post-text {
    padding: 20px var(--single-post-section-x-padding, 20px);
  }

  .single-post-image-board {
    padding: 0;
    gap: 16px;
  }

  .single-post-image-frame,
  .single-post-image-list--single .single-post-image-frame {
    flex-basis: calc(100vw - 40px);
  }

  .single-post-image {
    height: auto;
    max-height: none;
  }

  .single-post-image-list {
    padding: 10px;
  }

  .single-post-image-carousel-controls {
    inset: 0;
  }

  .single-post-image-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .single-post-image-carousel-btn[data-single-image-carousel-prev] {
    left: 12px;
  }

  .single-post-image-carousel-btn[data-single-image-carousel-next] {
    right: 12px;
  }

  .single-post-image-carousel-icon {
    width: 28px;
    height: 28px;
  }

  .single-post-image-lightbox {
    padding: 10px;
  }

  .single-post-image-lightbox-stage {
    width: 100%;
    height: min(82vh, 660px);
  }

  .single-post-image-lightbox-slide {
    padding: 8px 0 72px;
  }

  .single-post-image-lightbox-image {
    max-width: 100%;
    max-height: min(72vh, 560px);
  }

  .single-post-image-lightbox-side {
    display: none;
  }

  .single-post-image-lightbox-controls {
    bottom: 48px;
    gap: 14px;
  }

  .single-post-image-lightbox-nav-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
  }

  .single-post-image-lightbox-nav-icon {
    width: 30px;
    height: 30px;
  }

  .single-post-release-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .single-post-release-block {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .single-post-release-place-item,
  .single-post-standalone-place {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .single-post-article .single-post-release.card {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
    padding: 16px;
  }

  .single-post-release-place-cover,
  .single-post-release-place-fallback {
    width: 76px;
    height: 76px;
  }

  .single-post-actions {
    gap: 8px;
    padding: 10px;
  }

  .single-post-action-number {
    font-size: 15px;
  }

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

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

  .single-post-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-post-nav-right {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .single-post-nav-right .nav-search-input {
    width: min(180px, 52vw);
  }

  .single-post-body-layout {
    padding: 0 12px;
  }

  .single-post-latest-wrap {
    margin-top: 0;
    padding: 0 12px;
  }

  .single-post-latest {
    border-radius: 18px;
    padding: 16px 12px;
  }

  .single-post-sidebar {
    border-radius: 18px;
  }

  .single-post-sidebar-head h2 {
    font-size: 20px;
  }

  .single-post-top-feature-text {
    font-size: 15px;
  }

  .single-post-rank-index,
  .single-post-rank-title {
    font-size: 14px;
  }

  .single-post-rank-link {
    grid-template-columns: 24px 72px minmax(0, 1fr);
    gap: 8px;
  }

  .single-post-rank-link .single-post-rank-index {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

.hero-full,
.detail-page {
  display: grid;
  gap: 0;
}

.detail-article {
  display: grid;
  gap: 0;
}

.place-hero-v2 {
  display: grid;
  gap: 0;
}

.place-hero-v2 > * + * {
  border-top: 0;
  margin-top: 30px;
}

.place-detail > * + * {
  border-top: 0;
  margin-top: 30px;
}

/* Keep spacing consistent between PLACE介绍 and score hero block. */
.place-detail > .section-block + .hero-full {
  border-top: 0;
  margin-top: 30px;
}

/* Keep the hero block compact against the following section divider. */
.place-detail > .hero-full + .detail-page {
  margin-top: 30px;
}

.detail-article > * + * {
  border-top: 0;
  margin-top: 30px;
}

.hero-cover {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #dadde3 0%, #f2f4f8 100%);
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.68) 100%);
  pointer-events: none;
}

.hero-cover-link {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cover-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #475569;
  font: 700 18px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.hero-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
  color: #fff;
}

.hero-title {
  margin: 0;
  font: 800 44px/1.05 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: -0.02em;
}

.hero-subnames {
  display: grid;
  gap: 4px;
}

.hero-subname {
  color: rgba(255, 255, 255, 0.86);
  font: 600 15px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta-text {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.hero-score-block {
  border: 0;
  border-radius: 28px;
  background: #fff;
  padding: var(--place-detail-module-padding, 20px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 14px;
  align-items: center;
  position: relative;
}

.hero-score-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.hero-score-line {
  display: grid;
}

.hero-score-line:first-child .hero-score-circle {
  justify-self: start;
}

.hero-score-line:last-child .hero-score-circle {
  justify-self: end;
}

.hero-score-circle {
  width: min(100%, 148px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 50%;
  padding: 18px 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  text-align: center;
  color: #0f172a;
  justify-self: center;
}

.hero-score-circle--pro {
  background: linear-gradient(135deg, #57e9f2 0%, #45d4fb 100%);
}

.hero-score-circle--normal,
.hero-score-circle--expert {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.hero-score-circle--crisp,
.hero-score-circle--experience {
  background: linear-gradient(135deg, #45d4fb 0%, #45d4fb 28%, #43e97b 45%, #ffcf65 100%);
}

.hero-score-num {
  font: 800 36px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.hero-score-desc {
  font: 700 13px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.hero-score-subdesc {
  font: 600 11px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: rgba(15, 23, 42, 0.82);
}

.hero-review-count {
  color: #6b7280;
  font: 600 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: right;
  margin-top: 0;
  grid-column: 1 / -1;
  justify-self: end;
  align-self: end;
  position: static;
}

.hero-bars {
  --hero-bars-space: 16px;
  display: grid;
  gap: 10px;
  border-left: 1px solid #e5dfd4;
  padding-left: var(--hero-bars-space);
}

.hero-bar-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: var(--hero-bars-space);
  align-items: center;
}

.hero-bar-label {
  color: #374151;
  font: 700 13px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: right;
}

.hero-bar {
  position: relative;
  min-height: 28px;
  border-radius: 999px;
  background: #e7edf3;
}

.hero-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 999px;
}

.hero-fill--normal {
  background: linear-gradient(90deg, #45d4fb 0%, #45d4fb 28%, #43e97b 45%, #ffcf65 100%);
}

.hero-mark {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font: 800 11px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.hero-mark.is-min {
  transform: translate(0, -50%);
}

.hero-mark.is-max {
  transform: translate(-100%, -50%);
}

.section-block {
  border: 0;
  border-radius: var(--place-detail-module-radius, 28px);
  background: #fff;
  padding: var(--place-detail-module-padding, 8px 14px 12px);
  display: grid;
  gap: 14px;
}

.section-block--dark {
  background: #fff;
  border-color: #e5dfd4;
}

.section-block--light {
  background: #fff;
  border-color: #e5dfd4;
}

.section-title {
  margin: 0;
  color: #101828;
  font: 800 28px/1.12 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.section-block--dark .section-title {
  color: #101828;
}

.section-body {
  display: grid;
  gap: 14px;
}

.section-body--intro {
  gap: 16px;
}

.place-features {
  color: #2b2f38;
  font-size: 16px;
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
  word-break: break-word;
  white-space: pre-wrap;
}

.place-features--empty,
.empty-state-inline {
  color: #6b7280;
}

.section-block--dark .place-features,
.section-block--dark .empty-state-inline {
  color: #2b2f38;
}

.section-block--dark .empty-state-inline {
  color: #6b7280;
}

.section-block--dark .place-features--empty {
  color: #6b7280;
}

.solo-dining-detail-row-web {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  color: #2b2f38;
  font-size: 16px;
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
}

.solo-dining-title-web {
  color: #111827;
}

.solo-dining-detail-item-web {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.solo-dining-detail-item-web + .solo-dining-detail-item-web::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 1px;
  height: 18px;
  margin-right: 14px;
  background: rgba(0, 0, 0, 0.1);
}

.solo-dining-detail-label-web {
  color: inherit;
  font: inherit;
}

.solo-dining-detail-value-web {
  color: inherit;
  font: inherit;
}

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

.vibe-item,
.menu-card-web {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #eceff4;
}

.vibe-item {
  aspect-ratio: 1 / 1;
}

.vibe-item-btn {
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
}

.vibe-img,
.menu-img-web {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vibe-uploader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 10px 10px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 56%, rgba(15, 23, 42, 0.92) 100%);
  color: #fff;
  font: 700 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.vibe-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.vibe-lightbox-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.vibe-lightbox-panel {
  position: relative;
  width: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

.vibe-lightbox-media {
  position: relative;
  display: inline-flex;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
}

.vibe-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
  background-image: url("/icons/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.vibe-lightbox-image {
  width: auto;
  height: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  display: block;
  box-shadow: none;
}

.vibe-lightbox-uploader {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 16, 0.24);
  backdrop-filter: blur(8px) saturate(128%);
  -webkit-backdrop-filter: blur(8px) saturate(128%);
  color: #fff;
  font: 700 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  width: fit-content;
  max-width: calc(100% - 20px);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .vibe-lightbox-uploader {
    background: rgba(15, 15, 16, 0.40);
  }
}

.rec-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rec-track.is-draggable {
  cursor: grab;
}

.rec-track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.rec-track.is-drag-scrolling {
  cursor: grabbing;
}

.rec-card-h {
  display: grid;
  gap: 0;
  border: 1px solid #e6e0d5;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.rec-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eceff4;
}

.rec-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.rec-card-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  background: #eceff4;
  color: #6b7280;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-price-corner {
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 6px 14px rgba(0, 0, 0, 0.24);
  color: #fff;
  font: 700 12px/24px "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.item-name-bold {
  color: #111827;
  font: 800 18px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-overlay-main {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 24px 14px 12px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.68) 62%, rgba(2, 6, 23, 0.85) 100%);
  pointer-events: none;
}

.rec-item-name-overlay {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.rec-rating-list-overlay {
  gap: 10px;
}

.rec-rating-list-overlay .rec-rating-row {
  gap: 10px;
}

.item-name-foreign {
  color: #6b7280;
  font: 600 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}

.rec-score-label {
  color: #6b7280;
  font: 700 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-score-value {
  color: #111827;
  font: 800 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-rating-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
}

.rec-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rec-rating-label {
  color: #6b7280;
  font: 700 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.rec-comment {
  color: #374151;
  font: 500 13px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-mention {
  display: inline-flex;
  align-items: center;
  color: #6b7280;
  font: 700 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.rec-mention-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.16);
  color: #4b5563;
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.rec-rating-list-overlay .rec-mention-pill {
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 6px 14px rgba(0, 0, 0, 0.24);
  color: #fff;
}

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

.review-sort-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-sort-btn {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d7cfc2;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-sort-btn-active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.review-list-web {
  display: grid;
  gap: 12px;
}

.review-card {
  display: grid;
  gap: 12px;
  --review-avatar-size: 48px;
  --review-header-gap: 12px;
  --review-content-offset: calc(var(--review-avatar-size) + var(--review-header-gap));
  border-radius: 22px;
  background: #fff;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-avatar,
.review-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-avatar {
  object-fit: cover;
  display: block;
  background: #eceff4;
}

.review-avatar-fallback {
  display: grid;
  place-items: center;
  background: #111827;
  color: #fff;
  font: 800 18px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-avatar-link {
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-user-meta {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 4px;
}

.review-user-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.review-nickname {
  color: #111827;
  font: 800 16px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-pro-tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 6px;
  border: 1px solid #f3d39c;
  border-radius: 999px;
  background: #fff2db;
  color: #6b3f00;
  font: 700 10px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.review-pro-tag.is-normal {
  color: #047857;
}

.review-author-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 800 11px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.review-author-badge.is-editor {
  border-color: #f3c77a;
  background: #fff5de;
  color: #8a5a13;
}

.review-author-badge.is-pro {
  border-color: #f3d39c;
  background: #fff2db;
  color: #6b3f00;
}

.review-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  color: #0b132b;
  font: 800 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-score-badge--pro {
  background: linear-gradient(135deg, #57e9f2 0%, #45d4fb 100%);
}

.review-score-badge--normal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.review-header-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 18px;
  color: #0b132b;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.review-time {
  color: #6b7280;
  font: 600 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-text {
  color: #2b2f38;
  font-size: 16px;
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
  word-break: break-word;
  white-space: pre-wrap;
}

.review-rec-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 320px);
  gap: 10px;
  width: 100%;
  margin-left: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-rec-list.is-draggable {
  cursor: grab;
}

.review-rec-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.review-rec-list.is-drag-scrolling {
  cursor: grabbing;
}

.review-rec-card {
  border: 1px solid #000;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: grid;
  align-content: start;
}

.review-rec-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  background: #eceff4;
}

.review-rec-image-wrap--empty {
  min-height: 140px;
  display: grid;
  place-items: center;
  color: #6b7280;
  font: 700 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-rec-empty-text {
  position: relative;
  z-index: 1;
}

.review-rec-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.review-rec-price {
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 6px 14px rgba(0, 0, 0, 0.24);
  color: #fff;
  font: 700 12px/24px "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-rec-main {
  display: grid;
  gap: 4px;
  padding: 10px 10px 12px;
}

.review-rec-name {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-h2);
}

.review-rec-name-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 12px 10px;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 56%, rgba(15, 23, 42, 0.92) 100%);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.review-rec-foreign {
  color: #6b7280;
  font: 600 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.review-rec-comment {
  color: #2b2f38;
  font-size: 16px;
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
  word-break: break-word;
  white-space: pre-wrap;
}

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

.review-image-grid a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.review-image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.menu-grid-web {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.menu-text-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e5dfd4;
  border-radius: 16px;
  background: #fff;
  padding: 12px;
}

.menu-text-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.menu-text-name {
  color: #111827;
  font: 700 14px/1.25 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.menu-text-sub {
  color: #6b7280;
  font: 500 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.menu-text-price {
  color: #111827;
  font: 800 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  flex-shrink: 0;
}

.info-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.info-line + .info-line {
  padding-top: 12px;
  border-top: 1px solid #ece7dc;
}

.info-split {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.info-panel {
  display: grid;
  gap: 14px;
}

.info-text {
  color: #6b7280;
  font: 600 14px/1.7 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.info-value {
  color: #111827;
  font: 600 14px/1.7 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.info-value.is-closed {
  color: #b91c1c;
}

.info-value.is-open {
  color: #15803d;
}

.info-status {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.section-block--hours .info-text {
  color: #111827;
  font-weight: var(--font-weight-h3);
}

.section-block--hours .info-value {
  font-weight: 400;
}

.section-block--hours .info-status {
  font-weight: 400;
}

.info-hours {
  display: grid;
  gap: 4px;
}

.info-action-link {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-contact-btn {
  height: 40px;
  padding: 0 16px;
  border: 1px solid #d7cfc2;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font: 700 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.info-contact-btn:hover {
  background: #f9f7f3;
}

.contact-phone-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.contact-phone-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-phone-panel {
  position: relative;
  width: min(420px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid #e5dfd4;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.contact-phone-title {
  color: #111827;
  font: 700 18px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.contact-phone-list {
  display: grid;
  gap: 8px;
}

.contact-phone-link {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 2px;
  font: 600 16px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.contact-phone-actions {
  display: flex;
  justify-content: flex-end;
}

.contact-phone-close {
  min-width: 84px;
}

.arrive-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 22px;
  background: #fff;
  padding: 0;
}

.arrive-left {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 12px;
}

.arrive-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.arrive-row-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: calc((1.7em - 28px) / 2);
}

.arrive-row-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.arrive-row-icon--fallback {
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font: 700 11px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.arrive-value {
  color: #111827;
  font: 600 14px/1.7 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.arrive-card .arrive-value {
  font-weight: 400;
}

.arrive-value--transport {
  display: block;
}

.arrive-transit-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arrive-transit-stop-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.arrive-transit-stop-group + .arrive-transit-stop-group {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.arrive-transit-lines {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.arrive-transit-lines-label {
  color: #111827;
  font: 500 14px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  padding: 1px 1px 6px;
}

.arrive-transit-line-row {
  display: block;
  min-width: 0;
  position: relative;
}

.arrive-transit-line-row + .arrive-transit-line-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(17, 24, 39, 0.12);
}

.arrive-transit-line-pill {
  min-width: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  box-sizing: border-box;
}

.arrive-transit-line-indicator {
  height: 52px;
  min-width: 52px;
  width: auto;
  min-height: 52px;
  flex: 0 0 auto;
  padding: 0 11px;
  box-sizing: border-box;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 16px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.arrive-transit-line-indicator--code,
.arrive-transit-line-indicator--kr-circle,
.arrive-transit-line-indicator--kr-stack {
  border-radius: 999px;
  font-size: 18px;
}

.arrive-transit-line-indicator--name {
  font-size: 11px;
}

.arrive-transit-line-indicator-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: auto;
  min-width: 100%;
  white-space: normal;
}

.arrive-transit-line-indicator-line {
  display: block;
  line-height: 1;
  white-space: nowrap;
}

.arrive-transit-line-indicator-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  min-width: 0;
  color: inherit;
  font: inherit;
  line-height: 1;
}

.arrive-transit-line-indicator-label,
.arrive-transit-line-indicator-station-code {
  display: block;
  color: inherit;
  font: inherit;
  line-height: 1;
  white-space: nowrap;
}

.arrive-transit-line-indicator-label .arrive-transit-line-indicator-lines {
  gap: 1px;
}

.arrive-transit-line-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.arrive-transit-line-copy-zh {
  min-width: 0;
  color: #111827;
  font: 700 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrive-transit-line-copy-local {
  display: block;
  min-width: 0;
  color: #374151;
  font: 500 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrive-transit-line-copy-en {
  display: block;
  min-width: 0;
  color: #6b7280;
  font: 500 11px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrive-transit-station-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.arrive-transit-station-chip {
  display: flex;
  min-width: 0;
  width: 100%;
}

.arrive-transit-station-name-pill {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex: 1 1 auto;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #111827;
  border-radius: 20px;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}

.arrive-transit-station-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

.arrive-transit-station-summary--multi {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.arrive-transit-station-title-block {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  width: auto;
  max-width: 100%;
  text-align: left;
}

.arrive-transit-station-title-line {
  display: flex;
  justify-content: flex-start;
  min-width: 0;
  width: 100%;
}

.arrive-transit-station-title-item {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  color: #111827;
  font: 700 14px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrive-transit-station-title-item--zh {
  flex: 0 0 auto;
}

.arrive-transit-station-title-item--local {
  max-width: 100%;
}

.arrive-transit-station-title-item--en {
  max-width: 100%;
  color: #6b7280;
  font: 500 11px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.arrive-transit-station-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-width: 52px;
  margin-left: auto;
  align-content: flex-start;
  justify-content: flex-end;
  flex: 0 1 auto;
  max-width: 45%;
}

.arrive-transit-station-badges--multi {
  width: 100%;
  min-width: 0;
  margin-left: 0;
  justify-content: flex-start;
  max-width: 100%;
  flex: 0 0 auto;
}

.arrive-transit-station-badge {
  display: flex;
}

.arrive-transit-station-badge-indicator {
  min-width: 52px;
  width: auto;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  box-sizing: border-box;
  font: 800 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
}

.arrive-transit-station-badge-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: auto;
  min-width: 100%;
  color: inherit;
  line-height: 1;
}

.arrive-transit-station-badge-label,
.arrive-transit-station-badge-station-code {
  display: block;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}

.arrive-transit-station-badge-label {
  font-size: 13px;
  font-weight: 800;
}

.arrive-transit-station-badge-station-code {
  font-size: 10px;
  font-weight: 700;
}

.arrive-transit-note-row {
  min-width: 0;
  min-height: 24px;
  position: relative;
}

.arrive-transit-exit-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.arrive-transit-exit-content {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
}

.arrive-transit-exit-caption {
  font: 500 14px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827;
}

.arrive-transit-exit-badge {
  min-width: 52px;
  width: auto;
  height: 52px;
  border-radius: 999px;
  background: #fff5b7;
  color: #111827;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 2px;
  padding: 0 12px;
  box-sizing: border-box;
  white-space: nowrap;
}

.arrive-transit-exit-code {
  font: 800 17px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.arrive-transit-exit-text {
  font: 700 8px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  letter-spacing: 0.08em;
}

.arrive-transit-station-panel .arrive-transit-note-row {
  margin-top: 6px;
}

.arrive-transit-station-panel .arrive-transit-note-row--with-exit {
  margin-top: 0;
}

.arrive-transit-reference-note {
  font: 500 11px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #9ca3af;
}

.arrive-transit-note-indicator {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -32px;
  top: 2px;
  margin-top: 0;
}

.arrive-transit-note-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrive-transit-note-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.arrive-transit-note-icon--fallback {
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #111827;
  color: #111827;
  font: 700 9px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
  box-sizing: border-box;
}

.arrive-transit-note-text {
  display: block;
  min-width: 0;
  color: #111827;
  font: 500 14px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  overflow-wrap: anywhere;
}

.arrive-transit-note-row--with-exit {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  position: static;
  flex: 1 1 auto;
}

.arrive-transit-note-row--with-exit .arrive-transit-note-indicator {
  position: static;
  left: auto;
  top: auto;
}

.arrive-transit-note-row--with-exit .arrive-transit-note-text {
  flex: 1 1 auto;
}

.arrive-transit-note-row--standalone {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  position: static;
}

.arrive-transit-note-row--standalone .arrive-transit-note-indicator {
  position: static;
  left: auto;
  top: auto;
}

.arrive-transit-note-row--standalone .arrive-transit-note-text {
  flex: 0 1 auto;
}

.address-line-list {
  display: grid;
  gap: 8px;
}

.addr-line {
  display: grid;
  gap: 2px;
}

.addr-text {
  overflow-wrap: anywhere;
}

.addr-note {
  color: #6b7280;
  font: 500 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.arrive-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font: 700 13px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.arrive-nav-btn.is-disabled {
  background: #cbd5e1;
  color: #475569;
}

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

.post-column {
  display: grid;
  gap: 14px;
}

.related-post-card {
  display: grid;
  gap: 10px;
  border: 1px solid #e5dfd4;
  border-radius: 22px;
  background: #fff;
  padding: 10px;
  text-decoration: none;
  color: inherit;
}

.post-img,
.post-img-empty {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  display: block;
}

.post-img {
  object-fit: cover;
}

.post-img-empty {
  display: grid;
  place-items: center;
  background: #eceff4;
  color: #6b7280;
  font: 700 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-title {
  color: #111827;
  font: 700 15px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-post-feed-meta {
  display: none;
}

.post-avatar,
.post-avatar-fallback {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.post-avatar {
  object-fit: cover;
  display: block;
  background: #eceff4;
}

.post-avatar-fallback {
  display: grid;
  place-items: center;
  background: #111827;
  color: #fff;
  font: 800 11px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-avatar-link {
  cursor: pointer;
}

.post-nickname,
.post-date {
  color: #6b7280;
  font: 600 12px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.post-date {
  margin-left: auto;
}

@media (max-width: 1080px) {
  .hero-cover {
    min-height: 380px;
  }

  .feel-grid,
  .menu-grid-web,
  .post-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.place-detail-nav-page .post-masonry {
    gap: 12px;
  }

  body.place-detail-nav-page .post-column {
    gap: 12px;
    min-width: 0;
  }

  body.place-detail-nav-page .related-post-card {
    position: relative;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
  }

  body.place-detail-nav-page .related-post-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  body.place-detail-nav-page .related-post-card .post-img,
  body.place-detail-nav-page .related-post-card .post-img-empty {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    object-fit: cover;
    display: block;
  }

  body.place-detail-nav-page .related-post-card .post-img-empty {
    color: rgba(248, 250, 252, 0.92);
    background: #94a3b8;
  }

  body.place-detail-nav-page .related-post-card .post-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 37px;
    z-index: 2;
    display: -webkit-box;
    min-height: calc(2 * var(--line-height-h2) * 1em);
    margin: 0;
    padding: 0 14px;
    overflow: hidden;
    color: #f8fafc;
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body.place-detail-nav-page .related-post-card .post-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-width: 0;
    padding: 0 14px 12px;
    gap: 14px;
    color: rgba(226, 232, 240, 0.88);
    font-size: var(--font-size-caption);
    line-height: var(--line-height-caption);
    font-weight: var(--font-weight-caption);
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  body.place-detail-nav-page .related-post-card .related-post-author-meta {
    display: none;
  }

  body.place-detail-nav-page .related-post-card .related-post-feed-meta {
    display: flex;
  }

  body.place-detail-nav-page .related-post-card .view-count-icon {
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
}

@media (max-width: 860px) {
  .place-detail-page {
    --place-detail-module-radius: 22px;
    --place-detail-module-padding: 20px;
  }

  .hero-score-block {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: var(--place-detail-module-padding, 20px);
  }

  .hero-bars {
    --hero-bars-space: 12px;
    border-left: 0;
    border-top: 1px solid #e5dfd4;
    padding-left: 0;
    padding-top: 14px;
  }

  .hero-review-count {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 10px;
  }

  .hero-score-line:first-child .hero-score-circle,
  .hero-score-line:last-child .hero-score-circle {
    justify-self: center;
  }

  .place-hero-v2 > * + *,
  .place-detail > * + *,
  .detail-article > * + * {
    margin-top: 30px;
  }

  .place-detail > .hero-full + .detail-page {
    margin-top: 30px;
  }

  .place-detail > .section-block + .hero-full {
    border-top: 0;
    margin-top: 30px;
  }

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

  .hero-info {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-score-row,
  .feel-grid,
  .menu-grid-web,
  .menu-text-list,
  .post-masonry {
    grid-template-columns: 1fr;
  }

  body.place-detail-nav-page .post-masonry {
    display: block;
    column-count: 2;
    column-gap: 10px;
  }

  body.place-detail-nav-page .post-column {
    display: contents;
  }

  body.place-detail-nav-page .related-post-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 12px;
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
  }

  body.place-detail-nav-page .related-post-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  body.place-detail-nav-page .related-post-card .post-img,
  body.place-detail-nav-page .related-post-card .post-img-empty {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    object-fit: cover;
    display: block;
  }

  body.place-detail-nav-page .related-post-card .post-img-empty {
    color: rgba(248, 250, 252, 0.92);
    background: #94a3b8;
  }

  body.place-detail-nav-page .related-post-card .post-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    z-index: 2;
    display: -webkit-box;
    min-height: calc(2 * 1.35em);
    margin: 0;
    padding: 0 12px;
    overflow: hidden;
    color: #f8fafc;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body.place-detail-nav-page .related-post-card .post-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-width: 0;
    min-height: 34px;
    padding: 0 12px 10px;
    gap: 10px;
    color: rgba(226, 232, 240, 0.88);
    font-size: 12px;
    line-height: var(--line-height-caption);
    font-weight: var(--font-weight-caption);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  body.place-detail-nav-page .related-post-card .post-avatar,
  body.place-detail-nav-page .related-post-card .post-avatar-fallback {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    font-size: 10px;
  }

  body.place-detail-nav-page .related-post-card .post-nickname,
  body.place-detail-nav-page .related-post-card .post-date {
    color: inherit;
    font-size: 12px;
    line-height: 1.3;
  }

  body.place-detail-nav-page .related-post-card .post-nickname {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.place-detail-nav-page .related-post-card .post-date {
    flex: 0 0 auto;
    margin-left: auto;
  }

  body.place-detail-nav-page .hero-score-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .info-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.place-detail-nav-page .hero-bar-row {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
  }

  .section-block {
    padding: var(--place-detail-module-padding, 20px);
    border-radius: var(--place-detail-module-radius, 22px);
  }

  .review-head-row,
  .arrive-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .review-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-rec-list {
    grid-auto-columns: minmax(190px, 250px);
  }

  .info-line,
  .arrive-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .arrive-transit-flow,
  .arrive-transit-stop-group {
    gap: 8px;
  }

  .arrive-transit-line-pill,
  .arrive-transit-station-summary,
  .arrive-transit-note-row--with-exit,
  .arrive-transit-note-row--standalone,
  .arrive-transit-exit-content {
    gap: 8px;
  }

  .arrive-transit-lines-label {
    font-size: 13px;
    padding-bottom: 5px;
  }

  .arrive-transit-line-pill {
    min-height: 50px;
    padding: 7px 0;
  }

  .arrive-transit-line-indicator {
    height: 46px;
    min-width: 46px;
    width: auto;
    min-height: 46px;
    padding: 0 9px;
    flex-basis: auto;
    font-size: 14px;
  }

  .arrive-transit-line-indicator--code,
  .arrive-transit-line-indicator--kr-circle,
  .arrive-transit-line-indicator--kr-stack {
    flex-basis: auto;
    font-size: 16px;
  }

  .arrive-transit-line-indicator--name {
    font-size: 10px;
  }

  .arrive-transit-line-copy-zh,
  .arrive-transit-station-title-item {
    font-size: 13px;
  }

  .arrive-transit-line-copy-local {
    font-size: 13px;
  }

  .arrive-transit-line-copy-en,
  .arrive-transit-station-title-item--en,
  .arrive-transit-reference-note {
    font-size: 10px;
  }

  .arrive-transit-station-name-pill {
    padding: 10px 12px;
    border-radius: 18px;
  }

  .arrive-transit-station-badges {
    gap: 5px 6px;
  }

  .arrive-transit-station-badge-indicator {
    min-width: 46px;
    width: auto;
    height: 46px;
    flex-basis: auto;
    padding: 0 9px;
    font-size: 12px;
  }

  .arrive-transit-station-badge-label {
    font-size: 12px;
  }

  .arrive-transit-station-badge-station-code {
    font-size: 9px;
  }

  .arrive-transit-line-indicator-lines {
    gap: 1px;
  }

  .arrive-transit-line-indicator-stack {
    gap: 1px;
  }

  .arrive-transit-exit-badge {
    min-width: 46px;
    width: auto;
    height: 46px;
    flex-basis: auto;
    padding: 0 10px;
  }

  .arrive-transit-exit-code {
    font-size: 15px;
  }

  .arrive-transit-exit-text {
    font-size: 8px;
  }

  .arrive-transit-note-indicator,
  .arrive-transit-note-icon {
    width: 18px;
    height: 18px;
  }

  .arrive-transit-note-icon--fallback {
    min-width: 18px;
    height: 18px;
    font-size: 8px;
  }

  .arrive-transit-note-text,
  .arrive-transit-exit-caption {
    font-size: 13px;
  }

  .arrive-transit-note-row--standalone {
    min-height: 18px;
  }

  .arrive-transit-reference-note {
    font-size: 9px;
  }

  .arrive-nav-btn {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .ai-admin-grid-chat,
  .ai-admin-grid-sync,
  .ai-admin-meta-grid,
  .ai-admin-kb-layout,
  .ai-admin-inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ai-admin-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-admin-actions .btn {
    width: 100%;
  }
}

/* Keep border tones consistent across all pages. */
body *,
body *::before,
body *::after {
  border-color: var(--border-unified);
}

/* Force admin pages/components to keep gray borders in all states. */
.admin-page,
.admin-page *,
.admin-page *::before,
.admin-page *::after,
[class^="admin-"],
[class^="admin-"]::before,
[class^="admin-"]::after,
[class*=" admin-"],
[class*=" admin-"]::before,
[class*=" admin-"]::after {
  border-color: var(--border-unified) !important;
}

/* Keep admin-side form fields square across management pages. */
.admin-page :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea),
.addplace-page :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea),
.place-editor-nav-right :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea) {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

/* Keep search inputs pill-shaped across management pages. */
.admin-post-list-search-row .input,
.admin-user-search-row > #keywordInput,
.admin-toolbar.admin-toolbar-review > #keywordInput,
.admin-geo-search-input,
.ai-admin-grid-sync > .ai-admin-field-search .input,
.place-search-input-web,
.admin-page input[placeholder*="搜索"],
.place-page input[placeholder*="搜索"],
.addplace-page input[placeholder*="搜索"],
.place-editor-nav-right input[placeholder*="搜索"] {
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
}

.admin-user-search-row > #keywordInput {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

/* Keep all pagination rows aligned the same way. */
.pager-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.pager-info {
  order: -1;
  margin-right: auto;
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  text-align: left;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

.pager-nav-btn {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-width: auto !important;
  border-radius: 0 !important;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

.pager-nav-btn:hover,
.pager-nav-btn:focus-visible {
  background: transparent !important;
}

.admin-post-pagination .pager-nav-btn,
.admin-post-pagination .pager-nav-btn:hover,
.admin-post-pagination .pager-nav-btn:focus-visible {
  background: transparent !important;
  color: #111 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-width: auto !important;
}

/* Unify management-page visual theme. */
.admin-page,
.place-page,
.addplace-page {
  --line: #d1d5db;
  --border-unified: #d1d5db;
  --admin-surface-bg: #f3f4f6;
}

.place-page,
.place-page *,
.place-page *::before,
.place-page *::after,
.addplace-page,
.addplace-page *,
.addplace-page *::before,
.addplace-page *::after {
  border-color: var(--border-unified) !important;
}

.admin-page :is(.input, textarea, .admin-review-segmented-btn, .admin-post-table th, .admin-review-table th, .admin-user-table th, .admin-geo-table th, .ai-admin-table th, .admin-post-cover-empty, .admin-post-cover-thumb, .ai-admin-checkbox-card, .ai-admin-callout, .ai-admin-result-pre),
.place-page :is(.input, .place-search-input-web, .filter-pill),
.addplace-page :is(.input, textarea) {
  background: var(--admin-surface-bg) !important;
}

.place-page .place-search-wrap-web > .place-search-input-web {
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
}

/* Enlarge management-page form content and placeholders. */
.admin-page :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea),
.place-page :is(.input, .place-search-input-web, .filter-pill, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea),
.addplace-page :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea),
.place-editor-nav-right :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea) {
  font-size: var(--font-size-form) !important;
  line-height: var(--line-height-form) !important;
}

.admin-page :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), textarea)::placeholder,
.place-page :is(.input, .place-search-input-web, .filter-pill, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), textarea)::placeholder,
.addplace-page :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), textarea)::placeholder,
.place-editor-nav-right :is(.input, input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), textarea)::placeholder {
  font-size: var(--font-size-form) !important;
  line-height: var(--line-height-form) !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-create-sections .post-brand-token-input.input {
  height: auto !important;
  min-height: 54px !important;
  line-height: normal !important;
  background: #fff !important;
  align-items: center !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-brand-token-search {
  height: 34px !important;
  min-height: 34px !important;
  line-height: 1.35 !important;
  background: transparent !important;
}

.addplace-page .highlight-group-web {
  background: #fff !important;
  align-items: center !important;
}

.addplace-page .highlight-group-web .highlight-input-web.input {
  height: 34px !important;
  min-height: 34px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 0 !important;
  line-height: 1.35 !important;
}

.addplace-page #highlightGroup .highlight-input-web.input:focus,
.addplace-page #highlightGroup .highlight-input-web.input:focus-visible {
  box-shadow: none !important;
  outline: 0 !important;
}

.addplace-page .highlight-chip-web {
  border-color: #e5e7eb !important;
  border-radius: 6px !important;
  background: #f3f4f6 !important;
  color: #374151 !important;
  line-height: 1.2 !important;
}

.addplace-page .highlight-chip-remove-web {
  width: 22px !important;
  height: 22px !important;
  background: transparent !important;
  color: #ef4444 !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

.addplace-page .highlight-chip-remove-web:hover,
.addplace-page .highlight-chip-remove-web:focus-visible {
  color: #dc2626 !important;
}

/* Unify management-page dropdowns, button labels, and status copy. */
.admin-page :is(select, button, .btn, .admin-review-segmented-btn, .post-create-choice-btn, .muted, .pager-info, .admin-field-help, .admin-review-status, .ai-admin-status),
.place-page :is(select, button, .btn, .muted, .pager-info, .place-page-info, .poi-map-status),
.addplace-page :is(select, button, .btn, .muted, .pager-info, .place-page-info, .admin-field-help, .poi-map-status) {
  font-size: var(--font-size-body) !important;
  line-height: var(--line-height-body) !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-brand-token {
  border-color: #e5e7eb !important;
  border-radius: 6px !important;
  background: #f3f4f6 !important;
  color: #374151 !important;
  line-height: 1.2 !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-brand-token-remove {
  width: 22px !important;
  height: 22px !important;
  background: transparent !important;
  color: #ef4444 !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-brand-token-remove:hover,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-brand-token-remove:focus-visible {
  color: #dc2626 !important;
}

.place-page .place-list .place-card {
  box-shadow: none;
}

.addplace-page select.input,
.addplace-page select,
.place-editor-nav-right select.input,
.place-editor-nav-right select,
#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) select.input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("/icons/optiondown.png") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px 16px !important;
  padding-right: 40px !important;
}

#postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-rich-select-wrap .post-rich-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("/icons/optiondown.png") !important;
  background-repeat: no-repeat !important;
  background-position: right 1px center !important;
  background-size: 14px 14px !important;
  padding-right: 15px !important;
}

/* Keep post-editor place candidates aligned with home city suggestion style. */
.admin-page .post-place-search-result {
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  background: #fff !important;
  max-height: 360px !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 114, 128, 0.72) rgba(229, 231, 235, 0.9);
}

.admin-page .post-place-search-result::-webkit-scrollbar {
  width: 6px;
}

.admin-page .post-place-search-result::-webkit-scrollbar-track {
  background: rgba(229, 231, 235, 0.9);
  border-radius: 0;
}

.admin-page .post-place-search-result::-webkit-scrollbar-thumb {
  background: rgba(107, 114, 128, 0.72);
  border-radius: 0;
}

.admin-page .post-place-search-result::-webkit-scrollbar-thumb:hover {
  background: rgba(75, 85, 99, 0.88);
}

.admin-page .post-place-result-item,
.admin-page .post-place-result-item:focus-visible {
  display: grid !important;
  justify-content: stretch !important;
  justify-items: start !important;
  min-height: 40px;
  border: 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #111827 !important;
  box-shadow: none !important;
  padding: 8px 14px;
  text-align: left;
}

.admin-page .post-place-result-item--with-media {
  grid-template-columns: 56px minmax(0, 1fr) !important;
  min-height: 72px;
}

.admin-page .post-place-result-item--plain {
  grid-template-columns: minmax(0, 1fr) !important;
  min-height: 64px;
  align-items: start !important;
}

.admin-page .post-place-result-main {
  width: 100%;
  justify-self: stretch;
  text-align: left;
}

.admin-page .post-place-result-item:last-child {
  border-bottom: 0 !important;
}

.admin-page .post-place-result-item:hover,
.admin-page .post-place-result-item:focus-visible {
  background: #f8fafc !important;
}

.admin-page .post-place-result-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 600 15px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #111827 !important;
}

.admin-page .post-place-result-sub,
.admin-page .post-place-result-address {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 500 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  color: #6b7280 !important;
}

/* Keep geo-admin candidate rows plain (not global black pill buttons). */
.addplace-page .geo-admin-suggest-item,
.addplace-page .geo-admin-suggest-item:hover,
.addplace-page .geo-admin-suggest-item:focus-visible,
.addplace-page .geo-admin-suggest-item.active {
  border: 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: #fff !important;
  color: #111827 !important;
  box-shadow: none !important;
}

.admin-page .btn.secondary,
.admin-page .btn.secondary:hover,
.admin-page .btn.secondary:focus-visible,
.place-page .btn.secondary,
.place-page .btn.secondary:hover,
.place-page .btn.secondary:focus-visible,
.addplace-page .btn.secondary,
.addplace-page .btn.secondary:hover,
.addplace-page .btn.secondary:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
}

.admin-page .admin-user-footer-actions > .admin-user-pager-btn,
.admin-page .admin-user-footer-actions > .admin-user-pager-btn:hover,
.admin-page .admin-user-footer-actions > .admin-user-pager-btn:focus-visible {
  background: transparent !important;
  color: #111 !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  box-shadow: none !important;
  min-width: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.admin-page .admin-user-footer-actions > .admin-user-save-btn,
.admin-page .admin-user-footer-actions > .admin-user-save-btn:hover,
.admin-page .admin-user-footer-actions > .admin-user-save-btn:focus-visible {
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
  box-shadow: none !important;
  min-width: 120px !important;
  width: 120px !important;
  height: 41px !important;
  padding: 0 16px !important;
}

.admin-page .admin-user-footer-actions > :is(.admin-user-pager-btn, .admin-user-save-btn):disabled,
.admin-page .admin-user-footer-actions > :is(.admin-user-pager-btn, .admin-user-save-btn):disabled:hover,
.admin-page .admin-user-footer-actions > :is(.admin-user-pager-btn, .admin-user-save-btn):disabled:focus-visible {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
}

.admin-page .admin-place-card .admin-place-actions .place-action-btn,
.admin-page .admin-place-card .admin-place-actions .place-action-btn:hover,
.admin-page .admin-place-card .admin-place-actions .place-action-btn:focus-visible,
.admin-page .admin-geo-country-meta-panel .admin-geo-country-meta-edit-btn,
.admin-page .admin-geo-country-meta-panel .admin-geo-country-meta-edit-btn:hover,
.admin-page .admin-geo-country-meta-panel .admin-geo-country-meta-edit-btn:focus-visible,
.admin-page .admin-geo-country-meta-panel .admin-geo-country-meta-action-btn,
.admin-page .admin-geo-country-meta-panel .admin-geo-country-meta-action-btn:hover,
.admin-page .admin-geo-country-meta-panel .admin-geo-country-meta-action-btn:focus-visible,
.admin-page .admin-post-table .admin-post-actions-cell .place-action-btn,
.admin-page .admin-post-table .admin-post-actions-cell .place-action-btn:hover,
.admin-page .admin-post-table .admin-post-actions-cell .place-action-btn:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: 40px !important;
  min-width: 40px !important;
  height: 28px !important;
  min-height: 28px !important;
  padding: 0 4px !important;
  font: 400 12px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.admin-page .admin-place-card .admin-place-actions .admin-danger.place-action-btn,
.admin-page .admin-place-card .admin-place-actions .admin-danger.place-action-btn:hover,
.admin-page .admin-place-card .admin-place-actions .admin-danger.place-action-btn:focus-visible,
.admin-page .admin-post-table .admin-post-actions-cell .admin-danger.place-action-btn,
.admin-page .admin-post-table .admin-post-actions-cell .admin-danger.place-action-btn:hover,
.admin-page .admin-post-table .admin-post-actions-cell .admin-danger.place-action-btn:focus-visible {
  color: #d92d20 !important;
}

.place-page .place-list .place-card .place-card-head-actions .place-action-btn,
.place-page .place-list .place-card .place-card-head-actions .place-action-btn:hover,
.place-page .place-list .place-card .place-card-head-actions .place-action-btn:focus-visible {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #000000 !important;
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
  box-shadow: none !important;
  width: auto !important;
  min-width: 40px !important;
  height: 28px !important;
  min-height: 28px !important;
  padding: 0 11px !important;
  font: 500 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.place-page .place-list .place-card .place-card-head-actions .place-detail-action-btn,
.place-page .place-list .place-card .place-card-head-actions .place-detail-action-btn:hover,
.place-page .place-list .place-card .place-card-head-actions .place-detail-action-btn:focus-visible {
  background: #f3f4f6 !important;
  border: 0 !important;
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
}

.place-page .place-list .place-card .place-edit-action-btn,
.place-page .place-list .place-card .place-edit-action-btn:hover,
.place-page .place-list .place-card .place-edit-action-btn:focus-visible {
  background: #f3f4f6 !important;
  border: 0 !important;
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  color: #d92d20 !important;
}

.admin-page .admin-geo-edit-hero .btn.ghost,
.admin-page .admin-geo-edit-hero .btn.ghost:hover,
.admin-page .admin-geo-edit-hero .btn.ghost:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
}

/* Keep filter "show more/collapse" as plain text buttons. */
.place-page .place-filter-show-more,
.place-page .place-filter-show-more:hover,
.place-page .place-filter-show-more:focus-visible {
  background: transparent !important;
  color: #111827 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.me-page #favoritesPanel .place-filter-show-more,
body.me-page #favoritesPanel .place-filter-show-more:hover,
body.me-page #favoritesPanel .place-filter-show-more:focus-visible {
  background: transparent !important;
  color: #111827 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Keep right-side admin containers white instead of gray. */
.admin-page :is(.card, .admin-toolbar-card, .post-create-section, .admin-panel-card),
.place-page :is(.card, .top-controls-card, .place-list .place-card, .place-list .cover-box),
.addplace-page :is(.draft-strip, .json-preview, .pick-item, .geo-admin-suggest) {
  background: #fff !important;
}

/* Keep the outer right-side content wrappers white as well. */
.admin-page,
.admin-module-root,
.admin-panel-body,
.admin-content,
.admin-content.is-embed,
.admin-content.is-group,
.admin-content.is-welcome,
.admin-page > :is(.admin-content, .admin-post-card, .admin-geo-edit-card),
.place-editor-nav-right,
.addplace-card {
  background: #fff !important;
}

/* Keep admin dashboard group views fully white on the right panel. */
.admin-layout > .admin-content,
.admin-layout > .admin-content.is-group,
.admin-layout > .admin-content.is-group > .admin-panel-body,
.admin-layout > .admin-content.is-group > .admin-panel-body > .admin-panel-card,
.admin-layout > .admin-content.is-group > .admin-panel-body > .admin-action-grid {
  background: #fff !important;
}

/* Keep AI management panels white. */
.admin-page :is(.ai-admin-stack, .ai-admin-grid, .ai-admin-inline, .ai-admin-kb-editor, .ai-admin-kb-list) {
  background: #fff !important;
}

/* Keep post upload placeholders as 4:5 light-gray cards. */
.admin-page .post-image-item,
.admin-page .post-image-add-card {
  height: auto !important;
  aspect-ratio: 4 / 5;
}

.admin-page .post-image-add-card {
  border: 1px dashed var(--border-unified) !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: var(--admin-surface-bg) !important;
  color: #374151 !important;
}

.admin-page .post-image-add-card:hover,
.admin-page .post-image-add-card:focus-visible {
  background: var(--admin-surface-bg) !important;
  color: #374151 !important;
}

/* Sidebar navigation should render as a rounded list with row dividers. */
.admin-sidebar {
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
  padding: 0 !important;
  overflow: hidden;
}

.admin-sidebar h2 {
  display: none;
}

.admin-sidebar .admin-menu {
  gap: 0;
}

.admin-sidebar .admin-menu-item,
.admin-sidebar .admin-menu-item:hover,
.admin-sidebar .admin-menu-item:focus-visible,
.admin-sidebar .admin-menu-item.active,
.admin-sidebar .admin-menu-item.admin-menu-item-danger,
.admin-sidebar .admin-menu-item.admin-menu-item-danger.active {
  width: 100%;
  min-height: 0 !important;
  height: auto !important;
  padding: 8px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: transparent !important;
  color: #111 !important;
  box-shadow: none !important;
  font-weight: 700;
  text-align: center !important;
}

.admin-sidebar .admin-menu-item:last-child {
  border-bottom: 0 !important;
}

/* Keep place menu-image upload cards aligned with post upload style and reuse post classes. */
.addplace-page .menu-image-thumb-btn-web {
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: #fff !important;
  color: #374151 !important;
  box-shadow: none !important;
}

.addplace-page :is(#coverImageList, #menuImagesList) .post-image-item,
.addplace-page :is(#coverImageList, #menuImagesList) .post-image-add-card {
  width: 136px;
  height: auto !important;
  aspect-ratio: 4 / 5;
}

.addplace-page :is(#coverImageList, #menuImagesList).post-image-preview-list,
.addplace-page :is(#coverImageList, #menuImagesList).post-image-preview-list.is-file-drag-over {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.addplace-page :is(#coverImageList, #menuImagesList) .post-image-item {
  cursor: default;
}

.addplace-page #menuImagesList .post-image-thumb[data-action="menu-image-preview"] {
  cursor: pointer;
}

.addplace-page .menu-image-add-card-web,
.addplace-page #menuImagesList .post-image-add-card {
  width: 136px;
  height: auto !important;
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--border-unified) !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: var(--admin-surface-bg) !important;
  color: #374151 !important;
  box-shadow: none !important;
}

.addplace-page .menu-image-add-card-web:hover,
.addplace-page .menu-image-add-card-web:focus-visible,
.addplace-page #menuImagesList .post-image-add-card:hover,
.addplace-page #menuImagesList .post-image-add-card:focus-visible {
  background: var(--admin-surface-bg) !important;
  color: #374151 !important;
}

.addplace-page .pager-nav-btn,
.addplace-page .pager-nav-btn:hover,
.addplace-page .pager-nav-btn:focus-visible {
  background: transparent !important;
  color: #111 !important;
  box-shadow: none !important;
}

.place-page .pager-nav-btn,
.place-page .pager-nav-btn:hover,
.place-page .pager-nav-btn:focus-visible {
  background: transparent !important;
  color: #6b7280 !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-width: auto !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
}

.place-page .pager-nav-btn {
  font: inherit !important;
  font-size: var(--font-size-body) !important;
  line-height: var(--line-height-body) !important;
  font-weight: var(--font-weight-body) !important;
}

.place-page .pager-nav-btn:hover,
.place-page .pager-nav-btn:focus-visible {
  color: #6b7280 !important;
}

.place-page .pager-info,
.place-page .place-page-info {
  color: #6b7280 !important;
  font-size: var(--font-size-body) !important;
  line-height: var(--line-height-body) !important;
  font-weight: var(--font-weight-body) !important;
}

.admin-place-pagination .pager-info {
  display: inline-flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  min-width: 0;
  min-height: 0;
}

.admin-place-pagination .admin-place-page-edge,
.admin-place-pagination .admin-place-page-ellipsis {
  color: #6b7280 !important;
}

.admin-place-pagination .admin-place-page-ellipsis {
  display: inline-flex;
  justify-content: center;
  min-width: 22px;
  margin: 0 4px;
  flex: 0 0 auto;
}

.admin-place-pagination .admin-place-page-link,
.admin-place-pagination .admin-place-page-link:hover,
.admin-place-pagination .admin-place-page-link:focus-visible,
.admin-place-pagination .admin-place-page-link:visited {
  cursor: pointer;
  text-decoration: none !important;
  user-select: none;
}

.admin-place-pagination .admin-place-page-link.is-current {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.addplace-page .poi-page-info {
  min-width: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #9ca3af !important;
  box-shadow: none !important;
}

.addplace-page button#poiPrevPageBtn.poi-page-btn,
.addplace-page button#poiNextPageBtn.poi-page-btn,
.addplace-page button#poiPrevPageBtn.poi-page-btn:hover,
.addplace-page button#poiNextPageBtn.poi-page-btn:hover,
.addplace-page button#poiPrevPageBtn.poi-page-btn:focus-visible,
.addplace-page button#poiNextPageBtn.poi-page-btn:focus-visible,
.addplace-page button#poiPrevPageBtn.poi-page-btn:disabled,
.addplace-page button#poiNextPageBtn.poi-page-btn:disabled,
.addplace-page button#poiPrevPageBtn.poi-page-btn:disabled:hover,
.addplace-page button#poiNextPageBtn.poi-page-btn:disabled:hover,
.addplace-page button#poiPrevPageBtn.poi-page-btn:disabled:focus-visible,
.addplace-page button#poiNextPageBtn.poi-page-btn:disabled:focus-visible {
  min-width: auto !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: transparent !important;
  color: #9ca3af !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.addplace-page .addplace-form {
  gap: 16px;
}

.addplace-page .addplace-form .form-item {
  gap: 6px;
}

.addplace-page .addplace-form :is(.two-col-web, .three-col-web, .address-geo-web, .address-pane-web, #jpFields, #krFields, #nonRevBlock) {
  display: grid;
  gap: 16px 10px;
}

@media (min-width: 861px) {
  .addplace-page .admin-l1-row-web.is-jp-county-visible {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .addplace-page .admin-l1-row-web.is-jp-county-visible #provinceNameLabel {
    white-space: nowrap;
  }
}

.addplace-page .addplace-form :is(#jpFields, #krFields, #nonRevBlock).hidden {
  display: none !important;
}

.addplace-page .restore-addr-btn:not(.admin-medium-action-btn),
.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):hover,
.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):hover,
.addplace-page .restore-addr-btn:not(.admin-medium-action-btn):focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border-color: #e5e7eb !important;
}

.addplace-page .draft-strip .btn.secondary,
.addplace-page .draft-strip .btn.secondary:hover,
.addplace-page .draft-strip .btn.secondary:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: 100px !important;
  min-width: 100px !important;
  padding: 0 16px !important;
}

.addplace-page .draft-strip .draft-delete-btn,
.addplace-page .draft-strip .draft-delete-btn:hover,
.addplace-page .draft-strip .draft-delete-btn:focus-visible {
  color: #dc2626 !important;
}

.addplace-page .draft-strip .draft-delete-btn:hover,
.addplace-page .draft-strip .draft-delete-btn:focus-visible {
  color: #b91c1c !important;
}

.addplace-page .hours-detail .btn.secondary,
.addplace-page .hours-detail .btn.secondary:hover,
.addplace-page .hours-detail .btn.secondary:focus-visible {
  background: #f3f4f6 !important;
  color: #3f3f46 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 16px !important;
}

.addplace-page .hours-detail .slot-actions-web .btn.secondary {
  width: 160px !important;
  min-width: 160px !important;
  white-space: nowrap;
}

.addplace-page .hours-detail .slot-inline-action-btn {
  width: var(--slot-action-width, 160px) !important;
  min-width: var(--slot-action-width, 160px) !important;
  white-space: nowrap;
}

.addplace-page .hours-detail .slot-copy-placeholder-web {
  display: block;
  width: var(--slot-copy-width, 160px);
  min-width: var(--slot-copy-width, 160px);
  visibility: hidden;
  pointer-events: none;
}

.addplace-page .hours-detail .slot-remove-btn {
  width: var(--slot-remove-width, 96px) !important;
  min-width: var(--slot-remove-width, 96px) !important;
  white-space: nowrap;
}

.addplace-page .hours-detail .slot-remove-btn,
.addplace-page .hours-detail .slot-remove-btn:hover,
.addplace-page .hours-detail .slot-remove-btn:focus-visible {
  color: #dc2626 !important;
}

.addplace-page .hours-detail .slot-remove-btn:hover,
.addplace-page .hours-detail .slot-remove-btn:focus-visible {
  color: #b91c1c !important;
}

.addplace-page button.place-cover-upload-card,
.addplace-page button.place-cover-upload-card:hover,
.addplace-page button.place-cover-upload-card:focus-visible {
  width: 136px;
  height: auto !important;
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--border-unified) !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: var(--admin-surface-bg) !important;
  color: #374151 !important;
  box-shadow: none !important;
}

.addplace-page button.place-cover-upload-card:disabled {
  background: var(--admin-surface-bg) !important;
  color: #374151 !important;
}

/* Unified image-upload card style across post/place/activity editors. */
:is(
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-image-item,
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-image-add-card,
  .addplace-page :is(#coverImageList, #menuImagesList) .post-image-item,
  .addplace-page :is(#coverImageList, #menuImagesList) .post-image-add-card,
  .activity-editor-images :is(.post-image-item, .post-image-add-card),
  .activity-submit-images :is(.post-image-item, .post-image-add-card)
) {
  width: 136px;
  height: auto !important;
  aspect-ratio: 4 / 5;
}

:is(
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-image-add-card,
  .addplace-page :is(#coverImageList, #menuImagesList) .post-image-add-card,
  .addplace-page button.place-cover-upload-card,
  .activity-editor-images .post-image-add-card,
  .activity-submit-images .post-image-add-card
) {
  border: 1px dashed var(--border-unified) !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: var(--admin-surface-bg, #f9fafb) !important;
  color: #374151 !important;
  box-shadow: none !important;
}

:is(
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-image-add-card,
  .addplace-page :is(#coverImageList, #menuImagesList) .post-image-add-card,
  .addplace-page button.place-cover-upload-card,
  .activity-editor-images .post-image-add-card,
  .activity-submit-images .post-image-add-card
):is(:hover, :focus-visible) {
  background: var(--admin-surface-bg, #f9fafb) !important;
  color: #374151 !important;
}

:is(
  #postEditorRoot:is([data-mode="create"], [data-mode="edit"]) .post-image-add-card,
  .addplace-page :is(#coverImageList, #menuImagesList) .post-image-add-card,
  .addplace-page button.place-cover-upload-card,
  .activity-editor-images .post-image-add-card,
  .activity-submit-images .post-image-add-card
):disabled {
  opacity: 0.72;
  cursor: wait;
}

.admin-post-pagination .pager-info,
.admin-post-pagination .pager-nav-btn,
.admin-post-pagination .pager-nav-btn:hover,
.admin-post-pagination .pager-nav-btn:focus-visible {
  background: transparent !important;
  color: #6b7280 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-width: auto !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
}

.admin-post-pagination .pager-nav-btn {
  font: inherit !important;
  font-size: var(--font-size-body) !important;
  line-height: var(--line-height-body) !important;
  font-weight: var(--font-weight-body) !important;
}

.admin-post-pagination .pager-nav-btn:hover,
.admin-post-pagination .pager-nav-btn:focus-visible {
  color: #6b7280 !important;
}

.place-cover-crop-modal-content {
  width: min(720px, calc(100vw - 24px));
}

.place-cover-crop-note {
  margin-top: -4px;
}

.place-cover-crop-canvas-wrap {
  max-height: none;
}

/* Typography normalization */
.promo-banner h2,
.place-head h1,
.place-detail-head h1,
.admin-page h1.admin-title-module,
.admin-hero h1,
.admin-content-head h1,
.admin-geo-edit-card h1,
.editor-head h1,
.addplace-head h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-weight: var(--font-weight-h1);
}

.filter-head h2,
.section-head h2,
.category-block-head h3,
.post-main h3,
.place-main h3,
.panel-head h2,
.admin-geo-section-title,
.copy-modal-title,
.ai-admin-answer h3,
.ai-admin-kb-editor h3,
.ai-admin-kb-list h3,
.single-post-latest-head h3,
.single-post-sidebar-head h2,
.place-detail-menu h2,
.place-hot-sidebar-head h2,
.section-title {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-h2);
}

.trending-head h3,
.trending-title,
.category-post h3,
.place-list .name,
.admin-panel-card h3,
.admin-geo-country-name,
.admin-geo-level-name,
.admin-geo-row-title,
.ai-admin-entity-title,
.pick-main h3,
.form-label,
.place-detail-meta-card h3,
.place-detail-menu-title,
.item-name-bold,
.review-nickname,
.menu-text-name,
.post-title,
.single-post-section-title,
.single-post-top-feature-text,
.single-post-top-name,
.single-post-rank-index,
.single-post-rank-title,
.single-post-release-place-name,
.single-post-action-number,
.single-post-related-title,
.place-hot-name {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-h3);
}

.promo-banner p,
.post-main p,
.admin-geo-empty,
.admin-geo-loading,
.admin-geo-loadmore-text,
.place-search-input-web,
.rec-comment,
.info-value,
.arrive-value,
.poi-map-status,
.poi-result-ll,
.single-post-hero-meta,
.single-post-release-row > strong,
.single-post-release-place-sub,
.place-detail-content,
.place-detail-meta-card p,
.place-detail-eat-meta,
.ai-admin-entity-subtitle {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

.single-post-content {
  font-size: 16px;
  line-height: var(--line-height-body);
}

.meta-bar,
.promo-kicker,
.featured-hero-tag,
.featured-hero-author,
.trending-time,
.category-post-meta-row,
.muted,
.place-count,
.place-page-info,
.place-list .multilang,
.place-list .score-label,
.place-list .score-badge,
.admin-geo-country-count,
.admin-geo-level-count,
.admin-geo-row-subtitle,
.admin-geo-badge,
.admin-geo-alias,
.ai-admin-field > label,
.ai-admin-meta-label,
.ai-admin-pill,
.ai-admin-kv-key,
.hero-meta-text,
.hero-score-desc,
.hero-review-count,
.hero-bar-label,
.rec-score-label,
.rec-score-value,
.rec-rating-label,
.rec-mention,
.review-sort-btn,
.review-time,
.review-pro-tag,
.review-score-badge,
.menu-text-sub,
.menu-text-price,
.info-text,
.addr-note,
.arrive-nav-btn,
.post-nickname,
.post-date,
.single-post-latest-meta,
.single-post-top-feature-date,
.single-post-rank-date,
.single-post-top-rank,
.single-post-top-meta,
.single-post-release-row > span,
.single-post-release-chip,
.single-post-action-label,
.place-detail-score-label,
.place-detail-score-badge,
.place-detail-pill,
.place-hot-meta,
.footer-inner {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
}

/* Keep release labels same size as right-side values; weight is defined in component block. */
.single-post-release-row > span,
.single-post-release-block > span {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

/* Keep offline-place title size consistent with its detail text. */
.single-post-release-place-name {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
}

.place-detail .info-text {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-h3);
}

.place-hot-sidebar .place-hot-name {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: 700;
}

.place-hot-sidebar .place-hot-meta {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-weight: var(--font-weight-caption);
}

.place-hot-sidebar .place-hot-category {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
}

/* Home category post typography override */
.home-page .category-post h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-h3);
}

.home-page .featured-hero-title,
.home-page .trending-title .post-link,
.home-page .category-post h3 .post-link {
  font-weight: 700;
}

/* Keep homepage module titles visibly bold after typography normalization. */
.home-page .weekly-hot-head h2,
.home-page .category-block-head h3 {
  font-weight: var(--font-weight-h2);
}

.home-page .category-block-head h3 .post-link {
  font-weight: inherit;
}

.home-page .category-post .category-post-meta-row {
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-weight: var(--font-weight-caption);
  color: #ffffff;
}

.home-page .category-block-more-link {
  font-weight: var(--font-weight-body);
}

.home-index-page .nav-bar .chip {
  font-size: 14px;
  font-weight: 400;
}

.single-post-nav-bar .chip {
  font-size: 14px;
  font-weight: 400;
}

.post-list-nav-page .nav-bar .chip {
  font-size: 14px;
  font-weight: 400;
}

.place-list-nav-page .nav-bar .chip,
.place-detail-nav-page .nav-bar .chip {
  font-size: 14px;
  font-weight: 400;
}

.admin-nav-page .nav-bar .chip {
  font-size: 14px;
  font-weight: 400;
}

.home-index-page .nav-bar .site-location-pill.nav-location-pill {
  font-size: 14px;
  font-weight: 400;
}

.single-post-nav-bar .site-location-pill.nav-location-pill {
  font-size: 14px;
  font-weight: 400;
}

.post-list-nav-page .nav-bar .site-location-pill.nav-location-pill {
  font-size: 14px;
  font-weight: 400;
}

.place-list-nav-page .nav-bar .site-location-pill.nav-location-pill,
.place-detail-nav-page .nav-bar .site-location-pill.nav-location-pill {
  font-size: 14px;
  font-weight: 400;
}

.admin-nav-page .nav-bar .site-location-pill.nav-location-pill {
  font-size: 14px;
  font-weight: 400;
}

.home-index-page .nav-search-input,
.home-index-page .nav-search-input::placeholder,
.home-index-page .nav-bar .wx-login-btn {
  font-size: 12px;
}

.single-post-nav-bar .nav-search-input,
.single-post-nav-bar .nav-search-input::placeholder,
.single-post-nav-bar .wx-login-btn {
  font-size: 12px;
}

.post-list-nav-page .nav-search-input,
.post-list-nav-page .nav-search-input::placeholder,
.post-list-nav-page .nav-bar .wx-login-btn {
  font-size: 12px;
}

.place-list-nav-page .nav-search-input,
.place-list-nav-page .nav-search-input::placeholder,
.place-list-nav-page .nav-bar .wx-login-btn,
.place-detail-nav-page .nav-search-input,
.place-detail-nav-page .nav-search-input::placeholder,
.place-detail-nav-page .nav-bar .wx-login-btn {
  font-size: 12px;
}

.admin-nav-page .nav-search-input,
.admin-nav-page .nav-search-input::placeholder,
.admin-nav-page .nav-bar .wx-login-btn {
  font-size: 12px;
}

.home-index-page .nav-search-input,
.home-index-page .nav-bar .wx-login-btn {
  height: 41px;
}

.single-post-nav-bar .nav-search-input,
.single-post-nav-bar .wx-login-btn {
  height: 41px;
}

.post-list-nav-page .nav-search-input,
.post-list-nav-page .nav-bar .wx-login-btn {
  height: 41px;
}

.place-list-nav-page .nav-search-input,
.place-list-nav-page .nav-bar .wx-login-btn,
.place-detail-nav-page .nav-search-input,
.place-detail-nav-page .nav-bar .wx-login-btn {
  height: 41px;
}

.admin-nav-page .nav-search-input,
.admin-nav-page .nav-bar .wx-login-btn {
  height: 41px;
}

.home-index-page .nav-bar .wx-login-btn.wx-login-btn-round {
  min-width: 41px;
  width: 41px;
  height: 41px;
  padding: 0;
  border-radius: 50%;
}

.single-post-nav-bar .wx-login-btn.wx-login-btn-round {
  min-width: 41px;
  width: 41px;
  height: 41px;
  padding: 0;
  border-radius: 50%;
}

.post-list-nav-page .nav-bar .wx-login-btn.wx-login-btn-round {
  min-width: 41px;
  width: 41px;
  height: 41px;
  padding: 0;
  border-radius: 50%;
}

.place-list-nav-page .nav-bar .wx-login-btn.wx-login-btn-round,
.place-detail-nav-page .nav-bar .wx-login-btn.wx-login-btn-round {
  min-width: 41px;
  width: 41px;
  height: 41px;
  padding: 0;
  border-radius: 50%;
}

.admin-nav-page .nav-bar .wx-login-btn.wx-login-btn-round {
  min-width: 41px;
  width: 41px;
  height: 41px;
  padding: 0;
  border-radius: 50%;
}

.home-index-page .nav-bar .wx-login-btn,
.home-index-page .nav-bar .wx-login-btn:hover,
.home-index-page .nav-bar .wx-login-btn:focus-visible {
  background: #000;
  color: #fff;
  border-color: transparent;
}

.post-list-nav-page .nav-bar .wx-login-btn,
.post-list-nav-page .nav-bar .wx-login-btn:hover,
.post-list-nav-page .nav-bar .wx-login-btn:focus-visible {
  background: #000;
  color: #fff;
  border-color: transparent;
}

.place-list-nav-page .nav-bar .wx-login-btn,
.place-list-nav-page .nav-bar .wx-login-btn:hover,
.place-list-nav-page .nav-bar .wx-login-btn:focus-visible,
.place-detail-nav-page .nav-bar .wx-login-btn,
.place-detail-nav-page .nav-bar .wx-login-btn:hover,
.place-detail-nav-page .nav-bar .wx-login-btn:focus-visible {
  background: #000;
  color: #fff;
  border-color: transparent;
}

.admin-nav-page .nav-bar .wx-login-btn,
.admin-nav-page .nav-bar .wx-login-btn:hover,
.admin-nav-page .nav-bar .wx-login-btn:focus-visible {
  background: #000;
  color: #fff;
  border-color: transparent;
}

.nav-user-menu-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

html[data-nav-auth="user"] .nav-bar .wx-login-btn.wx-login-btn-round:not(.nav-user-avatar-btn) {
  width: 41px;
  min-width: 41px;
  height: 41px;
  padding: 0;
  border: 0;
  border-color: transparent;
  border-radius: 50%;
  overflow: hidden;
  background-color: transparent;
  background-image: var(--nav-auth-avatar-image, url("/icons/default-avatar.png"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

html[data-nav-auth="user"] .nav-bar .wx-login-btn.wx-login-btn-round:not(.nav-user-avatar-btn):hover,
html[data-nav-auth="user"] .nav-bar .wx-login-btn.wx-login-btn-round:not(.nav-user-avatar-btn):focus-visible {
  background-color: transparent;
  border-color: transparent;
  color: transparent;
}

.nav-bar .wx-login-btn.wx-login-btn-round.nav-user-avatar-btn {
  width: 41px;
  min-width: 41px;
  height: 41px;
  padding: 0;
  border: 0;
  border-color: transparent;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}

.home-index-page .nav-bar .wx-login-btn.wx-login-btn-round.nav-user-avatar-btn {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.post-list-nav-page .nav-bar .wx-login-btn.wx-login-btn-round.nav-user-avatar-btn {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.place-list-nav-page .nav-bar .wx-login-btn.wx-login-btn-round.nav-user-avatar-btn,
.place-detail-nav-page .nav-bar .wx-login-btn.wx-login-btn-round.nav-user-avatar-btn {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.admin-nav-page .nav-bar .wx-login-btn.wx-login-btn-round.nav-user-avatar-btn {
  width: 41px;
  min-width: 41px;
  height: 41px;
}

.nav-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-user-avatar-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #f8fafc;
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.nav-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 138px;
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  z-index: 60;
}

.nav-user-dropdown.is-open {
  display: grid;
  gap: 2px;
}

.nav-user-menu-item {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #0f172a;
  text-align: left;
  padding: 0 10px;
  font: 500 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  cursor: pointer;
}

.nav-user-menu-item:hover,
.nav-user-menu-item:focus-visible {
  background: rgba(15, 23, 42, 0.08);
  outline: none;
}

.nav-user-menu-item-danger {
  color: #b91c1c;
}

/* Keep detail modules separated without divider lines. */
.detail-article > .section-block {
  border-radius: var(--place-detail-module-radius, 28px);
}

.detail-article > .section-block + .section-block {
  border-top: 0;
  margin-top: 30px;
}

/* Keep spacing consistent between selected detail modules. */
.detail-article > .section-block--vibe + .section-block--rec,
.detail-article > .section-block--rec + .section-block--review,
.detail-article > .section-block--review + .section-block--menu,
.detail-article > .section-block--menu + .section-block--hours {
  border-top: 0;
  margin-top: 30px;
}

@media (max-width: 860px) {
  .detail-article > .section-block + .section-block {
    margin-top: 30px;
  }

  .detail-article > .section-block--vibe + .section-block--rec,
  .detail-article > .section-block--rec + .section-block--review,
  .detail-article > .section-block--review + .section-block--menu,
  .detail-article > .section-block--menu + .section-block--hours {
    border-top: 0;
    margin-top: 30px;
  }
}

/* Final override: enforce uniform 20px inner padding for all place-detail modules. */
.place-detail-page .section-block,
.place-detail-page .hero-score-block,
.place-detail-page .place-hot-sidebar {
  padding: 20px !important;
  border: 1px solid #000 !important;
}

.place-detail-page .section-block {
  gap: 20px !important;
}

.place-detail-page .section-body {
  gap: 20px;
}

.place-detail-page .place-hot-sidebar-head {
  padding: 0 0 20px !important;
}

.place-detail-page .place-hot-list {
  gap: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.place-detail-page .place-hot-item {
  padding: 0 !important;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  background: #fff !important;
  border-radius: 0;
  transition: background-color 0.18s ease;
}

.place-detail-page .place-hot-item + .place-hot-item {
  border-top: 1px solid #e5e7eb !important;
  margin-top: 14px;
  padding-top: 14px !important;
}

.place-detail-page .place-hot-item:hover {
  background: #fff !important;
  border-radius: 0;
}

.place-detail-page .place-hot-item.active,
.place-detail-page .place-hot-item.active:hover {
  background: #fff !important;
  border-radius: 0;
}

/* Final override: keep the manage-place keyword field pill-shaped in admin embed mode. */
.place-page .top-controls-card .place-search-wrap-web > #filterKeyword.place-search-input-web {
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
}

/* Keep nav search border black after global border-color normalization rules. */
.nav-bar .nav-search-input,
.nav-bar .nav-search-input:focus {
  border: 1px solid #000 !important;
}

/* Keep post-detail modules borderless after global border normalization. */
.single-post-nav-page .single-post-article,
.single-post-nav-page .single-post-sidebar,
.single-post-nav-page .single-post-latest {
  border: 0 !important;
}

/* Post detail body text should read like article copy, including pasted rich-text spans. */
.single-post-nav-page .single-post-content {
  --single-post-copy-line-height: var(--line-height-body);
  font-size: 16px;
  line-height: var(--single-post-copy-line-height);
}

.single-post-nav-page .single-post-content:not(.single-post-content-rich) br + br {
  display: block;
}

.single-post-nav-page .single-post-content-rich {
  gap: 0;
  line-height: var(--single-post-copy-line-height);
}

.single-post-nav-page .single-post-image-list--compact .single-post-image-viewport {
  width: min(300px, 100%);
}

.single-post-nav-page .single-post-image-list--compact .single-post-image-frame,
.single-post-nav-page .single-post-image-list--compact.single-post-image-list--single .single-post-image-frame {
  flex-basis: min(300px, calc((100vw - 48px) * 0.5));
}

.single-post-nav-page .single-post-image-list--compact .single-post-image {
  max-height: 380px;
}

.single-post-nav-page .single-post-rich-html p,
.single-post-nav-page .single-post-rich-html h2,
.single-post-nav-page .single-post-rich-html h3,
.single-post-nav-page .single-post-rich-html ul,
.single-post-nav-page .single-post-rich-html ol {
  margin-bottom: 0;
}

.single-post-nav-page .single-post-rich-html .single-post-rich-spacer {
  min-height: 0;
}

.single-post-nav-page .single-post-rich-html .single-post-rich-spacer > br {
  display: block;
}

.single-post-nav-page .single-post-rich-html br + br {
  display: block;
}

.single-post-nav-page .single-post-text:has(+ .single-post-standalone-place-wrap) {
  padding-bottom: 0;
}

.single-post-nav-page .single-post-text:has(+ .single-post-standalone-place-wrap) .single-post-content > :last-child,
.single-post-nav-page .single-post-text:has(+ .single-post-standalone-place-wrap) .single-post-rich-html:last-child > :last-child {
  margin-bottom: 0;
}

.single-post-nav-page .single-post-text + .single-post-standalone-place-wrap {
  margin-top: 10.24px;
}

.single-post-nav-page .single-post-rich-html,
.single-post-nav-page .single-post-rich-html p,
.single-post-nav-page .single-post-rich-html span,
.single-post-nav-page .single-post-rich-html li,
.single-post-nav-page .single-post-rich-html a,
.single-post-nav-page .single-post-rich-html strong,
.single-post-nav-page .single-post-rich-html em {
  font-size: inherit !important;
  line-height: inherit !important;
}

.single-post-nav-page .single-post-article .single-post-standalone-place.card {
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 8px;
  background: #fff;
}

.single-post-nav-page .single-post-standalone-place .single-post-release-place-name {
  color: #111827;
}

.single-post-nav-page .single-post-place-card-list {
  width: min(600px, calc(100% - 40px));
  justify-self: center;
  margin: 32px auto 4px;
  padding: 0 !important;
  border: 1px solid #000 !important;
  border-radius: 16px !important;
  background: #fff;
  overflow: hidden;
}

.single-post-nav-page .single-post-place-card-list .single-post-rich-place-card {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.single-post-nav-page .single-post-place-card-list .single-post-rich-place-card + .single-post-rich-place-card {
  border-top: 1px solid #d1d5db !important;
}

.single-post-nav-page .single-post-place-card-list .single-post-rich-place-card::after {
  display: none !important;
}

.single-post-nav-page .single-post-place-card-list .single-post-rich-place-cover-wrap {
  padding: 10px !important;
  box-sizing: border-box;
  background: #fff;
}

@media (max-width: 760px) {
  .single-post-nav-page .single-post-content {
    font-size: 17px;
    line-height: var(--single-post-copy-line-height);
  }

  .single-post-nav-page .single-post-image-list--compact .single-post-image-viewport {
    width: min(300px, calc((100vw - 40px) * 0.5));
  }

  .single-post-nav-page .single-post-image-list--compact .single-post-image-frame,
  .single-post-nav-page .single-post-image-list--compact.single-post-image-list--single .single-post-image-frame {
    flex-basis: min(300px, calc((100vw - 40px) * 0.5));
  }

  .single-post-nav-page .single-post-place-card-list {
    width: min(600px, calc(100% - 32px));
  }
}

/* Keep place-list/me-favorites filter module as a white rounded card with black border. */
body.place-list-nav-page .top-controls-card.place-filter-panel,
body.me-page #favoritesPanel .top-controls-card.place-filter-panel {
  padding: 20px !important;
  border: 1px solid #000 !important;
  border-radius: 20px !important;
  background: #fff !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-wrap {
  min-width: 136px;
  width: 136px;
}

body.place-list-nav-page .place-filter-apply-row .place-filter-reset-btn,
body.place-list-nav-page .place-filter-apply-row .place-filter-reset-btn:hover,
body.place-list-nav-page .place-filter-apply-row .place-filter-reset-btn:focus-visible,
body.place-list-nav-page .place-mobile-filter-apply-row .place-filter-reset-btn,
body.place-list-nav-page .place-mobile-filter-apply-row .place-filter-reset-btn:hover,
body.place-list-nav-page .place-mobile-filter-apply-row .place-filter-reset-btn:focus-visible,
body.me-page #favoritesPanel .place-filter-apply-row .place-filter-reset-btn,
body.me-page #favoritesPanel .place-filter-apply-row .place-filter-reset-btn:hover,
body.me-page #favoritesPanel .place-filter-apply-row .place-filter-reset-btn:focus-visible {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #000000 !important;
  border-color: #000000 !important;
}

/* Use a custom suggestion-style sort menu on place-list instead of the native select shell. */
body.place-list-nav-page .place-list-toolbar .place-sort-trigger,
body.place-list-nav-page .place-list-toolbar .place-sort-trigger:hover,
body.place-list-nav-page .place-list-toolbar .place-sort-trigger:focus-visible,
body.place-list-nav-page .place-list-toolbar .place-sort-shell.is-open .place-sort-trigger {
  background-color: #ffffff !important;
  background-image: url("/icons/optiondown.png") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px 16px !important;
  border: 1px solid #000000 !important;
  border-color: #000000 !important;
  border-radius: 999px !important;
  -webkit-border-radius: 999px !important;
  box-shadow: none !important;
  padding: 0 42px 0 16px !important;
  font-size: 15px !important;
  line-height: 38px !important;
  font-weight: 400 !important;
  transform: none !important;
  transition: none !important;
  text-shadow: none !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-display {
  padding: 0;
  font: 700 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

body.place-list-nav-page .place-list-toolbar .place-sort-menu {
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  max-height: 360px !important;
  overflow-y: auto !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-menu .place-sort-option,
body.place-list-nav-page .place-list-toolbar .place-sort-menu .place-sort-option:focus-visible {
  border: 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #111827 !important;
  box-shadow: none !important;
  padding: 12px 14px !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-menu .place-sort-option:last-child {
  border-bottom: 0 !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-menu .place-sort-option:hover,
body.place-list-nav-page .place-list-toolbar .place-sort-menu .place-sort-option:focus-visible,
body.place-list-nav-page .place-list-toolbar .place-sort-menu .place-sort-option.is-active {
  background: #f9fafb !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-menu .post-place-result-name {
  font: 400 14px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-menu .place-sort-option.is-active .post-place-result-name {
  font-weight: 700 !important;
}

body.place-list-nav-page .place-list-toolbar .place-sort-select {
  position: absolute !important;
  inset: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Keep place-list place cards using the same black border/radius/padding style. */
body.place-list-nav-page .place-list .place-card {
  padding: 16px !important;
  border: 1px solid #000 !important;
  border-color: #000 !important;
  border-radius: 20px !important;
  background: #fff !important;
}

body.place-list-nav-page .place-list .cover-left {
  border-radius: 20px !important;
}

.search-results-page {
  --me-top-control-height: 42px;
  --me-top-control-border: rgba(15, 23, 42, 0.18);
  --me-post-radius: 18px;
  background:
    radial-gradient(circle at 18% 8%, rgba(251, 191, 36, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(34, 197, 94, 0.14), transparent 28%),
    radial-gradient(circle at 50% 96%, rgba(56, 189, 248, 0.22), transparent 34%),
    linear-gradient(180deg, #f7f4ec 0%, #eef6ff 100%);
}

.search-results-page .search-nav-banner {
  min-height: 176px;
}

.search-nav-banner-inner {
  align-items: flex-end;
  padding-top: 28px;
  padding-bottom: 28px;
}

.search-nav-banner-copy {
  display: grid;
  gap: 10px;
}

.search-nav-banner-subtitle {
  margin: 0;
  color: rgba(243, 244, 246, 0.84);
  font: 500 15px/1.6 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.search-results-main {
  padding-top: 20px;
  padding-bottom: 24px;
}

.search-results-page .me-tab-shell {
  width: 100%;
}

.search-results-page .me-flat-tab.is-active[data-tab="places"],
.search-results-page .me-flat-tab.is-active[data-tab="posts"],
.search-results-page .me-flat-tab.is-active[data-tab="users"] {
  background: #ffffff;
  color: #030712;
  border-color: #000000;
  border-bottom-color: transparent;
  z-index: 5;
}

.search-flat-board {
  min-height: 640px;
  padding: 20px 22px 24px;
}

.search-tab-panel {
  min-height: 520px;
}

.search-tab-panel.hidden {
  display: none;
}

.search-tab-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--me-top-control-height);
  margin-bottom: 14px;
}

.search-empty-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #000;
  background: #ffffff;
}

.search-place-results {
  width: 100%;
}

.search-place-layout {
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
}

.search-place-list-panel .search-tab-toolbar {
  margin-bottom: 0;
}

.search-place-filter-empty {
  color: #64748b;
  font: 400 14px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.search-place-pager {
  margin-top: 12px;
}

.search-results-page .search-place-list-panel .place-list {
  display: grid;
}

.search-results-page .search-place-list-panel .place-list .place-card {
  padding: 16px !important;
  border-radius: 8px;
}

.search-results-page #postsPanel .post-feed {
  gap: 14px;
}

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

.search-user-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid #000000;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: none;
}

.search-user-card-media {
  position: relative;
  display: block;
  min-height: 220px;
  background:
    radial-gradient(circle at 24% 22%, rgba(251, 191, 36, 0.34), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.22), transparent 26%),
    linear-gradient(140deg, #f6f1e7 0%, #dbeafe 100%);
  border-right: 1px solid #000000;
}

.search-user-avatar {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.search-user-card-main {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px 28px;
}

.search-user-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.search-user-card-name {
  margin: 0;
  min-width: 0;
  color: #030712;
  font: 800 30px/1.18 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.search-user-card-name .post-link {
  color: inherit;
}

.search-user-card-link {
  min-width: 118px;
  border-radius: 999px;
  border-color: #000000;
  color: #111111;
}

.search-user-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.search-user-badge,
.search-user-badge-empty {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #000000;
  background: #ffffff;
  color: #111827;
  font: 700 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.search-user-badge {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
}

.search-user-badge-empty {
  color: #6b7280;
}

.search-user-pager {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .search-user-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .search-user-card-media,
  .search-user-avatar {
    min-height: 180px;
  }

  .search-user-card-name {
    font-size: 24px;
  }
}

@media (max-width: 860px) {
  .search-results-page .search-nav-banner {
    min-height: 158px;
  }

  .search-flat-board {
    padding: 18px 16px 20px;
  }

  .search-results-page .search-tab-toolbar {
    margin-bottom: 12px;
  }

  .search-place-layout {
    grid-template-columns: 1fr;
  }

  .search-place-filter-sidebar {
    position: static;
    top: auto;
  }

  .search-user-card {
    grid-template-columns: 1fr;
  }

  .search-user-card-media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid #000000;
  }

  .search-user-avatar {
    min-height: 220px;
  }

  .search-user-card-main {
    padding: 18px 18px 20px;
  }

  .search-user-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-user-card-link {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .search-nav-banner-subtitle {
    font-size: 14px;
  }

  .search-results-page .me-flat-tab {
    min-width: 96px;
    padding: 0 14px;
  }

  .search-flat-board {
    padding: 16px 12px 18px;
  }

  .search-place-layout {
    grid-template-columns: 1fr;
  }

  .search-place-filter-sidebar {
    position: static;
    top: auto;
  }

  .search-place-list-panel .place-list-toolbar {
    display: flex;
  }

  .search-results-page .search-place-list-panel .place-list .card-2col {
    display: block;
    min-height: 0;
  }

  .search-results-page .search-place-list-panel .place-list .cover-box {
    display: block;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 5;
    padding: 0;
  }

  .search-results-page .search-place-list-panel .place-list .cover-box::before {
    display: none;
    content: none;
  }

  .search-results-page .search-place-list-panel .place-list .cover-left {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
  }

  .search-results-page .search-place-list-panel .place-list .right-col {
    padding: 0;
  }

  .search-results-page .search-place-list-panel .place-list .top-line {
    align-items: flex-start;
  }

  .search-results-page .search-place-list-panel .place-list .place-card-head-actions {
    display: none;
  }

  .search-user-card-name {
    font-size: 22px;
  }

  .search-user-badge,
  .search-user-badge-empty {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }
}

/* Home mobile drawer menu trigger (desktop hidden). */
.nav-mobile-menu-btn {
  display: none;
  width: 41px;
  min-width: 41px;
  height: 41px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-mobile-menu-icon {
  width: 17px;
  height: 13px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-mobile-menu-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.home-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 92;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.home-mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.home-mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.4);
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease;
}

.home-mobile-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(84vw, 320px);
  background: #ffffff;
  box-shadow: -12px 0 28px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
  padding: 18px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.home-mobile-drawer.is-open .home-mobile-drawer-backdrop {
  opacity: 1;
}

.home-mobile-drawer.is-open .home-mobile-drawer-panel {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-mobile-drawer,
  .home-mobile-drawer-backdrop,
  .home-mobile-drawer-panel,
  .place-mobile-filter-sheet,
  .place-mobile-filter-backdrop,
  .place-mobile-filter-panel-sheet {
    transition: none !important;
  }
}

.home-mobile-drawer-user {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.home-mobile-drawer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: linear-gradient(180deg, #f8fafc 0%, #e5e7eb 100%);
  position: relative;
}

.home-mobile-drawer-avatar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #9ca3af;
  transform: translateX(-50%);
}

.home-mobile-drawer-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 24px;
  height: 12px;
  border-radius: 12px 12px 8px 8px;
  background: #9ca3af;
  transform: translateX(-50%);
}

.home-mobile-drawer-login {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #111827;
  text-decoration: none;
  font: 700 18px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.home-mobile-drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background-color: #e5e7eb;
  background-image: url("/icons/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 0;
  cursor: pointer;
  justify-self: end;
}

.home-mobile-drawer-close:hover,
.home-mobile-drawer-close:focus-visible {
  background-color: #d1d5db;
}

.home-mobile-drawer-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 14px 0 12px;
}

.home-mobile-drawer-category-nav {
  display: grid;
  gap: 0;
}

.home-mobile-drawer-category-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 10px;
  border-radius: 10px;
  color: #111827;
  text-decoration: none;
  font: 500 15px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  position: relative;
}

.home-mobile-drawer-category-link:not(:last-child)::after {
  content: none;
  display: none;
}

.home-mobile-drawer-category-link.active {
  background: #f3f4f6;
  color: #0f172a;
}

.home-mobile-drawer-category-empty {
  padding: 8px 10px;
  color: #6b7280;
  font: 400 14px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.home-mobile-drawer-social {
  margin-top: 0;
  padding: 8px 2px 6px;
  display: grid;
  gap: 10px;
}

.home-mobile-drawer-follow-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 14px 2px 8px;
}

.home-mobile-drawer-social-title {
  margin: 0;
  color: #111827;
  font: 600 16px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.home-mobile-drawer-social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-mobile-drawer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.home-mobile-drawer-social-link:hover,
.home-mobile-drawer-social-link:focus-visible {
  background: transparent;
}

.home-mobile-drawer-social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

@media (max-width: 860px) {
  .me-page {
    --me-post-radius: 14px;
  }

  .ui-skeleton::after {
    animation: none !important;
    display: none !important;
  }

  body.home-mobile-drawer-open {
    overflow: hidden;
  }

  .home-top-nav.topbar {
    padding-left: 0;
    padding-right: 0;
  }

  /* Global mobile nav layout across pages using home-top-nav shell. */
  .home-top-nav .nav-inner.home-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 0 12px;
  }

  .home-top-nav .home-nav-left {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .home-top-nav .home-site-name {
    height: auto;
    min-height: 46px;
    font-size: 40px;
    line-height: 0.96;
    justify-self: flex-start;
  }

  .home-top-nav .main-nav {
    width: 100%;
    order: 0;
    margin-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-top-nav .main-nav::-webkit-scrollbar {
    display: none;
  }

  .home-top-nav .nav-right {
    order: 0;
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }

  .home-top-nav .nav-search-input {
    width: min(210px, calc(100vw - 92px));
  }

  body.shared-home-nav-page .home-top-nav .nav-inner.home-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 0 12px;
  }

  body.shared-home-nav-page .home-top-nav .home-nav-left {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  body.shared-home-nav-page .home-top-nav .home-site-name {
    height: auto;
    min-height: 46px;
    font-size: 40px;
    line-height: 0.96;
    justify-self: center;
    text-align: center;
  }

  body.shared-home-nav-page .home-top-nav .main-nav {
    display: none;
  }

  body.shared-home-nav-page .home-top-nav .nav-right {
    order: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body.shared-home-nav-page .home-top-nav .nav-search-input {
    width: 100%;
    min-width: 0;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-inner.home-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 0 12px;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .home-nav-left {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .home-site-name {
    height: auto;
    min-height: 46px;
    font-size: 40px;
    line-height: 0.96;
    justify-self: center;
    text-align: center;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .main-nav {
    display: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-right {
    order: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-search-input {
    width: 100%;
    min-width: 0;
  }

  body.is-mobile-nav.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-right .wx-login-btn {
    display: none !important;
  }

  body.is-mobile-nav.home-index-page:not(.me-page):not(.admin-nav-page) .home-top-nav .nav-mobile-menu-btn {
    display: inline-flex;
  }

  body.single-post-nav-page .home-top-nav .nav-inner.home-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 0 12px;
  }

  body.single-post-nav-page .home-top-nav .home-nav-left {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  body.single-post-nav-page .home-top-nav .home-site-name {
    height: auto;
    min-height: 46px;
    font-size: 40px;
    line-height: 0.96;
    justify-self: center;
    text-align: center;
  }

  body.single-post-nav-page .home-top-nav .main-nav {
    display: none;
  }

  body.single-post-nav-page .home-top-nav .nav-right {
    order: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body.single-post-nav-page .home-top-nav .nav-search-input {
    width: 100%;
    min-width: 0;
  }

  body.is-mobile-nav.single-post-nav-page .home-top-nav .nav-right .wx-login-btn {
    display: none !important;
  }

  body.is-mobile-nav.single-post-nav-page .home-top-nav .nav-mobile-menu-btn {
    display: inline-flex;
  }

  body.post-list-nav-page .home-top-nav .nav-inner.home-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 0 12px;
  }

  body.post-list-nav-page .home-top-nav .home-nav-left {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  body.post-list-nav-page .home-top-nav .home-site-name {
    height: auto;
    min-height: 46px;
    font-size: 40px;
    line-height: 0.96;
    justify-self: center;
    text-align: center;
  }

  body.post-list-nav-page .home-top-nav .main-nav {
    display: none;
  }

  body.post-list-nav-page .home-top-nav .nav-right {
    order: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body.post-list-nav-page .home-top-nav .nav-search-input {
    width: 100%;
    min-width: 0;
  }

  body.is-mobile-nav.post-list-nav-page .home-top-nav .nav-right .wx-login-btn {
    display: none !important;
  }

  body.is-mobile-nav.post-list-nav-page .home-top-nav .nav-mobile-menu-btn {
    display: inline-flex;
  }

  body.place-detail-nav-page .home-top-nav .nav-inner.home-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 0 12px;
  }

  body.place-detail-nav-page .home-top-nav .home-nav-left {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  body.place-detail-nav-page .home-top-nav .home-site-name {
    height: auto;
    min-height: 46px;
    font-size: 40px;
    line-height: 0.96;
    justify-self: center;
    text-align: center;
  }

  body.place-detail-nav-page .home-top-nav .main-nav {
    display: none;
  }

  body.place-detail-nav-page .home-top-nav .nav-right {
    order: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body.place-detail-nav-page .home-top-nav .nav-search-input {
    width: 100%;
    min-width: 0;
  }

  body.is-mobile-nav.place-detail-nav-page .home-top-nav .nav-right .wx-login-btn {
    display: none !important;
  }

  body.is-mobile-nav.place-detail-nav-page .home-top-nav .nav-mobile-menu-btn {
    display: inline-flex;
  }

  body.place-list-nav-page .home-top-nav .nav-inner.home-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 0 12px;
  }

  body.place-list-nav-page .home-top-nav .home-nav-left {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  body.place-list-nav-page .home-top-nav .home-site-name {
    height: auto;
    min-height: 46px;
    font-size: 40px;
    line-height: 0.96;
    justify-self: center;
    text-align: center;
  }

  body.place-list-nav-page .home-top-nav .main-nav {
    display: none;
  }

  body.place-list-nav-page .home-top-nav .nav-right {
    order: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 8px;
  }

  body.place-list-nav-page .home-top-nav .nav-search-input {
    width: 100%;
    min-width: 0;
  }

  body.is-mobile-nav.place-list-nav-page .home-top-nav .nav-right .wx-login-btn {
    display: none !important;
  }

  body.is-mobile-nav.place-list-nav-page .home-top-nav .nav-mobile-menu-btn {
    display: inline-flex;
  }

  body.place-list-nav-page .place-filter-sidebar {
    display: none;
  }

  body.place-list-nav-page .place-list-toolbar {
    display: none;
  }

  body.place-list-nav-page .place-mobile-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 2px 4px;
    margin-bottom: 2px;
  }

  body.place-list-nav-page .place-mobile-filter-apply-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 2px 4px;
    margin-bottom: 4px;
  }

  body.place-list-nav-page .place-mobile-filter-apply-btn,
  body.place-list-nav-page .place-mobile-filter-reset-btn {
    min-height: 36px;
    font-size: 14px;
  }

  body.place-list-nav-page .place-mobile-filter-bar::-webkit-scrollbar {
    display: none;
  }

  body.place-list-nav-page .place-mobile-filter-trigger {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 11px;
    background: #ffffff !important;
    border: 1px solid #000000 !important;
    color: #111111 !important;
    box-shadow: none !important;
  }

  body.place-list-nav-page .place-mobile-filter-trigger:hover,
  body.place-list-nav-page .place-mobile-filter-trigger:focus-visible {
    background: #ffffff !important;
    color: #111111 !important;
    border-color: #000000 !important;
  }

  body.place-list-nav-page .place-mobile-filter-trigger .place-mobile-filter-trigger-label,
  body.place-list-nav-page .place-mobile-filter-trigger .place-mobile-filter-trigger-value {
    color: #111111 !important;
  }

  body.place-list-nav-page .place-mobile-filter-trigger .place-mobile-filter-trigger-caret {
    border-right-color: #111111 !important;
    border-bottom-color: #111111 !important;
  }

  body.place-list-nav-page .place-mobile-filter-sheet {
    display: block;
  }

  body.place-list-nav-page .place-list .place-card {
    padding: 16px !important;
    border: 1px solid #000 !important;
    border-color: #000 !important;
    border-radius: 20px !important;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
  }

  body.place-list-nav-page .place-list .card-2col {
    display: block;
    min-height: 0;
    height: auto;
  }

  body.place-list-nav-page .place-list .cover-box {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 5;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #0f172a;
  }

  body.place-list-nav-page .place-list .cover-box::before {
    display: none;
    content: none;
  }

  body.place-list-nav-page .place-list .cover-left {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  body.place-list-nav-page .place-list .mobile-cover-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    min-height: 58%;
    padding: 14px 12px 12px;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(8, 10, 16, 0) 0%, rgba(8, 10, 16, 0.82) 64%, rgba(8, 10, 16, 0.92) 100%);
    pointer-events: none;
  }

  body.place-list-nav-page .place-list .mobile-cover-title {
    margin: 0;
    color: #ffffff;
    font: 900 20px/1.18 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.38);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  body.place-list-nav-page .place-list .mobile-cover-intro {
    min-width: 0;
    max-width: 100%;
    color: rgba(248, 250, 252, 0.9);
    font: 500 13px/1.3 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.place-list-nav-page .place-list .mobile-cover-category {
    color: rgba(226, 232, 240, 0.88);
    font: 500 13px/1.25 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
  }

  body.place-list-nav-page .place-list .mobile-cover-score-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  body.place-list-nav-page .place-list .mobile-cover-score-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font: 800 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
    white-space: nowrap;
  }

  body.place-list-nav-page .place-list .mobile-cover-score-item--pro {
    background: linear-gradient(135deg, #57e9f2 0%, #45d4fb 100%);
    color: #0b3e4b;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.22);
  }

  body.place-list-nav-page .place-list .mobile-cover-score-item--experience {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #0d3d2d;
    box-shadow: 0 8px 20px rgba(6, 78, 59, 0.2);
  }

  body.place-list-nav-page .place-list .mobile-cover-score-label {
    color: inherit;
    font: inherit;
  }

  body.place-list-nav-page .place-list .mobile-cover-score-badge {
    display: inline;
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    color: inherit;
    font: inherit;
    background: transparent;
    box-shadow: none;
  }

  body.place-list-nav-page .place-list .mobile-cover-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  body.place-list-nav-page .place-list .mobile-cover-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font: 500 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  body.place-list-nav-page .place-list .right-col {
    padding: 0;
    overflow: visible;
    gap: 10px;
  }

  body.place-list-nav-page .place-list .right-top {
    display: none;
  }

  body.place-list-nav-page .place-list .right-col.right-col-no-mobile-content {
    display: none;
  }

  body.place-list-nav-page .place-list .latest-mini {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.place-list-nav-page .place-list .latest-mini--single {
    grid-template-columns: minmax(0, 1fr);
  }

  body.place-list-nav-page .place-list .mini-sq {
    width: 100%;
    padding-top: 100%;
    border-radius: 14px;
  }

  body.place-list-nav-page .place-list .mobile-manage-row {
    display: flex;
    justify-content: flex-end;
  }

  body.place-list-nav-page .place-list .mobile-manage-row .place-action-btn {
    width: auto !important;
    min-width: 60px !important;
    padding: 0 12px !important;
  }

  body.place-mobile-filter-open {
    overflow: hidden;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-band {
    margin-top: 0;
    padding-top: 12px;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-slide {
    grid-template-columns: 1fr;
    gap: 10px;
    align-content: start;
    align-items: start;
    align-self: flex-start;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-nav-btn {
    display: none !important;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-card {
    --weekly-hot-card-radius: 18px;
    --weekly-hot-card-padding: 10px;
    --weekly-hot-cover-width: 104px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: calc((var(--weekly-hot-cover-width) * 5 / 4) + (var(--weekly-hot-card-padding) * 2));
    aspect-ratio: auto;
    border-radius: var(--weekly-hot-card-radius);
    background: #ffffff;
    border: 0;
    padding: var(--weekly-hot-card-padding);
    overflow: hidden;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-cover-link {
    position: relative;
    inset: auto;
    width: var(--weekly-hot-cover-width);
    flex: 0 0 var(--weekly-hot-cover-width);
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-cover,
  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-cover-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-main {
    --weekly-hot-main-inset: 0;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex: 0 1 220px;
    max-width: calc(100% - var(--weekly-hot-cover-width) - 12px);
    height: calc(var(--weekly-hot-cover-width) * 5 / 4);
    min-height: calc(var(--weekly-hot-cover-width) * 5 / 4);
    padding: 0;
    border-radius: 0;
    color: #111111;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-main::before {
    display: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-sub {
    display: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-main h3 {
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #111111;
    text-shadow: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-score-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
    color: #111111;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-score-item {
    gap: 6px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-score-label {
    color: inherit;
    text-shadow: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-latest-review {
    margin: -2px 0 0;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.45;
    text-shadow: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-score-badge {
    width: auto;
    min-width: 0;
    height: auto;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-meta-pill {
    padding: 3px 10px;
    font-size: 12px;
    line-height: 1.2;
    color: #687385;
    border-color: transparent;
    background: #f2f5f7;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .weekly-hot-subline {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    border: 0;
    background: #e5e7eb;
    color: #4b5563;
    text-shadow: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-block-grid {
    display: block;
    column-count: 2;
    column-gap: 10px;
    margin-top: 12px;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post {
    display: inline-block;
    width: 100%;
    margin: 0 0 12px;
    border-radius: 14px;
    background: transparent;
    border: 0;
    padding: 0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post.category-post-skeleton::after {
    display: none;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post-cover-link,
  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post-cover-placeholder-link {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post-cover,
  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post-cover-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 0;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px 12px 10px;
    display: grid;
    gap: 6px;
    text-align: left;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post h3 {
    font-size: 15px;
    line-height: 1.35;
    color: #f8fafc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post h3 .post-link {
    -webkit-line-clamp: 2;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post .category-post-meta-row {
    color: rgba(226, 232, 240, 0.88);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    gap: 10px;
  }

  body.home-index-page:not(.me-page):not(.admin-nav-page) .category-post .view-count-icon {
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
}
.admin-page-shell {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.admin-module-root .brand-editor-shell {
  padding: 0;
}

.brand-editor-shell {
  min-width: 0;
}

.brand-name-row,
.brand-meta-row {
  display: grid;
  gap: 10px;
  align-items: start;
}

.brand-name-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-meta-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-social-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 12px;
}

.brand-logo-upload {
  display: grid;
  gap: 8px;
}

.brand-logo-upload #brandLogoUploadHint:empty {
  display: none;
}

.brand-logo-list.post-image-preview-list,
.brand-logo-list.post-image-preview-list.is-file-drag-over {
  padding: 0;
  border: 0;
  background: transparent;
}

.brand-logo-list .post-image-item,
.brand-logo-list .post-image-add-card {
  width: 136px;
  height: auto !important;
  aspect-ratio: 4 / 5;
}

.brand-logo-list .post-image-item {
  cursor: default;
}

.brand-logo-list .post-image-add-card,
.brand-logo-list .post-image-add-card:hover,
.brand-logo-list .post-image-add-card:focus-visible {
  border: 1px dashed var(--border-unified, var(--line)) !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: var(--admin-surface-bg, #f3f4f6) !important;
  color: #374151 !important;
  box-shadow: none !important;
}

.brand-description-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.brand-description-wrap textarea {
  width: 100%;
  min-height: 150px;
  box-sizing: border-box;
  padding-bottom: 34px;
}

.brand-description-counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #6b7280;
  font: 600 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  pointer-events: none;
}

.brand-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-editor-actions--edit {
  justify-content: space-between;
  align-items: center;
}

.brand-editor-actions--create {
  justify-content: flex-end;
  align-items: center;
}

.brand-editor-actions-right {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  flex-wrap: wrap;
}

.brand-editor-actions .brand-editor-action {
  width: 92px;
  min-width: 92px;
  height: 41px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
  font: 600 13px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  text-decoration: none;
}

.brand-editor-actions .brand-editor-action--back,
.brand-editor-actions .brand-editor-action--back:hover,
.brand-editor-actions .brand-editor-action--back:focus-visible,
.brand-editor-actions .brand-editor-action--delete,
.brand-editor-actions .brand-editor-action--delete:hover,
.brand-editor-actions .brand-editor-action--delete:focus-visible {
  background: #f3f4f6;
  color: #111111;
  border-color: #e5e7eb;
}

.brand-editor-actions .brand-editor-action--delete,
.brand-editor-actions .brand-editor-action--delete:hover,
.brand-editor-actions .brand-editor-action--delete:focus-visible {
  color: #dc2626;
}

.brand-editor-actions .brand-editor-action--save,
.brand-editor-actions .brand-editor-action--save:hover,
.brand-editor-actions .brand-editor-action--save:focus-visible,
.brand-editor-actions .brand-editor-action--edit,
.brand-editor-actions .brand-editor-action--edit:hover,
.brand-editor-actions .brand-editor-action--edit:focus-visible {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

@media (max-width: 720px) {
  .brand-name-row,
  .brand-meta-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-social-row {
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  }

  .brand-editor-actions--edit,
  .brand-editor-actions-right {
    justify-content: flex-end;
  }
}

.admin-toolbar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.admin-toolbar-row.brand-list-toolbar {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.admin-toolbar-row > .input {
  width: 100%;
  min-width: 0;
}

@media (max-width: 640px) {
  .admin-toolbar-row {
    grid-template-columns: 1fr;
  }

  .admin-toolbar-row.brand-list-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-toolbar-row > .admin-medium-action-btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .place-highlight-toolbar {
    grid-template-columns: 1fr;
  }
}

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

.admin-list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.admin-list-title {
  color: #111827;
  font-weight: 800;
}

.admin-list-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-place-highlights-page {
  display: grid;
  gap: 18px;
}

.place-highlight-toolbar {
  grid-template-columns: minmax(0, 1fr) auto auto 160px;
}

.admin-highlight-form {
  padding: 0;
}

.admin-highlight-form.is-create {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.admin-highlight-form.is-create .form-item {
  min-width: 0;
}

.admin-highlight-form.is-create .admin-form-actions {
  grid-column: auto;
  align-self: end;
  padding-bottom: 0;
}

.admin-highlight-enabled-field {
  align-content: end;
}

.admin-highlight-toggle-row {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-weight: 700;
}

.admin-highlight-row {
  align-items: flex-start;
}

.admin-highlight-row-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-highlight-row-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-modal-open {
  overflow: hidden;
}

.admin-highlight-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-highlight-modal.hidden {
  display: none;
}

.admin-highlight-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
}

.admin-highlight-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

.admin-highlight-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-highlight-dialog-head h2 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
}

.admin-highlight-dialog-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.admin-highlight-dialog-close:hover,
.admin-highlight-dialog-close:focus-visible {
  border-color: #94a3b8;
  background: #f8fafc;
}

@media (max-width: 640px) {
  .place-highlight-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-highlight-dialog {
    padding: 18px;
  }

  .admin-highlight-form.is-create {
    grid-template-columns: 1fr;
  }

  .admin-highlight-form.is-create .admin-form-actions {
    grid-column: 1 / -1;
  }
}

.admin-form-wide {
  grid-column: 1 / -1;
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-hero {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 28px 0 22px;
  border-bottom: 1px solid #e5e7eb;
}

.profile-hero h1 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 32px;
  line-height: 1.2;
}

.profile-hero p {
  margin: 10px 0 0;
  color: #475569;
  line-height: 1.8;
  white-space: pre-wrap;
}

.profile-hero-media {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #f3f4f6;
  overflow: hidden;
}

.profile-hero-media img,
.place-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  margin: 20px 0;
}

.brand-city-search {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin: 22px 0;
}

.brand-city-search-label {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.brand-city-search-control {
  position: relative;
}

.brand-city-search-control .input {
  width: 100%;
}

.brand-profile-section {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.brand-profile-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.brand-profile-section-head h2 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
}

.brand-profile-section-head span {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.brand-profile-shell .place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.brand-profile-shell .place-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.place-card-cover {
  width: 84px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: #f3f4f6;
  overflow: hidden;
}

.place-card-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.place-card-body strong,
.place-card-body span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-related-posts {
  margin-top: 0;
}

.brand-related-empty {
  grid-column: 1 / -1;
  padding: 24px;
  color: #64748b;
  background: #f8fafc;
  border-radius: 8px;
}

.brand-related-activities {
  display: grid;
  gap: 16px;
}

.brand-activity-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.brand-activity-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: #f3f4f6;
  display: block;
}

.brand-activity-body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.brand-activity-title {
  margin: 0;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.35;
}

.brand-activity-title a {
  color: inherit;
  text-decoration: none;
}

.brand-activity-title a:hover,
.brand-activity-title a:focus-visible {
  text-decoration: underline;
}

.brand-activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.brand-activity-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 700;
}

.brand-activity-summary {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .profile-hero,
  .profile-filter-row,
  .brand-activity-card {
    grid-template-columns: 1fr;
  }

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

  .brand-activity-cover {
    aspect-ratio: 16 / 9;
  }

  .admin-list-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

.transit-picker-web {
  display: grid;
  gap: 10px;
  width: 100%;
}

.transit-picker-list-web {
  display: grid;
  gap: 10px;
  width: 100%;
}

.transit-additional-field-web {
  display: block;
  width: 100%;
}

.transit-additional-input-web {
  display: block;
  flex: 1 1 100%;
  width: 100% !important;
  max-width: none;
}

.transit-picker-row-web {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.transit-picker-row-web--entry {
  align-items: center;
}

.transit-picker-search-web {
  position: relative;
  flex: 0 0 32%;
  min-width: 260px;
  width: auto;
}

.transit-picker-search-row-web {
  display: block;
  align-items: center;
  width: 100%;
}

.transit-picker-search-row-web .transit-picker-input-web {
  min-width: 0;
  width: 100%;
}

.transit-picker-input-wrap-web {
  position: relative;
  min-width: 0;
  width: 100%;
}

.transit-picker-input-wrap-web .transit-picker-input-web {
  padding-right: 86px;
}

.transit-note-field-web {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.transit-note-with-action-web > .input {
  width: auto;
}

.transit-note-with-action-web {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
}

.transit-exit-inline-web {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  min-width: 0;
  flex: 0 0 auto;
}

.transit-exit-label-web {
  margin: 0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.transit-exit-input-web {
  width: 96px;
  min-width: 96px;
  max-width: 100%;
}

.transit-picker-input-web[disabled] {
  cursor: not-allowed;
  background: #f3f4f6;
  color: #9ca3af;
}

.transit-suggest-web {
  right: auto;
  width: 100%;
}

.transit-suggest-portal-web {
  position: fixed;
  top: auto;
  left: auto;
  right: auto;
  z-index: 10050;
  margin-top: 0;
  overflow-y: auto;
  max-height: min(360px, calc(100vh - 24px));
  border-radius: 6px;
  text-align: left;
}

.transit-suggest-portal-web .geo-admin-suggest-list {
  max-height: none;
  justify-items: stretch;
}

#transitSuggestPortal .transit-suggest-item-web {
  display: grid !important;
  justify-content: stretch !important;
  justify-items: start !important;
  align-items: start !important;
  text-align: left !important;
}

#transitSuggestPortal .transit-suggest-item-web > * {
  justify-self: start !important;
}

.transit-suggest-item-web {
  gap: 8px;
  justify-items: start;
  text-align: left;
}

.transit-suggest-item-web > * {
  justify-self: start;
}

.transit-suggest-line-list-web,
.admin-transit-line-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#transitSuggestPortal .transit-suggest-line-list-web {
  justify-content: flex-start !important;
}

.transit-selection-web {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.transit-selection-web--compact {
  gap: 6px;
}

.transit-selection-head-web {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.transit-selection-title-web {
  color: #374151;
  font: 600 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.transit-selection-clear-web {
  min-width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

.transit-selection-status-web {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font: 700 14px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  pointer-events: none;
  white-space: nowrap;
}

.transit-selection-status-web--empty {
  display: none;
}

.transit-row-action-btn-web,
.transit-row-action-btn-web:hover,
.transit-row-action-btn-web:focus-visible {
  min-width: 0 !important;
  height: 41px !important;
  min-height: 41px !important;
  padding: 0 16px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  background: #f3f4f6 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.transit-add-station-btn-web,
.transit-add-station-btn-web:hover,
.transit-add-station-btn-web:focus-visible {
  color: #3f3f46 !important;
}

.transit-add-station-btn-web {
  width: auto !important;
}

.transit-note-with-action-web > .input:first-child {
  flex: 1 1 0;
  min-width: 220px;
}

.addplace-page .transit-remove-row-btn-web,
.addplace-page .transit-remove-row-btn-web:hover,
.addplace-page .transit-remove-row-btn-web:focus-visible {
  background: #f3f4f6 !important;
  color: #dc2626 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  box-shadow: none !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 16px !important;
  height: 41px !important;
  min-height: 41px !important;
  white-space: nowrap;
}

.addplace-page .transit-remove-row-btn-web:hover,
.addplace-page .transit-remove-row-btn-web:focus-visible {
  color: #b91c1c !important;
}

.transit-picker-hint-web {
  font-size: 12px;
  line-height: 1.5;
}

.transit-line-pill-list-web {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.transit-line-pill-web {
  --transit-line-bg: #111827;
  --transit-line-text: #ffffff;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--transit-line-bg);
  color: var(--transit-line-text);
  font: 700 12px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
  .slot-list-web {
    --slot-dash-width: auto;
    grid-template-columns: 1fr;
  }

  .slot-row-web {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .slot-row-web .slot-inline-action-btn,
  .slot-row-web .slot-remove-btn {
    grid-column: auto;
  }

  .slot-row-web .slot-copy-placeholder-web {
    display: none;
  }

  .transit-note-with-action-web {
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .transit-additional-input-web {
    width: 100%;
  }

  .transit-exit-inline-web {
    align-items: center;
    justify-content: flex-start;
  }

  .transit-note-with-action-web {
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .transit-add-station-btn-web,
  .transit-selection-clear-web {
    width: auto;
  }
}

.admin-transit-toolbar {
  display: grid;
  gap: 14px;
}

.admin-transit-toolbar-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.admin-transit-filter-grid,
.admin-transit-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-transit-layout {
  display: grid;
  column-gap: 0;
  row-gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  align-items: start;
}

.admin-transit-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.admin-transit-layout > .admin-transit-panel.card {
  border: 0;
  background: transparent;
  padding: 0 18px 0 0;
}

.admin-transit-layout > .admin-transit-panel.card + .admin-transit-panel.card {
  border-left: 1px solid #e5e7eb;
  padding: 0 0 0 18px;
}

.admin-transit-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-transit-panel-head h2,
.admin-transit-form-card h3 {
  margin: 0;
}

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

.admin-transit-panel-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-transit-table-head,
.admin-transit-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 112px;
  gap: 12px;
  align-items: center;
}

.admin-transit-table-head {
  padding: 0 16px;
  color: #6b7280;
  font: 600 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-transit-table-head > span:last-child {
  justify-self: end;
  width: 40px;
  text-align: center;
}

.admin-transit-row {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.admin-transit-row:hover,
.admin-transit-row.is-active,
.admin-transit-row:focus-visible {
  border-color: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  outline: 2px solid rgba(17, 24, 39, 0.18);
  outline-offset: 2px;
}

.admin-transit-line-row,
.admin-transit-station-row {
  background: var(--transit-line-bg, #ffffff);
  color: var(--transit-line-text, #111827);
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.admin-transit-line-row:hover,
.admin-transit-line-row.is-active,
.admin-transit-line-row:focus-visible,
.admin-transit-station-row:hover,
.admin-transit-station-row.is-active,
.admin-transit-station-row:focus-visible {
  border-color: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 10px 24px rgba(15, 23, 42, 0.12);
}

.admin-transit-line-row .admin-transit-index,
.admin-transit-line-row .admin-transit-name strong,
.admin-transit-station-row .admin-transit-index,
.admin-transit-station-row .admin-transit-name strong {
  color: var(--transit-line-text, #111827);
}

.admin-transit-index {
  color: #6b7280;
  font: 700 14px/1 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-transit-name {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.admin-transit-name-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.admin-transit-name strong {
  color: #111827;
  font: 700 15px/1.45 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-transit-name-primary {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.admin-transit-name-secondary {
  display: block;
  color: inherit;
  opacity: 0.86;
  font: 600 13px/1.35 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-transit-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.admin-transit-line-badge,
.admin-transit-quality-badge,
.admin-transit-station-code {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: var(--transit-line-text, #111827);
  font: 700 11px/1.2 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
  white-space: nowrap;
}

.admin-transit-quality-badge {
  background: rgba(255, 255, 255, 0.92);
  color: #92400e;
  border-color: rgba(251, 191, 36, 0.72);
}

.admin-transit-station-code {
  min-width: 44px;
  justify-content: center;
}

.admin-transit-row-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-transit-panel-placeholder {
  padding: 18px 16px;
  border: 1px dashed #d1d5db;
  border-radius: 18px;
  color: #9ca3af;
  background: #fff;
}

.admin-transit-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
}

.admin-transit-item.is-active {
  border-color: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.admin-transit-item-main {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
}

.admin-transit-item-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-transit-item-meta {
  color: #6b7280;
  font: 500 12px/1.5 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-transit-item-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-transit-mini-btn {
  min-width: auto;
  padding: 8px 12px;
}

.admin-page .admin-transit-soft-btn.btn.ghost,
.admin-page .admin-transit-soft-btn.btn.ghost:hover,
.admin-page .admin-transit-soft-btn.btn.ghost:focus-visible {
  background: #e5e7eb !important;
  color: #111827 !important;
  border: 1px solid #d1d5db !important;
}

.admin-page .admin-transit-soft-btn.btn.ghost:disabled {
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  border: 1px solid #e5e7eb !important;
}

.admin-page .admin-transit-edit-btn.btn.ghost,
.admin-page .admin-transit-edit-btn.btn.ghost:hover,
.admin-page .admin-transit-edit-btn.btn.ghost:focus-visible {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  backdrop-filter: none;
}

.admin-transit-form-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #f8fafc;
}

.admin-transit-form-card-hidden {
  display: none;
}

.admin-transit-field {
  display: grid;
  gap: 6px;
}

.admin-transit-field-has-suggest {
  position: relative;
}

.admin-transit-city-suggest {
  top: calc(100% + 4px);
}

.admin-transit-field span {
  color: #1f2937;
  font: 600 12px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

.admin-transit-field-wide {
  grid-column: 1 / -1;
}

.admin-transit-checkbox {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
}

.admin-transit-checkbox span {
  color: #1f2937;
  font: 600 13px/1.4 "Source Han Sans", "Source Han Sans SC", "PingFang SC", sans-serif;
}

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

.admin-transit-actions.admin-bottom-actions-common {
  justify-content: flex-start;
}

.admin-transit-status[data-state="error"] {
  color: #b91c1c;
  overflow-wrap: anywhere;
}

.admin-transit-empty {
  padding: 16px;
  border: 1px dashed #d1d5db;
  border-radius: 18px;
  color: #6b7280;
  background: #fff;
}

.admin-transit-multiselect {
  min-height: 140px;
  padding-block: 10px;
}

@media (max-width: 960px) {
  .admin-transit-layout {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .admin-transit-layout > .admin-transit-panel.card {
    padding: 0;
  }

  .admin-transit-layout > .admin-transit-panel.card + .admin-transit-panel.card {
    border-left: 0;
    padding: 0;
  }

  .admin-transit-table-head,
  .admin-transit-row {
    grid-template-columns: 56px minmax(0, 1fr) 96px;
  }
}
