/*!b:1d9aaf41*/

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
      overflow: hidden;
    }

    body.community-page-open {
      overflow-x: hidden;
      overflow-y: auto;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 3500; 
      background: #fff;
      border-bottom: 1px solid #e8e8e2;
      height: 56px;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 12px;
    }

    .brand {
      display: flex;
      align-items: center; 
      gap: 2px;
      flex-shrink: 0;
      min-width: 0;
      border: none;
      background: transparent;
      padding: 0;
      font-family: inherit;
      cursor: pointer;
      text-align: left;
    }

    .brand-symbol {
      height: 34px;
      width: auto;
      flex-shrink: 0;
    }
    .brand-wordmark {
      height: 21px;
      width: auto;
      flex-shrink: 0;
      margin-left: -3px;
    }

    .brand-wordmark-img {
      height: 30px;
      width: auto;
      flex-shrink: 0;
      display: block;
    }
    @media (min-width: 901px) {
      .brand-wordmark-img { height: 34px; } 
    }

    .brand:hover .logo span,
    .brand:focus-visible .logo span {
      color: #d84f3f;
    }

    .brand:focus-visible {
      outline: 2px solid rgba(232, 93, 74, .35);
      outline-offset: 4px;
      border-radius: 8px;
    }

    .logo {
      font-size: 19px;
      font-weight: 700;
      color: #1a1a2e;
      letter-spacing: 0;
      white-space: nowrap;

      font-family: ui-rounded, 'SF Pro Rounded', 'Quicksand', system-ui, sans-serif;
    }

    .logo span {
      color: #e85d4a;
    }

    .brand-subtitle {
      font-size: 12px;
      font-weight: 800;
      color: #888;
      white-space: nowrap;
      margin-left: 5px;
      line-height: 1; 
      align-self: flex-end; 
    }
    @media (min-width: 901px) {
      .brand-subtitle { font-size: 13px; } 
    }

    .search-wrap {
      flex: 1;
      max-width: 400px;
      position: relative;
      min-width: 220px;
    }

    .mobile-more-btn {
      display: none;
    }

    .search-bar {
      width: 100%;
      display: flex;
      align-items: center;
      background: #f5f5f0;
      border-radius: 24px;
      padding: 0 14px;
      height: 38px;
      gap: 8px;
      border: 1px solid #e0e0da;
    }

    .search-bar input {
      flex: 1;
      min-width: 0;          
      border: none;
      background: transparent;
      font-size: 14px;
      outline: none;
      color: #333;
      text-overflow: ellipsis;   
    }

    .search-bar input::placeholder { text-overflow: ellipsis; }

    .search-submit {
      width: 22px;
      height: 22px;
      padding: 0;
      border: none;
      background: transparent;
      color: #555;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .search-submit:hover {
      color: #e85d4a;
    }

    .search-suggestions {
      position: absolute;
      top: 46px;
      left: 0;
      right: 0;
      z-index: 5000;
      background: #fff;
      border: 1px solid #e8e8e2;
      border-radius: 14px;
      box-shadow: 0 14px 40px rgba(0,0,0,.12);
      overflow: hidden;
      padding: 6px;
    }

    .search-suggestions[hidden] {
      display: none;
    }

    .search-suggestion {
      width: 100%;
      border: none;
      background: transparent;
      border-radius: 10px;
      padding: 9px 10px;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 9px;
      align-items: center;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
    }

    .search-suggestion-section {
      padding: 8px 10px 4px;
      color: #999;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0;
    }

    .search-suggestion:hover,
    .search-suggestion.active {
      background: #f8f6f0;
    }

    .search-suggestion-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #f5f5f0;
      font-size: 13px;
      color: #5a5648; 
    }
    .search-suggestion-icon .ico { color: #5a5648; }

    .search-suggestion-title {
      color: #1a1a2e;
      font-size: 13px;
      font-weight: 900;
      line-height: 1.3;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .search-suggestion-sub {
      color: #888;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.4;
      margin-top: 2px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .search-suggestion-tag {
      color: #e85d4a;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .search-suggestion-empty {
      padding: 11px 12px;
      color: #888;
      font-size: 12px;
      font-weight: 700;
    }

    .search-recent-clear {
      width: 100%;
      border: none;
      border-top: 1px solid #eeeeea;
      background: transparent;
      color: #999;
      padding: 9px 10px 7px;
      font-size: 12px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
      text-align: center;
    }

    .search-recent-clear:hover {
      color: #e85d4a;
      background: #fff8f6;
    }

    .nav-tabs {
      display: flex;
      gap: 2px;
      flex-shrink: 0;
      background: #eceef2;
      border-radius: 11px;
      padding: 3px;
      align-items: center;
    }

    .nav-tab {
      padding: 6px 15px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      background: transparent;
      color: #5b6472;
      transition: all 0.15s;
      white-space: nowrap;
      font-family: inherit;
    }

    .nav-tab.active {
      background: #1a1a2e;
      color: #fff;
      box-shadow: 0 1px 2px rgba(0,0,0,.14);
    }

    .nav-tab:hover:not(.active) {
      background: rgba(0,0,0,.05);
      color: #1a1a2e;
    }

    .top-home-filter {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
      min-width: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .top-home-filter::-webkit-scrollbar {
      display: none;
    }

    .brand-filter-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      white-space: nowrap;
      padding: 0 4px 0 10px;
      font-size: 13px;
    }
    .brand-filter-bar[hidden] { display: none; }
    .brand-filter-name { font-weight: 800; color: #1a1a2e; }
    .brand-filter-count { color: #8a8178; }
    .brand-filter-clear {
      border: 0;
      background: #eceae4;
      color: #4a453e;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 8px;
      cursor: pointer;
    }
    .brand-filter-clear:hover { background: #e0ddd5; color: #1a1a2e; }

    @media (min-width: 761px) {
      .top-home-filter {
        position: absolute;
        top: calc(100% + 12px);
        left: 589px; 
        overflow-x: visible;

        gap: 2px;
        padding: 4px;
        border-radius: 16px;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
        isolation: isolate; 
      }

      .top-home-filter::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: rgba(255, 255, 255, 0.82);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        backdrop-filter: saturate(180%) blur(14px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: -1;
      }

      .top-home-filter .tf-dd + .tf-dd::before {
        content: '';
        position: absolute;
        left: -1px; top: 7px; bottom: 7px;
        width: 1px;
        background: rgba(0, 0, 0, 0.09);
      }

      .top-home-filter .tf-dd-btn {
        border-color: transparent;
        background: transparent;
        padding: 7px 11px;
      }
      .top-home-filter .tf-dd-btn:hover {
        border-color: transparent;
        background: rgba(0, 0, 0, 0.05);
        color: #1a1a2e;
      }
      .top-home-filter .tf-dd.on .tf-dd-btn {
        background: #e9eff8; 
        border-color: #e9eff8;
        color: #23385c;
        --ac: #35629e;
      }

      .top-home-filter .tf-dd-btn .ico { width: 15px; height: 15px; margin-right: 2px; }
    }

    .top-home-filter-btn {
      flex: 0 0 auto;
      border: 1.5px solid #e0e0da;
      border-radius: 999px;
      background: #fff;
      color: #666;
      padding: 6px 11px;
      font-size: 12px;
      font-weight: 900;
      font-family: inherit;
      line-height: 1;
      white-space: nowrap;
      cursor: pointer;
    }

    .top-home-filter-btn.active {
      background: #1a1a2e;
      border-color: #1a1a2e;
      color: #fff;
    }

    .top-home-filter-btn:hover:not(.active) {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .tf-dd { position: relative; flex: 0 0 auto; }
    .tf-dd-btn {
      display: inline-flex; align-items: center; gap: 3px;
      border: 1.5px solid #e0e0da; border-radius: 999px; background: #fff;
      color: #666; padding: 6px 10px; font-size: 12px; font-weight: 900;
      font-family: inherit; line-height: 1; white-space: nowrap; cursor: pointer;
    }
    .tf-dd-btn:hover { border-color: #e85d4a; color: #e85d4a; }
    .tf-dd.on .tf-dd-btn { background: #e9eff8; border-color: #35629e; color: #23385c; --ac:#35629e; } 
    .tf-dd-caret { font-size: 11px; opacity: .8; }
    .tf-dd-menu {
      position: fixed; z-index: 4000; min-width: 104px;
      background: #fff; border: 1px solid #eee; border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,.16); padding: 6px;
    }
    .tf-dd-menu[hidden] { display: none; }
    .tf-dd-menu button {
      display: block; width: 100%; text-align: left; padding: 9px 12px;
      border: none; background: none; font-family: inherit; font-size: 13px;
      font-weight: 700; color: #333; border-radius: 8px; cursor: pointer; white-space: nowrap;
    }
    .tf-dd-menu button:hover { background: #f5f5f0; }
    .tf-dd-menu button.sel { color: #e85d4a; }
    .tf-deal-menu button { display:flex; align-items:center; gap:9px; }
    .deal-check {
      width: 15px; height: 15px; border-radius: 5px; border: 1.5px solid #d8d6ce;
      display:inline-flex; align-items:center; justify-content:center; flex:none; color:#fff; font-size:11px; font-weight:900;
    }
    .tf-deal-menu button.sel .deal-check { background:#35629e; border-color:#35629e; }
    .tf-deal-menu button.sel .deal-check::after { content:"✓"; }
    .tf-deal-menu .deal-dot { margin-right:0; }

    .deal-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 9px; vertical-align: middle; }

    .tf-rent-menu { width: 200px; min-width: 0; padding: 12px; } 
    .tf-rent-title { font-size: 12px; font-weight: 800; color: #999; margin-bottom: 8px; }
    .tf-rent-row { display: flex; flex-direction: column; align-items: stretch; gap: 5px; } 
    .tf-rent-row input { width: 100%; min-width: 0; box-sizing: border-box; border: 1px solid #ddd; border-radius: 8px; padding: 8px 9px; font-size: 13px; font-family: inherit; }
    .tf-rent-tilde { color: #bbb; font-weight: 700; text-align: center; font-size: 12px; line-height: 0.9; } 
    .tf-rent-actions { display: flex; gap: 8px; margin-top: 12px; }

    .tf-rent-menu .tf-rent-actions button {
      display: block; flex: 1; width: auto; text-align: center;
      padding: 11px 10px; border: none; border-radius: 10px;
      font-family: inherit; font-size: 13px; font-weight: 800; cursor: pointer;
    }
    .tf-rent-menu .tf-rent-reset { background: #f1f1ec; color: #555; }
    .tf-rent-menu .tf-rent-reset:hover { background: #e8e8e2; }
    .tf-rent-menu .tf-rent-apply { background: #e85d4a; color: #fff; }
    .tf-rent-menu .tf-rent-apply:hover { background: #d64f3d; }

    .tf-cond-menu { width: 300px; min-width: 0; padding: 6px 12px 12px; max-height: min(74vh, 560px); overflow-y: auto; }
    .tf-sec { padding: 11px 0 0; }
    .tf-sec + .tf-sec { border-top: 1px solid #f0efe9; margin-top: 11px; }
    .tf-sec-h { font-size: 12px; font-weight: 800; color: #999; margin-bottom: 8px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
    .tf-sec-hint { font-size: 11px; font-weight: 700; color: #bdb9ae; margin-left: 5px; }

    .tf-cond-menu .tf-deal-menu button { width: 100%; }

    .tf-pillrow { display: flex; flex-wrap: wrap; gap: 6px; }
    .tf-cond-menu .tf-pillrow button {
      display: inline-block; width: auto; flex: 0 0 auto; text-align: center; white-space: nowrap;
      padding: 7px 11px; border: 1.5px solid #e6e6df; border-radius: 999px; background: #fff;
      font-family: inherit; font-size: 12px; font-weight: 800; color: #555; cursor: pointer;
    }
    .tf-cond-menu .tf-pillrow button:hover { border-color: #e85d4a; color: #e85d4a; background: #fff; }
    .tf-cond-menu .tf-pillrow button.sel { border-color: #2b5089; background: #eaf1fa; color: #2b5089; }
    .tf-cond-menu .tf-rent-row { flex-direction: row; align-items: center; gap: 7px; }
    .tf-cond-menu .tf-rent-actions { margin-top: 9px; }
    @media (max-width: 760px) {
      .tf-cond-menu { width: min(88vw, 300px); }
    }

    .tf-theme-menu { width: 512px; min-width: 0; padding: 12px; } 
    .tf-theme-title { font-size: 12px; font-weight: 800; color: #999; margin-bottom: 3px; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
    .tf-theme-titletext { flex: 0 0 auto; }
    .tf-theme-hint { font-size: 11px; color: #b0b0b0; font-weight: 700; margin-bottom: 9px; }
    .tf-theme-reset { margin-left: auto; border: 1px solid #e0e0da; background: #fff; color: #888; border-radius: 999px; padding: 3px 9px; font-size: 12px; font-weight: 800; font-family: inherit; cursor: pointer; }
    .tf-theme-reset:hover { border-color: #e85d4a; color: #e85d4a; }
    .tf-theme-reset[hidden] { display: none; }
    .tf-theme-sub { color: #e85d4a; font-weight: 900; margin-left: 4px; }

    .tf-theme-tools { margin-bottom: 9px; display: flex; gap: 7px; }
    .tf-theme-menu .tf-theme-core,
    .tf-theme-menu .tf-theme-all { flex: 1; }
    .tf-theme-menu .tf-theme-core { display: block; width: 100%; box-sizing: border-box; border: 1.5px solid #e6e6df; background: #fff; color: #444; border-radius: 12px; padding: 11px 12px; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; text-align: center; letter-spacing: -0.2px; }
    .tf-theme-menu .tf-theme-core:hover { border-color: #e85d4a; color: #e85d4a; background: #fff; }
    .tf-theme-menu .tf-theme-core.on { border-color: #93b3d8; background: #eaf1fa; color: #2b5089; }
    .tf-theme-menu .tf-theme-all { display: block; width: 100%; box-sizing: border-box; border: 1.5px solid #e6e6df; background: #fff; color: #444; border-radius: 12px; padding: 11px 12px; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; text-align: center; letter-spacing: -0.2px; }
    .tf-theme-menu .tf-theme-all:hover { border-color: #e85d4a; color: #e85d4a; background: #fff; }
    .tf-theme-menu .tf-theme-all.on { border-color: #93b3d8; background: #eaf1fa; color: #2b5089; } 
    .tf-theme-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
    .tf-theme-menu .tf-theme-chip {
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
      width: 100%; text-align: center; padding: 10px 4px; white-space: nowrap; 
      border: 1.5px solid #e6e6df; border-radius: 12px; background: #fff;
      font-family: inherit; font-size: 12px; font-weight: 800; color: #444; cursor: pointer; line-height: 1.2;
    }
    .tf-theme-menu .tf-theme-chip .tf-theme-ico { font-size: 19px; line-height: 1; }
    .tf-theme-menu .tf-theme-chip:hover { border-color: #e85d4a; color: #e85d4a; background: #fff; }
    .tf-theme-menu .tf-theme-chip.sel { border-color: #93b3d8; background: #eaf1fa; color: #2b5089; --ac:#2b5089; } 
    @media (max-width: 760px) {
      .tf-theme-menu { width: min(82vw, 300px); } 
      .tf-theme-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
      .tf-theme-menu .tf-theme-chip { flex-direction: row; gap: 5px; padding: 9px 7px; font-size: 12px; justify-content: flex-start; }
      .tf-theme-menu .tf-theme-chip .tf-theme-ico { font-size: 16px; }
    }

    #themeInfoCard {
      position: fixed; z-index: 4200; left: 50%; top: 50%; transform: translate(-50%,-50%);
      width: min(92vw, 380px); max-height: 80dvh; overflow-y: auto;
      background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); padding: 18px;
    }
    #themeInfoCard[hidden] { display: none; }
    .theme-info-photo { display: block; width: 100%; height: 130px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }

    #themeInfoCard picture { display: contents; }
    .theme-info-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 96px; border-radius: 12px; margin-bottom: 12px; background: #eef2f8; color: #5f6a78; font-size: 13px; font-weight: 700; text-align: center; }
    .theme-info-ph[hidden] { display: none; }
    .theme-info-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
    .theme-info-name { font-size: 19px; font-weight: 900; color: #1a1a2e; }
    .theme-info-ja { font-size: 12px; color: #999; font-weight: 700; margin-top: 1px; }
    .theme-info-badges { display: flex; flex-wrap: wrap; gap: 5px; margin: 12px 0; }
    .theme-info-badge { font-size: 12px; font-weight: 800; color: #b8472f; background: #fdeae6; border-radius: 999px; padding: 4px 10px; }
    .theme-info-desc { font-size: 13px; color: #444; line-height: 1.7; }
    .theme-info-curated { font-size: 12px; color: #aaa; font-weight: 700; margin-top: 12px; }
    .theme-info-more { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; padding: 12px 16px; background: #e85d4a; color: #fff; border-radius: 12px; font-size: 14px; font-weight: 800; text-decoration: none; transition: background .15s; }
    .theme-info-more:hover { background: #d44e3c; }
    .theme-info-more:active { transform: scale(.98); }

    .theme-info-backdrop { position: fixed; inset: 0; z-index: 4100; background: rgba(0,0,0,0.28); }
    .theme-info-backdrop[hidden] { display: none; }

    .vote-btn.voted {
      opacity: 0.55;
      cursor: not-allowed;
    }

    .vote-btn.selected-vote {
      opacity: 1;
      border-color: #e85d4a;
      color: #e85d4a;
      background: #fff8f6;
    }

    .content-report-btn {
      border: none;
      background: transparent;
      color: #aaa;
      padding: 2px 3px;
      font-size: 11px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }

    .content-report-btn:hover {
      color: #e85d4a;
    }

    .desc-report-row {
      display: flex;
      justify-content: flex-end;
      margin-top: 2px;
    }
    .desc-report-row .content-report-btn {
      color: #b9a98a;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .contact-nav-btn {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1.5px solid #e0e0da;
      background: #fff;
      color: #555;
      font-size: 12px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }

    .contact-nav-btn:hover {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .auth-area {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .login-btn {
      padding: 6px 14px;
      background: #1a1a2e;
      color: #fff;
      border: none;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
    }

    .user-info {
      display: flex; 
      position: relative;
      align-items: center;
    }

    .user-nickname {
      font-size: 12px;
      font-weight: 600;
      color: #1a1a2e;
    }

    .user-menu-label { font-size: 13px; font-weight: 700; color: #1a1a2e; }
    .pcm-account { padding: 11px 14px; margin-bottom: 8px; font-size: 13px; font-weight: 800; color: #1a1a2e; border-bottom: 1px solid #f0f0ea; }
    .pcm-admin-badge { color: #5b54e0; font-size: 12px; font-weight: 700; }
    .org-mgr-badge { color: #0e9f6e; font-size: 12px; font-weight: 700; }

    .user-menu-trigger {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 7px 14px;
      background: #fff;
      border: 1.5px solid #1a1a2e; 
      border-radius: 20px;
      cursor: pointer;
      font-family: inherit;
      box-shadow: 0 1px 3px rgba(0,0,0,.06);
    }
    .user-menu-trigger:hover { background: #f5f5f0; }

    .user-menu-trigger { position: relative; }

    .more-badge { position: absolute; top: -9px; left: -9px; right: auto; min-width: 23px; height: 23px; padding: 0 7px;
      border-radius: 999px; background: #e85d4a; color: #fff; font-size: 13px; font-weight: 800; line-height: 1;
      display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box;
      border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
    .pcm-row-badge { display: inline-flex; min-width: 17px; height: 17px; padding: 0 5px; margin-left: 6px;
      border-radius: 999px; background: #e85d4a; color: #fff; font-size: 11px; font-weight: 800;
      align-items: center; justify-content: center; box-sizing: border-box; vertical-align: middle; }
    .user-menu-caret { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: #1a1a2e; color: #fff; font-size: 12px; font-weight: 900; line-height: 1; transition: transform .18s; }
    .user-menu-trigger.open .user-menu-caret { transform: rotate(180deg); }
    .pc-user-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 300px;
      max-height: 72vh;
      overflow-y: auto;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,.16);
      padding: 10px;
      z-index: 1200;
    }
    .pc-user-menu[hidden] { display: none; }
    .pcm-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: #fff;
      border: 0.5px solid #eee;
      border-radius: 10px;
      padding: 11px 14px;
      margin-bottom: 6px;
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
      font-family: inherit;
      cursor: pointer;
      text-align: left;
    }
    .pcm-row span { font-size: 12px; color: #999; font-weight: 500; }
    .pcm-row:hover { background: #f8f8f5; }
    .pcm-logout { color: #c0392b; }
    .pcm-lang-row { display: flex; justify-content: flex-end; padding: 2px 2px 10px; margin-bottom: 4px; border-bottom: 0.5px solid #eee; }
    .pc-user-menu .msheet-acc-head { font-size: 13px; }

    .logout-btn {
      padding: 3px 8px;
      background: #e85d4a;
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
    }

    .admin-btn {
      padding: 3px 8px;
      background: #4a3fa0;
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      display: none;
    }

    .admin-page {
      min-height: 100vh;
      padding: 82px 20px 40px;
      background: #f0eef8;
    }

    .admin-shell {
      max-width: 900px;
      margin: 0 auto;
    }

    .admin-head {
      margin-bottom: 20px;
    }

    .admin-title {
      font-size: 28px;
      font-weight: 900;
      color: #1a1a2e;
      margin-bottom: 4px;
    }

    .admin-sub {
      font-size: 13px;
      color: #888;
    }

    .admin-layout { display: flex; gap: 26px; align-items: flex-start; margin-top: 4px; }
    .admin-nav { flex: 0 0 186px; display: flex; flex-direction: column; gap: 18px; position: sticky; top: 12px; }
    .admin-nav-group { display: flex; flex-direction: column; gap: 3px; }

    .admin-nav-label { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 12px; font-weight: 800; color: #9a96b0; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 10px 4px; border: none; background: none; cursor: pointer; font-family: inherit; }
    .admin-nav-label:hover { color: #6b6685; }
    .ang-caret { font-size: 11px; transition: transform 0.15s; opacity: 0.7; }
    .admin-nav-group.collapsed .ang-caret { transform: rotate(-90deg); }
    .admin-nav-group.collapsed .admin-navitem { display: none; }
    .admin-navitem { text-align: left; padding: 9px 12px; border-radius: 9px; border: none; background: none; color: #555; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; line-height: 1.3; transition: background 0.12s; }
    .admin-navitem:hover { background: #f0eefb; color: #1a1a2e; }
    .admin-navitem.active { background: #1a1a2e; color: #fff; }
    .admin-navitem.active .admin-tab-badge { background: #fff; color: #1a1a2e; }

    .mr-nav { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 14px; }
    .mr-nav .ass-more[disabled] { opacity: .35; cursor: default; }
    .mr-nav-gap { flex: 1; }
    .mr-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
    .mr-card { background: #fff; border: 1px solid #e4e0d8; border-radius: 12px; padding: 14px 14px 12px; }
    .mr-card:first-child { border-color: #2b5089; box-shadow: inset 0 0 0 1px #2b5089; }
    .mr-num { font-size: 24px; font-weight: 800; color: #1a1a2e; line-height: 1.1; }
    .mr-unit { font-size: 13px; font-weight: 700; color: #8a8178; margin-left: 2px; }
    .mr-label { font-size: 12.5px; font-weight: 700; color: #555; margin-top: 5px; }
    .mr-sub { font-size: 11.5px; color: #8a8178; margin-top: 3px; }
    .ass-head { margin: 0 0 14px; }
    .ass-head h3 { margin: 0 0 4px; font-size: 16px; color: #1a1a2e; }
    .ass-head p { margin: 0; font-size: 13px; color: #8a8178; line-height: 1.5; }
    .ass-table-wrap { overflow-x: auto; }

    .geo-approx {
      display: flex; gap: 6px; align-items: flex-start; margin: 6px 0 2px;
      padding: 7px 9px; border-radius: 8px; background: #fdf5e9; color: #8a5a12;
      font-size: 12px; line-height: 1.45;
    }
    .geo-approx .ico { width: 14px; height: 14px; flex: none; margin-top: 1px; }

    .start-scrim {
      position: fixed; inset: 0; z-index: 1400;
      display: flex; align-items: center; justify-content: center;
      background: rgba(20,28,24,.34); backdrop-filter: blur(1.5px);
      opacity: 0; transition: opacity .24s ease;
    }

    .start-scrim:not(.open) { pointer-events: none; }
    .start-scrim.open { opacity: 1; }
    .start-card {
      position: relative; width: min(432px, calc(100vw - 32px));
      background: #fff; border-radius: 18px; padding: 22px 22px 15px;
      box-shadow: 0 24px 60px rgba(15,22,19,.30), 0 4px 12px rgba(15,22,19,.10);
      transform: translateY(10px) scale(.985); transition: transform .26s cubic-bezier(.2,.8,.3,1);
    }
    .start-scrim.open .start-card { transform: none; }
    .start-x {
      position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border: 0;
      background: none; color: #a8b0bb; font-size: 20px; line-height: 1; cursor: pointer; border-radius: 8px;
    }
    .start-x:hover { background: #f2f4f7; color: #5a6472; }
    .start-eyebrow { margin: 0 0 5px; font-size: 12px; font-weight: 800; letter-spacing: .1em; color: #2b5089; }
    .start-h { margin: 0 26px 15px 0; font-size: 19px; font-weight: 800; color: #1b2634; line-height: 1.4; letter-spacing: -.01em; }
    .start-rows { display: grid; gap: 8px; }
    .start-row {
      position: relative; display: grid; gap: 2px; width: 100%; text-align: left;
      padding: 12px 34px 12px 14px; border: 1px solid #e3e7ec; border-radius: 13px; background: #fff;
      font-family: inherit; cursor: pointer; transition: border-color .13s, background .13s, transform .13s;
    }
    .start-row:hover { border-color: #2b5089; background: #f5f9fe; }
    .start-row:active { transform: scale(.995); }
    .start-t { font-size: 14px; font-weight: 700; color: #1b2634; }
    .start-s { font-size: 12px; color: #6b7480; line-height: 1.45; }
    .start-arrow {
      position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
      font-size: 14px; color: #b6bec8; transition: color .13s, transform .13s;
    }
    .start-row:hover .start-arrow { color: #2b5089; transform: translateY(-50%) translateX(2px); }

    .start-row.primary { background: #2b5089; border-color: #2b5089; }
    .start-row.primary:hover { background: #3a6aa8; border-color: #3a6aa8; }
    .start-row.primary .start-t { color: #fff; }
    .start-row.primary .start-s { color: #bdd0e8; }
    .start-row.primary .start-arrow { color: #cfdcee; }
    .start-row.primary:hover .start-arrow { color: #fff; }
    .start-skip {
      width: 100%; margin-top: 11px; padding: 7px; border: 0; background: none;
      color: #8a92a0; font-size: 13px; font-family: inherit; cursor: pointer;
    }
    .start-skip:hover { color: #5a6472; }

    @media (max-width: 760px) {
      .start-scrim { align-items: flex-end; padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
      .start-card { width: calc(100vw - 28px); padding: 16px 16px 10px; border-radius: 16px; }
      .start-h { font-size: 16px; margin-bottom: 13px; }
      .start-row { padding: 11px 30px 11px 13px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .start-scrim, .start-card, .start-row, .start-arrow { transition: none; }
    }

    .ass-more { margin-left: 8px; padding: 2px 7px; border: 1px solid #dfe3ea; border-radius: 6px; background: #fff; color: #5a6472; font-size: 12px; font-family: inherit; cursor: pointer; }
    .ass-more:hover { background: #f2f4f7; }
    .ass-sub-row > td { background: #fafbfc; padding: 8px 10px 10px; }
    .ass-inner { font-size: 12px; margin: 0; }
    .ass-inner th, .ass-inner td { padding: 5px 8px; border-bottom: 1px solid #f0f2f5; }
    .ass-table { width: 100%; border-collapse: collapse; font-size: 13px; }
    .ass-table th, .ass-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #eee; white-space: nowrap; vertical-align: top; }
    .ass-table th { font-size: 12px; color: #888; font-weight: 700; }
    .ass-table td.num { font-variant-numeric: tabular-nums; font-weight: 800; color: #1a1a2e; }
    .ass-sub { color: #9a938a; font-weight: 500; font-size: 12px; }
    .ass-ch { white-space: normal; color: #5f6a78; font-size: 12px; }
    .ass-off { color: #c4452f; font-size: 12px; font-weight: 700; background: #fbe7e2; padding: 1px 6px; border-radius: 6px; }

    .sc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
    .sc-head b { font-size: 16px; }
    .sc-sub { font-size: 12px; color: #9a96b0; margin-left: 8px; font-weight: 600; }
    .sc-actions { display: flex; gap: 8px; align-items: center; }
    .sc-preview { font-size: 13px; font-weight: 700; color: #5b54e0; text-decoration: none; padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; }
    .sc-save { font-size: 13px; font-weight: 800; color: #fff; background: #1a1a2e; border: none; border-radius: 8px; padding: 9px 16px; cursor: pointer; font-family: inherit; }
    .sc-save:disabled { opacity: .6; cursor: default; }
    .sc-langtabs { display: flex; gap: 4px; margin-bottom: 16px; border-bottom: 1px solid #eee; }
    .sc-langtab { font-size: 13px; font-weight: 700; color: #888; background: none; border: none; border-bottom: 2px solid transparent; padding: 8px 14px; cursor: pointer; font-family: inherit; margin-bottom: -1px; }
    .sc-langtab.on { color: #1a1a2e; border-bottom-color: #1a1a2e; }
    .sc-group { margin-bottom: 22px; }
    .sc-gtitle { font-size: 12px; font-weight: 800; color: #1a1a2e; letter-spacing: .03em; margin: 0 0 10px; padding-bottom: 5px; border-bottom: 1px dashed #e6e2f0; }
    .sc-field { margin-bottom: 10px; }
    .sc-field label, .sc-cell label { display: block; font-size: 12px; font-weight: 700; color: #7a7590; margin-bottom: 3px; }
    .sc-field input, .sc-field textarea, .sc-cell input { width: 100%; box-sizing: border-box; font-family: inherit; font-size: 13px; padding: 8px 10px; border: 1px solid #ddd; border-radius: 7px; color: #1a1a2e; background: #fff; }
    .sc-field textarea { resize: vertical; line-height: 1.5; }
    .sc-row { display: flex; gap: 10px; margin-bottom: 10px; }
    .sc-cell { flex: 1; min-width: 0; }
    .admin-content { flex: 1 1 auto; min-width: 0; }
    @media (max-width: 820px) {
      .admin-layout { flex-direction: column; gap: 14px; }
      .admin-nav { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; gap: 8px 18px; position: static; padding-bottom: 12px; border-bottom: 2px solid #e0ddf0; }
      .admin-nav-group { gap: 4px; }
      .admin-navitem { padding: 7px 11px; }
    }

    .admin-tab-badge { background:#e85d4a; color:#fff; border-radius:999px; font-size:11px; padding:1px 6px; margin-left:3px; font-weight:900; vertical-align:middle; }

    .shop-photo-row { display:flex; align-items:center; gap:10px; padding:8px; border:1px solid #eee; border-radius:10px; margin-bottom:6px; background:#fff; }
    .shop-photo-thumb { width:52px; height:52px; border-radius:8px; object-fit:cover; flex:none; background:#f0eefb; }
    .shop-photo-meta { flex:1; min-width:0; }
    .shop-photo-name { font-size:13px; font-weight:800; color:#1a1a2e; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .shop-photo-kind { font-size:12px; color:#9a96b0; font-weight:700; }
    .admin-tab-badge[hidden] { display:none; }
    .admin-tab {
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 700;
      color: #888;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      cursor: pointer;
      font-family: inherit;
      flex: none;
      white-space: nowrap;
    }

    .admin-tab.active {
      color: #4a3fa0;
      border-bottom-color: #4a3fa0;
    }

    .admin-report-card {
      background: #fff;
      border-radius: 12px;
      padding: 14px 16px;
      margin-bottom: 10px;
      border: 1px solid #e8e5f5;
    }

    .admin-report-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }

    .admin-report-badge {
      font-size: 11px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 8px;
      background: #ede9ff;
      color: #4a3fa0;
    }

    .admin-report-id {
      font-size: 12px;
      color: #aaa;
    }

    .admin-report-date {
      font-size: 12px;
      color: #aaa;
      margin-left: auto;
    }

    .admin-report-preview {
      font-size: 12px;
      color: #555;
      background: #f8f7fe;
      border-radius: 8px;
      padding: 8px 10px;
      margin-bottom: 10px;
      line-height: 1.5;
      white-space: pre-wrap;
      word-break: break-all;
    }

    .admin-report-actions {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .admin-action-btn {
      padding: 5px 12px;
      border-radius: 10px;
      font-size: 12px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .admin-action-btn.hide   { background: #fff3cd; color: #856404; }
    .admin-action-btn.delete { background: #fde8e6; color: #c0392b; }
    .admin-action-btn.dismiss { background: #e8f5e9; color: #2e7d32; }

    .admin-empty {
      text-align: center;
      padding: 40px 0;
      color: #aaa;
      font-size: 13px;
    }

    @media (max-width: 760px) {
      .admin-page {
        padding: calc(var(--jibu-mobile-header-height) + 16px) 10px 28px;
      }

      .admin-layout { flex-direction: column; gap: 14px; }
      .admin-nav { flex: 0 0 auto; width: 100%; position: static; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 14px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
      .admin-nav-group { flex: 0 0 auto; }
      .admin-content { width: 100%; }
    }

    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      touch-action: manipulation; 
    }

    .building-panel, .side-panel, .admin-page, #squareBoardPage { touch-action: manipulation; overscroll-behavior: none; }

    button, a, .top-home-filter, .nav-tabs, .mobile-tabbar, .brand-header { touch-action: manipulation; }

    .modal-overlay.open {
      display: flex;
    }

    body.deeplink-detail-loading #squareDetailModal { background: rgba(0, 0, 0, 0.86); }

    .modal-box {
      background: #fff;
      border-radius: 16px;
      padding: 32px 28px;
      width: 320px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .modal-title {
      font-size: 19px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 6px;
    }

    .modal-sub {
      font-size: 13px;
      color: #888;
      margin-bottom: 24px;
    }

    .kakao-login-btn {
      width: 100%;
      padding: 13px;
      background: #fee500;
      color: #3c1e1e;
      border: none;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      margin-bottom: 10px;
      font-family: inherit;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .google-login-btn {
      width: 100%;
      padding: 13px;
      background: #fff;
      color: #333;
      border: 1.5px solid #e0e0da;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .login-email-toggle {
      display: block; width: 100%; margin-top: 14px;
      background: none; border: none; color: #35629e;
      font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit;
    }
    .login-email-toggle:hover { text-decoration: underline; }
    .login-email-input {
      width: 100%; box-sizing: border-box; padding: 12px 14px;
      border: 1.5px solid #e0e0da; border-radius: 10px;
      font-size: 16px; font-family: inherit; color: #1a1a2e; margin-bottom: 10px; text-align: center;
    }
    .login-email-input:focus { outline: none; border-color: #35629e; }

    .login-pw-entry { display: block; width: 100%; margin-top: 12px; background: none; border: none; color: #9a948a; font-size: 13px; font-family: inherit; cursor: pointer; padding: 6px; }
    .login-pw-entry:hover { color: #5a5648; text-decoration: underline; }
    .login-email-send {
      width: 100%; padding: 13px; background: #35629e; color: #fff;
      border: none; border-radius: 10px; font-size: 14px; font-weight: 800;
      cursor: pointer; font-family: inherit;
    }
    .login-email-send:disabled { opacity: .6; cursor: default; }
    .login-email-msg {
      margin-top: 12px; font-size: 13px; line-height: 1.5; color: #23385c;
      background: #eef2f8; border-radius: 9px; padding: 10px 12px; text-align: left;
    }
    .login-email-msg.err { color: #c0392b; background: #fdecea; }
    .login-email-back {
      margin-top: 14px; background: none; border: none; color: #aaa;
      font-size: 12px; cursor: pointer; font-family: inherit;
    }

    .modal-close {
      margin-top: 16px;
      background: none;
      border: none;
      color: #aaa;
      font-size: 12px;
      cursor: pointer;
      font-family: inherit;
    }

    .contact-modal-box {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      width: min(420px, calc(100vw - 32px));
      max-height: calc(100dvh - 40px);
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .square-detail-box {

      background: #fff;
      border-radius: 16px;
      width: min(820px, calc(100vw - 28px));
      max-height: calc(100vh - 40px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    }

    .square-detail-head {
      padding: 18px 20px;
      border-bottom: 1px solid #eeeeea;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      flex-shrink: 0;
    }

    .square-detail-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .square-detail-title {
      font-size: 20px;
      font-weight: 900;
      line-height: 1.3;
      color: #1a1a2e;
      margin-bottom: 4px;
    }

    .square-detail-sub {
      font-size: 13px;
      line-height: 1.5;
      color: #8a8178;
      font-weight: 700;
    }

    .square-detail-body {
      font-size: 14.5px;   
      padding: 20px 24px 26px;
      overflow-y: auto;
      background: #fff;
    }

    .square-detail-body .square-card {
      margin-bottom: 0;
      border: 0;
      background: none;
      padding: 0;
    }

    .contact-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .contact-symbol { height: 40px; width: auto; }
    .contact-wordmark { height: 46px; width: auto; } 

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

    .contact-title {
      font-size: 19px;
      font-weight: 900;
      color: #1a1a2e;
      margin-bottom: 5px;
    }

    .contact-sub {
      font-size: 12px;
      color: #777;
      line-height: 1.55;
    }

    .contact-options {
      display: grid;
      gap: 8px;
    }

    .contact-option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      border: 1.5px solid #eeeeea;
      border-radius: 12px;
      padding: 12px;
      background: #fff;
      color: #1a1a2e;
      text-decoration: none;
      font-size: 13px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
    }

    .contact-option:hover {
      border-color: #e85d4a;
      background: #fff8f6;
    }

    .contact-option span {
      font-size: 12px;
      color: #999;
      font-weight: 800;
    }

    .contact-note {
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      background: #f8f6f0;
      color: #777;
      font-size: 12px;
      line-height: 1.5;
    }

    .write-modal-box {
      background: #fff;
      border-radius: 16px;
      padding: 22px;
      width: min(420px, calc(100vw - 32px));
      max-height: calc(100dvh - 40px);
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    #qrvModal { align-items: center; }
    .qrv-box { background:#fff; border-radius:16px; padding:20px; width:min(420px, calc(100vw - 32px)); max-height:calc(100dvh - 40px); overflow-y:auto; box-shadow:0 20px 60px rgba(0,0,0,.2); }
    .qrv-head { display:flex; justify-content:space-between; gap:12px; align-items:flex-start; margin-bottom:12px; }
    .qrv-title { font-size:16px; font-weight:900; color:#1a1a2e; }
    .qrv-sub { font-size:13px; color:#8a8578; margin-top:3px; line-height:1.5; }
    .qrv-textarea { width:100%; box-sizing:border-box; border:1.5px solid #e5e7eb; border-radius:10px; padding:11px 12px; font-size:14px; font-family:inherit; line-height:1.55; resize:vertical; outline:none; }
    .qrv-textarea:focus { border-color:#e85d4a; }
    .qrv-submit { width:100%; margin-top:10px; background:#e85d4a; color:#fff; border:none; border-radius:10px; padding:12px; font-size:16px; font-weight:800; font-family:inherit; cursor:pointer; }
    .qrv-submit:hover { background:#d64a34; }
    .qrv-alt { margin-top:12px; display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; }
    .qrv-alt-dot { color:#ccc; }
    .qrv-link { background:none; border:none; color:#8a8578; font-size:12px; font-family:inherit; cursor:pointer; text-decoration:underline; padding:2px; }
    .qrv-link:hover { color:#e85d4a; }
    .qrv-thanks { font-size:14px; font-weight:800; color:#35629e; background:#f4f8fe; border:1px solid #d3e2f2; border-radius:11px; padding:11px 13px; line-height:1.5; }
    .qrv-more-ask { font-size:13px; color:#5a5648; margin:16px 0 8px; }
    .qrv-cross { margin-top:0; }
    .qrv-cross-btn { width:100%; text-align:left; background:#faf8f3; border:1px solid #ece6da; border-radius:11px; padding:12px 14px; font-size:14px; font-weight:700; color:#35629e; font-family:inherit; cursor:pointer; display:flex; align-items:center; gap:8px; }
    .qrv-cross-btn:hover { background:#f4f1e9; }
    .qrv-cross-sub { display:block; font-size:12px; font-weight:600; color:#9a938a; margin-top:2px; }
    .qrv-done { width:100%; margin-top:14px; background:none; border:none; color:#8a8578; font-size:13px; font-weight:700; font-family:inherit; cursor:pointer; padding:8px; }
    .qrv-done:hover { color:#1a1a2e; }

    .write-modal-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .write-modal-title {
      font-size: 16px;
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: 4px;
    }

    .write-modal-sub {
      font-size: 12px;
      color: #777;
      line-height: 1.5;
    }

    .write-question {
      padding: 12px;
      background: #f8f6f0;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .write-question-title {
      font-size: 13px;
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: 10px;
    }

    .write-mode-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .write-mode-btn {
      border: 1.5px solid #e0e0da;
      background: #fff;
      color: #555;
      border-radius: 10px;
      padding: 10px 8px;
      font-size: 12px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
    }

    .write-mode-btn.active {
      background: #1a1a2e;
      color: #fff;
      border-color: #1a1a2e;
    }

    .write-form-panel {
      display: none;
    }

    .write-form-panel.active {
      display: block;
    }

    .write-form-label {
      display: block;
      font-size: 12px;
      font-weight: 800;
      color: #666;
      margin: 10px 0 6px;
    }

    .residence-options {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 7px;
      margin-bottom: 10px;
    }

    .residence-option {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      min-height: 34px;
      border: 1.5px solid #e0e0da;
      border-radius: 9px;
      background: #fff;
      font-size: 12px;
      font-weight: 700;
      color: #555;
      cursor: pointer;
      text-align: center;
    }

    .residence-option input {
      accent-color: #e85d4a;
    }

    .rating-options {
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
      gap: 4px;
      margin: 2px 0 10px;
    }

    .rating-options input {
      display: none;
    }

    .rating-options label {
      font-size: 26px;
      line-height: 1;
      color: #d8d8d0;
      cursor: pointer;
      transition: color .12s ease, transform .12s ease;
    }

    .rating-options label:hover,
    .rating-options label:hover ~ label,
    .rating-options input:checked ~ label {
      color: #f6b73c;
    }

    .rating-options label:hover {
      transform: translateY(-1px);
    }

    .score-summary {
      margin-top: 10px;
      padding: 8px 10px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #eeeeea;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .score-summary .score-label {
      font-size: 12px;
      color: #888;
      font-weight: 700;
    }

    .score-summary .score-value {
      font-size: 13px;
      color: #1a1a2e;
      font-weight: 900;
    }

    .comment-type {
      display: inline-flex;
      align-items: center;
      border-radius: 12px;
      padding: 2px 7px;
      font-size: 11px;
      font-weight: 800;
      background: #f0f0ea;
      color: #6b6459;
      margin-right: 5px;
    }

    .comment-type.pros {
      background: #f0f0ea;
      color: #6b6459;
    }

    .comment-type.cons {
      background: #f0f0ea;
      color: #c4452f;
    }

    .comment-rating {
      color: #f6b73c;
      font-size: 12px;
      font-weight: 800;
      margin-left: 6px;
      white-space: nowrap;
    }

    .lived-badge {
      display: inline-flex;
      align-items: center;
      margin-left: 6px;
      padding: 2px 7px;
      border-radius: 10px;
      background: #eef4ff;
      color: #3b6fb0;
      font-size: 11px;
      font-weight: 800;
      white-space: nowrap;
    }

    .author-region {
      display: inline-flex;
      align-items: center;
      padding: 2px 7px;
      border-radius: 10px;
      background: #f0f4ef;
      color: #5a7a55;
      font-size: 11px;
      font-weight: 800;
      white-space: nowrap;
    }
    .square-meta-left .author-region { margin-left: 4px; }

    .unified-review-lines {
      display: grid;
      gap: 8px;
      margin: 8px 0 10px;
    }

    .unified-review-line {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 8px;
      align-items: start;
      font-size: 13px;
      line-height: 1.55;
      color: #333;
    }

    .unified-review-label {
      display: inline-flex;
      align-items: center;
      border-radius: 12px;
      padding: 3px 8px;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .unified-review-label.pros {
      background: #eef8ee;
      color: #2d8a42;
    }

    .unified-review-label.cons {
      background: #fff0ed;
      color: #e85d4a;
    }

    .write-textarea {
      width: 100%;
      min-height: 108px;
      resize: vertical;
      border: 1.5px solid #e0e0da;
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 13px;
      line-height: 1.6;
      font-family: inherit;
      outline: none;
    }

    .write-textarea:focus {
      border-color: #e85d4a;
    }

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

    .write-submit,
    .write-cancel,
    .write-open-btn {
      border: none;
      border-radius: 20px;
      padding: 9px 14px;
      font-size: 12px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
    }

    .write-submit,
    .write-open-btn {
      background: #e85d4a;
      color: #fff;
    }

    .write-cancel {
      background: #f5f5f0;
      color: #666;
    }

    .write-open-btn {
      width: 100%;
    }

    .question-group {
      margin-top: 12px;
      border-top: 1px solid #f0f0ea;
      padding-top: 10px;
    }

    .question-group-title {
      font-size: 12px;
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: 8px;
    }

    .question-card {
      background: #fff8f6;
      border: 1px solid #ffd5cc;
      border-radius: 10px;
      padding: 10px 12px;
      margin-bottom: 8px;
    }

    .reply-section {
      margin-top: 10px;
      padding-top: 8px;
      border-top: 1px solid #eeeeea;
    }

    .reply-card {
      padding: 7px 9px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #eeeeea;
      margin-bottom: 6px;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 7px;
      align-items: start;
    }

    .reply-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 3px;
      white-space: nowrap;
    }

    .reply-del {
      background: none;
      border: none;
      padding: 0;
      color: #c0392b;
      font-size: 11px;
      font-weight: 800;
      line-height: 1;
      cursor: pointer;
    }

    .nearby-reviews-section {
      margin-top: 16px;
      padding-top: 13px;
      border-top: 1px dashed #ddd9d0;
    }
    .nearby-reviews-head {
      font-size: 12px;
      color: #8a8580;
      line-height: 1.55;
      margin-bottom: 10px;
    }
    .nearby-reviews-head b { color: #5b54e0; font-weight: 800; }
    .nearby-area-label {
      font-size: 12px;
      font-weight: 800;
      color: #b8472f;
      margin: 12px 0 6px;
    }

    .reply-text {
      font-size: 12px;
      color: #6b6459;
      line-height: 1.5;
      min-width: 0;
    }

    .reply-author,
    .reply-date {
      color: #a89f90;
      font-size: 11px;
      font-weight: 800;
      line-height: 1.5;
      white-space: nowrap;
    }

    .reply-write {
      display: flex;
      gap: 6px;
      margin-top: 8px;
    }

    .reply-write input {
      flex: 1;
      min-width: 0;
      order: 1;
      border: 0;
      border-bottom: 1.5px solid #e0e0da;
      border-radius: 0;
      padding: 8px 2px;
      font-size: 14px;
      color: #1a1a2e;
      background: transparent;
      font-family: inherit;
      outline: none;
    }

    .reply-write input:focus {
      border-bottom-color: #e85d4a;
    }

    .reply-submit {
      order: 2;
      border: 0;
      border-radius: 0;
      padding: 8px 2px;
      background: none;
      color: #1a1a2e;
      font-size: 13.5px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }
    .reply-submit:hover { color: #e85d4a; }

    .load-more-wrap {
      padding: 2px 0 12px;
      position: relative;
      z-index: 2;
    }

    .load-more-btn {
      display: block;
      width: 100%;
      border: 1.5px solid #e0e0da;
      border-radius: 18px;
      padding: 9px 12px;
      background: #fff;
      color: #1a1a2e;
      font-size: 12px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
      pointer-events: auto;
    }

    .load-more-btn:hover {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .load-more-btn span {
      color: #999;
      font-weight: 800;
      margin-left: 4px;
    }

    .square-compose {
      margin: 14px 16px;
      padding: 12px;
      border: 1px solid #eeeeea;
      border-radius: 10px;
      background: #fff;
      overflow: hidden;
    }

    .square-compose textarea {
      width: 100%;
      box-sizing: border-box;
      border: 1.5px solid #e0e0da;
      border-radius: 10px;
      padding: 8px 10px;
      font-size: 12px;
      font-family: inherit;
      outline: none;
      background: #fff;
      color: #1a1a2e;
    }

    .square-compose textarea {
      min-height: 72px;
      resize: vertical;
      line-height: 1.55;
      margin-bottom: 8px;
    }

    .square-compose textarea:focus {
      border-color: #e85d4a;
    }

    .char-counter {
      margin: -2px 2px 8px;
      text-align: right;
      color: #aaa;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.2;
    }

    .char-counter.near-limit {
      color: #d9822b;
    }

    .char-counter.at-limit {
      color: #e85d4a;
    }

    .reply-write {
      flex-wrap: wrap;
    }

    .reply-write .char-counter {
      order: 3;
      flex: 1 0 100%;
      margin: -2px 70px -5px 0; 
      font-size: 11px;
    }

    .square-edit-textarea + .char-counter,
    .comment-edit-textarea + .char-counter {
      margin-top: 4px;
      margin-bottom: 2px;
    }

    .square-photo-tools {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin: 2px 0 10px;
    }

    #squareBoardPostContent + .char-counter {
      float: right;
      margin: 0 0 0 8px;
    }

    .square-photo-input {
      display: none;
    }

    .square-photo-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      border: 1.5px solid #e0e0da;
      border-radius: 16px;
      background: #fff;
      color: #1a1a2e;
      padding: 7px 11px;
      font-size: 12px;
      font-weight: 900;
      cursor: pointer;
    }

    .square-photo-button:hover {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .square-photo-note {
      color: #888;
      font-size: 12px;
      line-height: 1.45;
    }

    .square-photo-preview {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      border: 1px solid #eeeeea;
      border-radius: 10px;
      background: #fafaf7;
      padding: 8px;
      margin: 0 0 10px;
    }

    .square-photo-preview[hidden] {
      display: none;
    }

    .square-photo-preview-item {
      position: relative;
      min-width: 0;
    }

    .square-photo-preview-item img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 8px;
      background: #f1f0ea;
    }

    .square-photo-preview-title {
      color: #1a1a2e;
      font-size: 12px;
      font-weight: 900;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .square-photo-preview-sub {
      color: #888;
      font-size: 12px;
      line-height: 1.45;
      grid-column: 1 / -1;
    }

    .square-photo-remove {
      position: absolute;
      top: 5px;
      right: 5px;
      border: 1.5px solid #e0e0da;
      border-radius: 999px;
      background: #fff;
      color: #666;
      width: 24px;
      height: 24px;
      padding: 0;
      font-size: 12px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
    }

    .square-card-photo-grid {
      margin: 8px 0 10px;
      display: grid;
      grid-template-columns: minmax(0, 220px);
    }
    .square-card-photo-grid.multi {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      padding-bottom: 4px;
    }
    .square-card-photo-grid.multi .square-card-photo-thumb {
      flex: 0 0 auto;
      scroll-snap-align: center;
    }

    .square-card-photo-thumb {
      position: relative;
      border: none;
      background: transparent;
      padding: 0;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
    }

    .square-card-photo {
      width: 100%;
      max-height: 380px;   
      object-fit: cover;
      border: 1px solid #eeeeea;
      border-radius: 10px;
      background: #f0f0ea;
    }

    .square-photo-more-badge {
      position: absolute;
      right: 8px;
      bottom: 8px;
      border-radius: 999px;
      background: rgba(26, 26, 46, 0.9);
      color: #fff;
      padding: 5px 8px;
      font-size: 12px;
      font-weight: 900;
    }

    .photo-viewer-box {
      width: min(720px, calc(100vw - 32px));
      max-height: min(760px, calc(100vh - 32px));
      overflow: hidden;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 24px 80px rgba(0,0,0,.24);
      display: flex;
      flex-direction: column;
    }

    .photo-viewer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid #eeeeea;
    }

    .photo-viewer-title {
      color: #1a1a2e;
      font-size: 16px;
      font-weight: 950;
    }

    .photo-viewer-body {
      padding: 14px 18px 18px;
      overflow-y: auto;
    }

    .photo-viewer-stage {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 260px;
      border-radius: 12px;
      background: #f6f5ef;
      overflow: hidden;
      touch-action: pan-y;
    }

    .photo-viewer-main {
      width: 100%;
      max-height: 520px;
      object-fit: contain;
      border-radius: 12px;
      background: #f6f5ef;
      border: 1px solid #eeeeea;
    }

    .photo-viewer-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 999px;
      background: rgba(26,26,46,.74);
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0,0,0,.18);
    }

    .photo-viewer-nav:hover {
      background: rgba(26,26,46,.9);
    }

    .photo-viewer-prev {
      left: 12px;
    }

    .photo-viewer-next {
      right: 12px;
    }

    .photo-viewer-index {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: rgba(26,26,46,.82);
      color: #fff;
      padding: 5px 9px;
      font-size: 12px;
      font-weight: 900;
    }

    .photo-viewer-thumbs {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin-top: 10px;
    }

    .photo-viewer-thumb {
      border: 2px solid transparent;
      border-radius: 10px;
      background: transparent;
      padding: 0;
      cursor: pointer;
      overflow: hidden;
    }

    .photo-viewer-thumb.active {
      border-color: #e85d4a;
    }

    .photo-viewer-thumb img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 640px) {
      .photo-viewer-box {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 14px;
      }

      .photo-viewer-body {
        padding: 10px 12px 14px;
      }

      .photo-viewer-nav {
        width: 34px;
        height: 34px;
        font-size: 20px;
      }

      .photo-viewer-prev {
        left: 8px;
      }

      .photo-viewer-next {
        right: 8px;
      }
    }

    .square-submit {
      width: 100%;
      box-sizing: border-box;
      border: none;
      border-radius: 18px;
      padding: 9px 12px;
      background: #e85d4a;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
    }

    .square-filter-tabs {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 7px;
      padding: 0 16px 10px;
    }

    .square-filter-btn {
      border: 1.5px solid #e0e0da;
      border-radius: 16px;
      background: #fff;
      color: #555;
      padding: 6px 11px;
      font-size: 12px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
    }

    .square-filter-btn.active {
      background: #1a1a2e;
      border-color: #1a1a2e;
      color: #fff;
    }

    .square-feed {
      padding: 0 16px 4px; 
    }

    .square-card {
      border: 1px solid #eeeeea;
      border-radius: 10px;
      background: #fff;
      padding: 11px 12px;
      margin-bottom: 10px;
    }

    .square-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      font-size: 11px;
      color: #a89f90;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .square-meta-right {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .square-owner-actions {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .square-owner-action {
      border: 1px solid #e0e0da;
      border-radius: 12px;
      background: #fff;
      color: #666;
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
    }

    .square-owner-action:hover {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .square-owner-action.danger {
      color: #e85d4a;
    }

    .square-edit-textarea {
      width: 100%;
      min-height: 84px;
      resize: vertical;
      border: 1.5px solid #e0e0da;
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 13px;
      line-height: 1.6;
      font-family: inherit;
      outline: none;
      color: #333;
      background: #fff;
    }

    .square-edit-textarea:focus {
      border-color: #e85d4a;
    }

    .square-edit-actions {
      display: flex;
      gap: 6px;
      justify-content: flex-end;
      margin-top: 8px;
    }

    .square-kind {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border-radius: 4px;
      padding: 3px 7px;
      background: #f0f0ea;
      color: #6b6459;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .square-card.partner .square-kind {
      background: #eef2f8;
      color: #2b5089;
    }

    .square-partner-title {
      color: #1a1a2e;
      font-size: 16px;
      font-weight: 900;
      line-height: 1.45;
      margin-top: 8px;
    }

    .square-partner-body {
      color: #444;
      font-size: 13px;
      font-weight: 650;
      line-height: 1.7;
      margin-top: 10px;
      white-space: pre-wrap;
    }

    .square-partner-hint {
      color: #999;
      font-size: 12px;
      font-weight: 800;
      margin-top: 7px;
    }

    .square-target-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 6px;
    }

    .square-target {
      font-size: 12px;
      color: #666;
      font-weight: 800;
      min-width: 0;
    }

    .square-text {
      font-size: 13px;
      line-height: 1.6;
      color: #333;
      margin-bottom: 8px;
      word-break: break-all; 
      overflow-wrap: anywhere;
    }

    .square-target,
    .square-partner-title,
    .square-partner-body,
    .square-detail-post-title,
    .square-review-line-text {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .square-review-lines {
      display: grid;
      gap: 7px;
      margin-bottom: 8px;
    }

    .square-review-line {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 8px;
      align-items: start;
      font-size: 12px;
      line-height: 1.55;
      color: #333;
    }

    .square-review-line > span:not(.square-review-label),
    .unified-review-content,
    .comment-text,
    .reply-text {
      overflow-wrap: anywhere;
      word-break: break-all; 
      min-width: 0;
    }

    .square-review-label {
      display: inline-flex;
      align-items: center;
      border-radius: 12px;
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .square-review-label.pros {
      background: #eef8ee;
      color: #2d8a42;
    }

    .square-review-label.cons {
      background: #fff0ed;
      color: #e85d4a;
    }

    .square-review-rating {
      color: #f3a51b;
      font-size: 12px;
      font-weight: 900;
      margin-left: 6px;
    }

    .square-link {
      border: 0;
      border-radius: 0;
      padding: 5px 2px;
      background: none;
      color: #2b5089;
      font-size: 13px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
      flex-shrink: 0;
    }

    .square-link:hover { color: #e85d4a; }

    .square-target-actions {
      display: flex;
      gap: 14px;   
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .square-meta-left {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
      flex: 1;
    }
    .square-meta-left .square-target {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .square-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .square-foot .square-target-actions {
      margin-left: auto;
    }
    .square-foot .square-vote-actions {
      margin: 0;
    }

    .square-link.secondary {
      color: #1a1a2e;
      background: #fafaf7;
    }

    .square-preview-foot {
      padding: 12px 16px 8px; 
      display: grid;
      gap: 8px;
    }

    [hidden] {
      display: none !important;
    }

    .board-page {
      min-height: 100vh;
      padding: 82px 28px 40px;   
      background: #f8f6f0;
    }

    .board-shell {

      max-width: 1420px;
      margin: 0 auto;
    }

    .board-head {
      margin-bottom: 16px;
    }

    .board-title {
      font-size: 28px;
      font-weight: 950;
      color: #1a1a2e;
      margin-bottom: 7px;
    }

    .board-sub {
      font-size: 13px;
      line-height: 1.6;
      color: #666;
    }

    .board-sub-mbr { display: none; }

    .community-layout {
      display: grid;
      grid-template-columns: 210px minmax(0, 1fr);
      gap: 20px;
      align-items: start;
    }

    .community-side,
    .community-main {
      background: #fff;
      border: 1px solid #eeeeea;
      border-radius: 12px;
      min-width: 0; 
    }

    .community-side {
      padding: 12px;
      position: sticky;
      top: 76px;
    }

    .community-side-title {
      font-size: 12px;
      font-weight: 900;
      color: #999;
      padding: 4px 6px 8px;
    }

    .community-side-divider {
      border: none;
      border-top: 1px solid #eeeee8;
      margin: 6px 4px;
    }

    .community-category {
      width: 100%;
      border: none;
      background: transparent;
      border-radius: 0;
      padding: 9px 10px;
      color: #8a8178;
      font-size: 13px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      font-family: inherit;
    }

    .community-category:hover { color: #1a1a2e; }

    .community-category.active {
      background: none;
      color: #1a1a2e;
      font-weight: 800;
    }

    .community-category.soon {
      color: #aaa;
      cursor: default;
    }

    .community-main {
      padding: 14px;
    }

    .community-main.partner-mode .square-compose {
      display: none;
    }

    .community-main .square-compose {
      margin-top: 0;
    }

    .community-partner-notice {
      border: 1px solid #e8e8e2;
      border-radius: 10px;
      background: #fff;
      padding: 18px;
      margin-bottom: 14px;
    }

    .community-partner-notice[hidden] {
      display: none;
    }

    .community-partner-title {
      color: #1a1a2e;
      font-size: 19px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .community-partner-sub {
      color: #666;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .community-partner-btn {
      border: 1px solid #e0e0da;
      border-radius: 20px;
      background: #fff;
      color: #1a1a2e;
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
    }

    .community-partner-btn:hover {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .community-pinned {
      display: grid;
      gap: 8px;
      margin: 12px 0 8px;
    }

    .community-pinned-card {
      border: 0;
      border-bottom: 1px solid #e0e0da;
      border-radius: 0;
      background: none;
      padding: 10px 2px;
    }

    .community-hot-card { cursor: pointer; margin: 0 -8px; padding: 10px 10px; }
    .community-hot-card:hover { background: #faf9f6; }
    .community-hot-card:focus-visible { outline: 2px solid #e85d4a; outline-offset: -2px; }

    .community-official-card {
      border-color: #e0e0da;
      background: none;
    }

    .community-pin-head {
      display: flex;
      align-items: baseline;
      gap: 7px;
      margin-bottom: 3px;
    }

    .community-pinned-label {
      display: inline-flex;
      align-items: center;
      border-radius: 0;
      background: none;
      color: #e85d4a;
      padding: 0;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .03em;
      flex-shrink: 0;
    }

    .community-official-card .community-pinned-label {
      background: none;
      color: #a89f90;
    }

    .community-pinned-title {
      color: #1a1a2e;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.4;
    }

    .community-pinned-text {
      color: #6b6459;   
      font-size: 12px;
      line-height: 1.5;
      margin-top: 2px;
    }

    .community-hot-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 7px;
      color: #a89f90;   
      font-size: 12px;
      font-weight: 700;
    }

    .community-compose-tools {
      display: flex;
      gap: 8px;
      align-items: center;
      margin: 10px 0 0;
    }

    .community-post-type-select {
      min-width: 170px;
      height: 38px;
      border: 1.5px solid #e0e0da;
      border-radius: 19px;
      background: #fafaf7;
      color: #1a1a2e;
      padding: 0 12px;
      font-size: 12px;
      font-weight: 900;
      font-family: inherit;
      outline: none;
    }

    .community-compose-tools .square-submit {
      flex: 1;
      margin-top: 0;
    }

    .community-search {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
      margin: 14px 0 14px;   
    }

    .community-search .community-writebar { margin-right: auto; margin-bottom: 0; }
    .community-search input { flex: 0 1 260px; }
    .community-search[hidden] { display: none; } 

    .community-search input {
      width: 100%;
      height: 34px;
      border: 0;
      border-bottom: 1.5px solid #e0e0da;
      border-radius: 0;
      background: transparent;
      padding: 0 2px;
      color: #1a1a2e;
      font-size: 13px;
      font-family: inherit;
      outline: none;
    }

    .community-search input:focus {
      border-bottom-color: #e85d4a;
      background: transparent;
    }

    .community-search button {
      height: 34px;
      border: 0;
      border-radius: 0;
      background: none;
      padding: 0 2px;
      font-size: 12.5px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }

    .community-search-submit { color: #1a1a2e; }
    .community-search-submit:hover { color: #e85d4a; }

    .community-search-clear { color: #a89f90; }
    .community-search-clear:hover { color: #1a1a2e; }

    .board-page .square-compose,
    .board-page .square-filter-tabs,
    .board-page .square-feed,
    .board-page .square-preview-foot {
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      margin-right: 0;
    }

    .board-page .square-compose {
      padding: 14px;
      box-sizing: border-box;
    }

    .board-page .square-card {
      border-radius: 12px;
      padding: 14px 16px;
    }

    .board-page .square-card-photo-grid,
    .square-detail-body .square-card-photo-grid {
      grid-template-columns: minmax(0, 460px);
    }

    .square-detail-body .square-card-photo-grid { justify-content: center; }
    .square-detail-body .square-card-photo-grid.multi { justify-content: safe center; }

    .square-detail-body .square-card-photo-grid.multi .square-card-photo {
      width: 460px; max-width: 78vw; height: 330px; object-fit: cover;
    }
    .square-detail-body .square-card-photo-grid:not(.multi) .square-card-photo {
      min-height: 220px; background: #f0f0ea;
    }

    .board-count {
      color: #a89f90;   
      font-size: 12px;
      font-weight: 800;
      margin-right: 8px;
    }

    .board-sort-tabs {
      display: flex;
      gap: 13px;   
      margin-left: auto;
    }

    .board-sort-btn {
      padding: 4px 2px;
      border-radius: 0;
      border: 0;
      background: none;
      color: #a89f90;
      font-size: 12.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
    }

    .board-sort-btn:hover { color: #6b6459; }

    .board-sort-btn.active {
      background: none;
      color: #1a1a2e;
      font-weight: 800;
    }

    .board-load-more {
      justify-self: center; 
      width: auto;
      border: 1px solid #e8e8e2;
      border-radius: 18px;
      background: #fafafa;
      color: #777;
      padding: 7px 22px;
      font-size: 12px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
    }
    .board-load-more:hover { background: #f3f3ef; }

    .square-title-input {
      display: none;
      width: 100%;
      box-sizing: border-box;
      border: 1.5px solid #e5e7eb;
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 14px;
      font-family: inherit;
      margin-bottom: 10px;
      outline: none;
    }
    .square-title-input:focus { border-color: #e85d4a; }
    .square-title-input.visible { display: block; }
    .board-list { display: flex; flex-direction: column; border-top: 1px solid #e0e0da; }
    .board-list-row {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding: 11px 4px;
      border-bottom: 1px solid #f0f0ea;
      cursor: pointer;
    }
    .board-list-row:hover { background: #f8f6f0; }
    .board-list-row-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .board-list-row-main {
      display: flex;
      align-items: center;
      gap: 6px;
      min-width: 0;
      flex: 1;
    }
    .board-list-gap { flex: 1 1 auto; min-width: 0; }
    .board-list-row-sub {
      font-size: 13px;   
      color: #8a8178;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding-left: 2px;
      min-width: 0; 
      max-width: 100%;
    }

    .board-list-badge {
      font-size: 11.5px;   
      padding: 2px 6px;
      border-radius: 4px;
      white-space: nowrap;
      background: #f0f0ea;
      color: #6b6459;
      flex-shrink: 0;
    }
    .board-list-badge.market,
    .board-list-badge.life   { background: #f0f0ea; color: #6b6459; }
    .board-list-photo-badge {
      font-size: 11px;
      padding: 2px 5px;
      border-radius: 4px;
      background: #f0f0ea;
      color: #8a8178;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .board-list-title {

      font-size: 14.5px;
      color: #1a1a2e;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0; 

      flex: 0 1 auto;
    }
    .board-list-row-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      font-size: 12.5px;
      color: #a89f90;
      white-space: nowrap;
    }

    .board-list-date { font-variant-numeric: tabular-nums; }

    #squareDetailModal .square-meta-left,
    #squareDetailModal .square-meta-right > .square-date { display: none; }

    .board-list-badge.target {
      background: #eef2f8; color: #2b5089;
      max-width: 8.5em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }

    .board-list-row.partner-row { flex-direction: row; align-items: flex-start; gap: 11px; padding: 13px 4px; }
    .board-list-thumb { flex: 0 0 auto; width: 64px; height: 64px; object-fit: cover;
      border-radius: 10px; background: #f1ece2; }
    .board-list-partner-main { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 4px; }
    .board-list-partner-body { font-size: 12.5px; color: #8b8577; line-height: 1.5;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .board-list-badge.partner { background: #eef2f8; color: #2b5089; }

    .board-list-rc {
      flex: 0 0 auto; min-width: 0;
      font-size: 12.5px; font-weight: 800; color: transparent;
    }
    .board-list-rc.on { color: #e85d4a; }

    .community-writebar { display: flex; justify-content: flex-end; margin: 0 0 10px; }

    .community-write-btn {
      border: 0; background: #1a1a2e; color: #fff;
      font-family: inherit; font-size: 13px; font-weight: 800;
      padding: 9px 16px; border-radius: 8px; cursor: pointer;
    }
    .community-write-btn:hover { background: #e85d4a; }
    .square-detail-post-title {
      font-size: 16px;
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    @media (max-width: 1100px) {
      .community-layout {
        grid-template-columns: 160px minmax(0, 1fr);
      }
    }

    @media (max-width: 760px) {
      .board-page {
        padding: 16px 12px calc(84px + env(safe-area-inset-bottom, 0));
      }

      .community-layout {
        grid-template-columns: 1fr;
      }

      .community-side {
        position: static;
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;   
        gap: 6px;
        padding: 8px;
      }
      .community-side::-webkit-scrollbar { display: none; }

      .community-side-title {
        display: none;
      }

      .community-category {
        width: auto;
        white-space: nowrap;
        display: flex;            
        align-items: center;
        line-height: 1.2;
      }

      .community-side-divider {
        display: block;
        flex: 0 0 auto;
        align-self: center;
        width: 1px;
        height: 20px;
        border: none;
        background: #d8d8d2;
        margin: 0 2px;
        padding: 0;
      }

      .community-side.has-more-right {
        -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 28px), transparent 100%);
        mask-image: linear-gradient(to right, #000 calc(100% - 28px), transparent 100%);
      }

      .community-compose-tools {
        grid-template-columns: 1fr;
        display: grid;
      }

      .community-post-type-select {
        width: 100%;
      }

      .square-photo-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .photo-viewer-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .community-search { justify-content: flex-start; }
      .community-search input { flex: 1 1 auto; }
    }

    .main {
      display: flex;
      height: 100vh;
      padding-top: 56px;
      position: relative;
    }

    #map {
      flex: 1;
    }

    .left-panels {
      display: flex;
      flex-direction: row;
      z-index: 10;
      position: relative;
    }

    .detail-panel {
      width: 0;
      overflow: hidden;
      background: #fff;
      border-right: 0px solid #e8e8e2;
      transition: width 0.3s ease, border-width 0.3s ease;
      order: 0;
      display: flex;
      flex-direction: column;
    }

    .detail-panel.open {
      width: 400px;
      border-right-width: 1px;
      overflow-y: auto;
    }

    .side-panel {
      width: 0;
      overflow: hidden;
      background: #fff;
      border-right: 0px solid #e8e8e2;
      transition: width 0.3s ease, border-width 0.3s ease;
      order: 1;
      display: flex;
      flex-direction: column;
    }

    .side-panel.open {
      width: 380px;
      border-right-width: 1px;
      overflow-y: auto;
    }

    .side-inner {
      width: 380px;
    }

    .building-inner[hidden], .side-inner[hidden] { display: none !important; }

    .detail-inner {
      width: 400px;
    }

    .panel-header {
      padding: 14px 16px;
      border-bottom: 1px solid #f0f0ea;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 10;
    }

    .building-panel .panel-header, .side-panel .panel-header { padding-right: 24px; }

    .panel-header h3 {
      font-size: 16px;
      font-weight: 700;
      color: #1a1a2e;
    }

    .icon-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1.5px solid #e0e0da;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      color: #555;
    }

    .icon-btn:hover {
      background: #f5f5f0;
    }

    .area-tabs {
      padding: 12px 16px 0;
      display: none;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .area-tabs::-webkit-scrollbar {
      display: none;
    }

    .area-tag {
      padding: 6px 12px;
      border-radius: 16px;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
      cursor: pointer;
      border: 1.5px solid #e0e0da;
      color: #555;
      background: #fff;
      transition: all 0.15s;
      margin-bottom: 12px;
    }

    .area-tag.active {
      background: #e85d4a;
      color: #fff;
      border-color: #e85d4a;
    }

    .area-section {
      display: none;
    }

    .area-section.active {
      display: block;
    }

    .area-info {
      margin: 12px 16px;
      padding: 14px;
      background: #f8f6f0;
      border-radius: 12px;
      border-left: 3px solid #e85d4a;
    }

    .area-info h3 {
      font-size: 16px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 4px;
    }

    .area-info p {
      font-size: 12px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .area-photo-strip { margin: 12px 16px; }
    .area-photo-track {
      display: flex; gap: 6px; overflow-x: auto; padding-bottom: 2px;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .area-photo-track::-webkit-scrollbar { display: none; }
    .area-photo-item {
      flex: 0 0 auto; width: 104px; height: 78px; padding: 0; border: none;
      border-radius: 10px; overflow: hidden; cursor: pointer; background: #efece6;
    }
    .area-photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .area-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .area-stat {
      background: #fff;
      border-radius: 8px;
      padding: 8px;
      text-align: center;
    }

    .area-stat .label {
      font-size: 11px;
      color: #999;
      margin-bottom: 2px;
    }

    .area-stat .value {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
    }

    .review-tags {
      padding: 0 16px 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .rtag {
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 500;
    }

    .rtag.good {
      background: #e8f5e9;
      color: #2e7d32;
    }

    .rtag.warn {
      background: #fff3e0;
      color: #e65100;
    }

    .cat-tabs {
      padding: 0 16px 8px;
      display: flex;
      gap: 6px;
      overflow-x: auto;
      scrollbar-width: none;
      border-bottom: 1px solid #f0f0ea;
      margin-bottom: 8px;
    }

    .cat-tabs::-webkit-scrollbar {
      display: none;
    }

    .cat-tab {
      padding: 5px 12px;
      border-radius: 14px;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
      cursor: pointer;
      border: 1.5px solid #e0e0da;
      color: #555;
      background: #fff;
      transition: all 0.15s;
    }

    .cat-tab.active {
      background: #e85d4a;
      color: #fff;
      border-color: #e85d4a;
    }

    .comments-section {
      margin: 0 16px 16px;
    }

    .comments-title {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .review-sort-tabs {
      display: flex;
      align-items: center;
      justify-content: flex-end; 
      gap: 6px;
      flex-wrap: wrap;
      margin: 0 0 10px;
    }

    .review-sort-btn {
      padding: 5px 10px;
      border-radius: 14px;
      border: 1.5px solid #e0e0da;
      background: #fff;
      color: #555;
      font-size: 12px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }

    .review-sort-btn.active {
      background: #e85d4a; 
      border-color: #e85d4a;
      color: #fff;
    }

    .review-count-inline {
      font-size: 12px;
      color: #888;
      font-weight: 700;
      margin-left: auto;
    }

    .comment-write {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
    }

    .comment-write input {
      flex: 1;
      border: 1.5px solid #e0e0da;
      border-radius: 20px;
      padding: 8px 14px;
      font-size: 12px;
      outline: none;
      font-family: inherit;
      min-width: 0;
    }

    .comment-write input:focus {
      border-color: #e85d4a;
    }

    .comment-submit {
      padding: 8px 14px;
      background: #e85d4a;
      color: #fff;
      border: none;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }

    .comment-card {
      background: #f8f8f5;
      border-radius: 10px;
      padding: 10px 12px;
      margin-bottom: 8px;
      border: 1px solid #eeeeea;
    }

    .comment-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 5px;
      gap: 8px;
    }

    .comment-author {
      font-size: 12px;
      font-weight: 700;
      color: #1a1a2e;
    }

    .comment-meta-right {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin-left: auto;
    }

    .comment-date {
      font-size: 11px;
      color: #a89f90;
      white-space: nowrap;
    }

    .comment-text {
      font-size: 12px;
      color: #1a1a2e;
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .comment-actions {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .comment-insight {
      margin-left: auto;
      color: #a89f90;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .comment-owner-actions {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .comment-owner-action {
      border: 1px solid #e0e0da;
      border-radius: 12px;
      background: #fff;
      color: #6b6459;
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
    }

    .comment-owner-action:hover {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .comment-owner-action.danger {
      color: #e85d4a;
    }

    .comment-edit-textarea {
      width: 100%;
      min-height: 76px;
      resize: vertical;
      border: 1.5px solid #e0e0da;
      border-radius: 10px;
      padding: 9px 11px;
      font-size: 12px;
      line-height: 1.6;
      font-family: inherit;
      outline: none;
      color: #1a1a2e;
      background: #fff;
    }

    .comment-edit-textarea:focus {
      border-color: #e85d4a;
    }

    .comment-edit-actions {
      display: flex;
      justify-content: flex-end;
      gap: 6px;
      margin-top: 8px;
    }

    .vote-btn {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 3px 4px;
      border-radius: 0;
      border: 0;
      background: none;
      font-size: 13px;
      cursor: pointer;
      color: #6b6459;
    }

    .vote-btn:hover { color: #e85d4a; }

    .vote-btn:disabled,
    .reply-submit:disabled {
      opacity: 0.55;
      cursor: wait;
    }

    .login-prompt {
      text-align: center;
      padding: 16px;
      background: #f8f6f0;
      border-radius: 10px;
      margin-top: 8px;
    }

    .login-prompt-title {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 6px;
    }

    .login-prompt-sub {
      font-size: 12px;
      color: #666;
      margin-bottom: 10px;
    }

    .login-prompt-btn {
      padding: 8px 20px;
      background: #e85d4a;
      color: #fff;
      border: none;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
    }

    .detail-imgs {
      height: 200px;
      background: #e8e8e0;
      flex-shrink: 0;
    }

    .detail-imgs img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .building-photo-empty {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      background: linear-gradient(135deg, #f8f6f0 0%, #efeee8 100%);
      color: #777;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
    }

    .building-photo-empty .photo-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: #e85d4a;
      font-size: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .detail-body {
      padding: 8px 16px 16px; 
    }

    .detail-price {
      font-size: 22px;
      font-weight: 800;
      color: #e85d4a;
      margin-bottom: 3px;
    }

    .detail-title {
      font-size: 19px;
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: 2px;
    }
    .detail-title-ko {
      font-size: 13px;
      font-weight: 600;
      color: #6b6b80;
      margin-bottom: 4px;
    }

    .detail-addr {
      display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap;
      font-size: 12px;
      color: #8a8a96;
      margin-bottom: 14px;
      line-height: 1.55;
    }

    .addr-label {
      flex-shrink: 0; font-size: 11px; font-weight: 800; color: #a8a8b4;
      background: #f4f4f7; border-radius: 5px; padding: 2px 6px;
    }
    .addr-val { flex: 1 1 auto; min-width: 0; }

    .addr-copy {
      flex-shrink: 0; border: 1px solid #dcdce4; background: #fff; border-radius: 7px;
      padding: 2px 8px; font-size: 11px; font-weight: 800; color: #6b7280;
      font-family: inherit; cursor: pointer;
    }
    .addr-copy:hover { border-color: #35629e; color: #35629e; }

    .bld-context-row { display: flex; gap: 8px; margin: 4px 0 12px; flex-wrap: wrap; }
    .bld-context-btn {
      flex: 1; min-width: 120px; padding: 9px 12px; border: 1px solid #e0ddf0; border-radius: 10px;
      background: #f6f5fc; color: #4a3fa0; font-size: 13px; font-weight: 700; font-family: inherit;
      cursor: pointer; white-space: nowrap;
    }
    .bld-context-btn:hover { background: #ece9f8; }

    .building-topline {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 9px;
    }

    .building-type-badge {
      display: inline-flex;
      align-items: center;
      height: 24px;
      padding: 0 9px;
      border-radius: 12px;
      background: #fff1ee;
      color: #e85d4a;
      font-size: 12px;
      font-weight: 800;
    }

    .building-source-badge {
      display: inline-flex;
      align-items: center;
      height: 24px;
      padding: 0 9px;
      border-radius: 12px;
      background: #f5f5f0;
      color: #777;
      font-size: 12px;
      font-weight: 700;
    }

    .building-one-liner {
      margin: 12px 0;
      padding: 11px 12px;
      border-radius: 10px;
      background: #fff8f6;
      border: 1px solid #ffd5cc;
      color: #444;
      font-size: 12px;
      line-height: 1.6;
      font-weight: 600;
    }

    .foreigner-status-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 4px 0 8px;
      flex-wrap: wrap;
    }
    .foreigner-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 800;
    }
    .foreigner-badge.ok { background: #e8f7ee; color: #1e7e38; }
    .foreigner-badge.conditional { background: #fff3cd; color: #856404; }
    .foreigner-badge.unknown { background: #f5f5f0; color: #888; }
    .foreigner-badge-note {
      font-size: 12px;
      color: #888;
      font-weight: 500;
    }
    .building-section-title {
      font-size: 12px;
      font-weight: 700;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin: 16px 0 7px;
    }
    .life-check-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 4px;
    }
    .life-check-tag {
      padding: 5px 10px;
      border-radius: 14px;
      background: #f0f4ff;
      color: #3a4a8a;
      font-size: 12px;
      font-weight: 700;
    }
    .life-check-empty {
      font-size: 12px;
      color: #bbb;
      padding: 4px 0;
    }
    .caution-tag {
      padding: 5px 10px;
      border-radius: 14px;
      background: #fff0f0;
      color: #c0392b;
      font-size: 12px;
      font-weight: 700;
    }
    .external-links-section { margin: 0 16px 10px; }
    .external-links-btns { display: flex; }
    .external-link-btn {
      flex: 1;
      display: block;
      text-align: center;
      padding: 8px 12px;
      border-radius: 8px;
      background: #f5f5f0;
      border: none;
      color: #555;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      font-family: inherit;
    }
    .external-link-btn:hover { background: #eaeae4; }
    .official-card > .external-link-btn { margin-top: 8px; } 

    .official-shop-cta { display: block; text-align: center; margin-top: 10px; padding: 11px; border-radius: 11px; background: #eef2f8; border: 1px solid #dae5f2; color: #2b5089; font-weight: 800; font-size: 14px; text-decoration: none; }
    .official-shop-cta:active { background: #e3ece6; }

    .inq-box { background:#fff; border-radius:18px; width:min(440px,92vw); max-height:88vh; overflow-y:auto; padding:20px; box-shadow:0 20px 60px rgba(0,0,0,.25); }
    .inq-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px; }
    .inq-title { font-size:19px; font-weight:900; color:#1a1a2e; }
    .inq-sub { font-size:12px; color:#888; margin-top:3px; }
    .inq-label { display:block; font-size:12px; font-weight:800; color:#1a1a2e; margin:12px 0 5px; }
    .inq-req { color:#e85d4a; }
    .inq-hint { font-weight:500; color:#aaa; font-size:12px; }
    .inq-input, .inq-textarea { width:100%; box-sizing:border-box; border:1px solid #ddd; border-radius:10px; padding:10px 12px; font-size:14px; font-family:inherit; color:#1a1a2e; }
    .inq-textarea { resize:vertical; }
    .inq-check { display:flex; align-items:center; gap:7px; font-size:12px; color:#555; margin-top:12px; cursor:pointer; }
    .inq-consent { font-size:12px; color:#999; line-height:1.5; margin:10px 0 0; }

    .agc-box { background:#fff; border-radius:18px; width:min(440px,92vw); max-height:88vh; overflow-y:auto; padding:20px; box-shadow:0 20px 60px rgba(0,0,0,.25); }
    .inq-agency-card { background:#fff7f5; border:1px solid #f0c8c0; border-radius:11px; padding:10px 12px; margin-bottom:6px; }
    .inq-agency-card .iac-nm { font-size:14px; font-weight:800; color:#c4452f; }
    .inq-agency-card .iac-intro { font-size:12px; color:#666; line-height:1.5; margin-top:3px; white-space:pre-line; }
    .myorg-add-soft { background:#f4f1ea; color:#6a655c; }
    .inq-actions { display:flex; gap:8px; margin-top:18px; }
    .inq-submit { flex:1; background:#e85d4a; color:#fff; border:none; border-radius:12px; padding:13px; font-size:14px; font-weight:800; font-family:inherit; cursor:pointer; }
    .inq-submit:disabled { background:#ccc; cursor:default; }
    .inq-cancel { flex:0 0 auto; background:#f3f3ef; color:#666; border:none; border-radius:12px; padding:13px 18px; font-size:14px; font-weight:700; font-family:inherit; cursor:pointer; }

    .guide-category { color:#c88a7a; font-weight:600; }
    .guide-category:hover { color:#b8472f; }
    .guide-category.active { background:none; color:#b8472f; font-weight:800; }
    .guide-compose { border:1.5px solid #f0d6cf; border-radius:14px; padding:14px; margin-bottom:14px; background:#fffaf8; }
    .guide-compose-label { font-size:12px; font-weight:800; color:#b8472f; margin-bottom:10px; }
    .guide-toolbar { display:flex; flex-wrap:wrap; gap:6px; margin:8px 0; }
    .guide-tool { background:#fff; border:1px solid #ddd; border-radius:7px; padding:5px 10px; font-size:12px; font-weight:700; font-family:inherit; color:#444; cursor:pointer; }
    .guide-tool:hover { background:#f3f3ef; }
    .guide-editor { min-height:180px; border:1px solid #ddd; border-radius:10px; padding:12px 14px; font-size:14px; line-height:1.7; color:#1a1a2e; background:#fff; overflow-y:auto; }
    .guide-editor:focus { outline:2px solid #e85d4a33; }
    .guide-editor:empty::before { content:attr(data-placeholder); color:#bbb; }
    .guide-editor h3, .guide-content h3 { font-size:19px; font-weight:800; margin:14px 0 6px; }
    .guide-editor h4, .guide-content h4 { font-size:16px; font-weight:700; margin:12px 0 5px; }
    .guide-editor ul, .guide-content ul { padding-left:20px; margin:8px 0; list-style:disc; }
    .guide-editor li, .guide-content li { margin:3px 0; }
    .guide-editor hr, .guide-content hr { border:0; border-top:1px solid #e3e3e8; margin:18px 0; height:0; }
    .guide-editor img, .guide-content img { max-width:100%; height:auto; border-radius:10px; margin:10px 0; display:block; }
    .guide-content { line-height:1.75; }

    .square-detail-box.guide-reader { width:min(760px, calc(100vw - 24px)); max-height:calc(100vh - 28px); }

    @media (max-width: 760px) {
      .square-detail-box,
      .square-detail-box.guide-reader {
        max-height: calc(100vh - 80px - env(safe-area-inset-bottom, 0px));
        max-height: calc(100dvh - 80px - env(safe-area-inset-bottom, 0px));
      }
    }
    .square-detail-box.guide-reader .square-detail-body { background:#fff; padding:22px 26px 32px; }
    .square-detail-box.guide-reader .square-card { border:none; background:transparent; box-shadow:none; padding:0; margin:0; }
    .square-detail-box.guide-reader .square-meta { display:none; }
    .square-detail-box.guide-reader .square-detail-post-title { font-size:22px; line-height:1.35; margin:0 0 16px; }
    .square-detail-box.guide-reader .guide-content { font-size:16px; line-height:1.85; }

    .legal-box { background:#fff; border-radius:16px; width:min(560px,94vw); max-height:88vh; display:flex; flex-direction:column; box-shadow:0 20px 60px rgba(0,0,0,.25); }
    .legal-head { display:flex; justify-content:space-between; align-items:center; padding:18px 20px 12px; border-bottom:1px solid #f0f0ea; }
    .legal-title { font-size:16px; font-weight:900; color:#1a1a2e; }
    .legal-body { padding:18px 20px; overflow-y:auto; font-size:13px; line-height:1.7; color:#333; }
    .legal-body h4 { font-size:14px; font-weight:800; color:#1a1a2e; margin:16px 0 6px; }
    .legal-body h4:first-child { margin-top:0; }
    .legal-body p { margin:6px 0; }
    .legal-body ul { padding-left:18px; margin:6px 0; list-style:disc; }
    .legal-body li { margin:3px 0; }
    .legal-body .legal-note { font-size:12px; color:#999; background:#faf7f2; border-radius:8px; padding:10px 12px; margin-top:14px; }
    .legal-foot { padding:12px 20px 18px; text-align:right; }

    .empty-feed { padding:26px 18px; text-align:center; }
    .empty-feed-emoji { font-size:30px; line-height:1; margin-bottom:9px; }

    .ico{display:inline-block;width:1.1em;height:1.1em;vertical-align:-.16em;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
    .ico .iac{stroke:var(--ac,#e85d4a);}      
    .ico .iaf{fill:var(--ac,#e85d4a);stroke:none;}
    .tf-theme-ico .ico{width:24px;height:24px;vertical-align:middle;}
    .share-icon-btn .ico{width:16px;height:16px;vertical-align:middle;}
    .empty-feed-emoji .ico{width:36px;height:36px;stroke-width:1.5;}
    .chomei-building-icon .ico{width:20px;height:20px;color:#9a988f;}

    .chomei-agencies { margin: 6px 0 2px; }
    .chomei-agency-card { display:flex; align-items:center; gap:9px; text-decoration:none; background:#fff7f5; border:1px solid #f0d8d2; border-radius:11px; padding:9px 11px; margin-bottom:6px; }
    .chomei-agency-card:hover { background:#fdeeea; }
    .chomei-agency-card .cac-ic { flex:none; color:#c4452f; display:flex; }
    .chomei-agency-card .cac-ic .ico { width:20px; height:20px; }
    .chomei-agency-card .cac-body { flex:1; min-width:0; display:flex; flex-direction:column; }
    .chomei-agency-card .cac-nm { font-size:13px; font-weight:800; color:#1a1a2e; }
    .chomei-agency-card .cac-intro { font-size:12px; color:#8a8178; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .chomei-agency-card .cac-go { flex:none; color:#c4452f; font-weight:800; }
    .chomei-agency-toggle { background:none; border:none; color:#8a8178; font-size:12px; font-weight:700; font-family:inherit; cursor:pointer; padding:4px 2px; }

    .vote-btn .ico{width:14px;height:14px;margin-right:3px;vertical-align:-.2em;}
    .search-suggestion-icon .ico{width:18px;height:18px;}
    .brand-logo{width:18px;height:18px;margin-right:8px;vertical-align:-.22em;display:inline-block;flex-shrink:0;}
    .rrw-photo-btn .ico{width:16px;height:16px;margin-right:5px;vertical-align:-.2em;}
    .brand-card-link .ico,.iac-nm .ico{width:15px;height:15px;margin-right:5px;vertical-align:-.2em;}
    .bld-context-btn .ico,.external-link-btn .ico{width:14px;height:14px;margin-right:4px;vertical-align:-.18em;} 
    .empty-feed-title { font-size:14px; font-weight:800; color:#3a3a4a; margin-bottom:5px; }
    .empty-feed-sub { font-size:12px; color:#9a9aa5; line-height:1.65; max-width:300px; margin:0 auto; }

    .building-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 12px 0 14px;
    }

    .building-chip {
      padding: 5px 9px;
      border-radius: 14px;
      background: #f5f5f0;
      color: #555;
      font-size: 12px;
      font-weight: 700;
    }

    .building-chip.positive {
      background: #eef8ee;
      color: #2d7a35;
    }

    .building-chip.neutral {
      background: #f5f5f0;
      color: #555;
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      margin-bottom: 14px;
    }

    .spec-item {
      background: #f8f6f0;
      border-radius: 8px;
      padding: 9px 10px;
    }

    .spec-label {
      font-size: 11px;
      color: #999;
      margin-bottom: 2px;
    }

    .spec-value {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
    }

    .section-title {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
      padding-bottom: 6px;
      border-bottom: 1px solid #f0f0ea;
    }

    .review-head-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px; 
      margin-bottom: 10px;
    }
    .review-head-row .section-title {
      margin: 0;
      padding: 0;
      border: 0;
    }
    .review-head-row .building-review-tabs {
      margin: 0;
      flex: 0 0 auto;
    }

    .review-controls-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin: 8px 0 10px;
    }

    .review-controls-row .cat-tabs,
    .review-controls-row .building-review-tabs,
    .review-controls-row .review-sort-tabs {
      margin: 0; padding: 3px; border: none; border-bottom: none;
      flex: 0 0 auto; gap: 2px; overflow: visible; align-items: center;
      background: #eceef2; border-radius: 11px;
    }
    .review-controls-row .review-sort-tabs { margin-left: auto; justify-content: flex-start; }
    .review-controls-row .cat-tab,
    .review-controls-row .building-review-tab,
    .review-controls-row .review-sort-btn {
      border: none; background: transparent; color: #5b6472;
      border-radius: 8px; padding: 6px 14px; font-size: 12px; font-weight: 700; box-shadow: none;
    }
    .review-controls-row .cat-tab:not(.active):hover,
    .review-controls-row .building-review-tab:not(.active):hover,
    .review-controls-row .review-sort-btn:not(.active):hover {
      color: #23385c; background: rgba(0,0,0,.045);
    }
    .review-controls-row .cat-tab.active,
    .review-controls-row .building-review-tab.active,
    .review-controls-row .review-sort-btn.active {
      background: #35629e; color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.12);
    }
    .review-controls-collapsed { display: none !important; } 

    .myhome-hub-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
    .myhome-hub-title { font-size: 16px; font-weight: 800; color: #1a1a2e; }
    .myhome-map-btn { padding: 6px 12px; border: 1px solid #e0ddd5; border-radius: 999px; background: #fff; color: #555; font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer; flex: 0 0 auto; }
    .myhome-hub-actions { display: flex; gap: 6px; flex: 0 0 auto; } 
    .myhome-unset-btn { padding: 6px 12px; border: 1px solid #f0d6d2; border-radius: 999px; background: #fff; color: #c0524a; font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer; flex: 0 0 auto; }
    .myhome-hub-intro { font-size: 13px; color: #777; line-height: 1.6; margin-bottom: 14px; }
    .myhome-section { margin-bottom: 18px; }
    .myhome-section-title { font-size: 13px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
    .myhome-cnt { display: inline-flex; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: #e85d4a; color: #fff; font-size: 12px; align-items: center; justify-content: center; margin-left: 4px; vertical-align: middle; }
    .myhome-fill-card { border: 1px dashed #e0c9a8; background: #fffdf6; border-radius: 12px; padding: 18px 16px; text-align: center; }
    .myhome-fill-title { font-size: 14px; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; }
    .myhome-fill-sub { font-size: 13px; color: #777; line-height: 1.6; margin-bottom: 10px; }
    .myhome-fill-btn { display: block; width: 100%; box-sizing: border-box; padding: 11px; border: none; border-radius: 10px; background: #e85d4a; color: #fff; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; margin-top: 8px; }
    .myhome-fill-btn.ghost { background: #fff; color: #e85d4a; border: 1px solid #e85d4a; }

    .nav-tab-badge { display: inline-flex; min-width: 16px; height: 16px; padding: 0 4px; margin-left: 5px; border-radius: 999px; background: #e85d4a; color: #fff; font-size: 11px; font-weight: 800; align-items: center; justify-content: center; vertical-align: middle; box-sizing: border-box; }
    .mtab { position: relative; }
    .mtab-badge { position: absolute; top: 2px; left: calc(50% + 7px); min-width: 15px; height: 15px; padding: 0 4px; border-radius: 999px; background: #e85d4a; color: #fff; font-size: 9px; font-weight: 800; line-height: 1; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; }

    .nav-tab-dot { display: inline-block; width: 6px; height: 6px; margin-left: 5px; border-radius: 50%; background: #35629e; vertical-align: middle; animation: homeNudgePulse 2.4s ease-in-out infinite; }
    .nav-tab.active .nav-tab-dot { background: #8fb4e8; }
    .mtab-dot { position: absolute; top: 4px; left: calc(50% + 9px); width: 6px; height: 6px; border-radius: 50%; background: #35629e; animation: homeNudgePulse 2.4s ease-in-out infinite; }
    @keyframes homeNudgePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.78); } }
    @media (prefers-reduced-motion: reduce) { .nav-tab-dot, .mtab-dot { animation: none; } }

    .home-nudge-tip { position: fixed; z-index: 4200; max-width: 260px; background: #2b5089; color: #fff; border-radius: 12px; padding: 12px 34px 12px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.22); font-size: 13px; line-height: 1.6; letter-spacing: -0.2px; opacity: 0; transform: translateY(-4px); transition: opacity .22s, transform .22s; }
    .home-nudge-tip.open { opacity: 1; transform: translateY(0); }
    .home-nudge-tip b { font-weight: 800; }
    .home-nudge-tip .hn-x { position: absolute; top: 4px; right: 4px; width: 26px; height: 26px; border: none; background: none; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1; cursor: pointer; font-family: inherit; }
    .home-nudge-tip .hn-x:hover { color: #fff; }
    .home-nudge-tip .hn-arrow { position: absolute; width: 10px; height: 10px; background: #2b5089; transform: rotate(45deg); }
    .home-nudge-tip.pos-below .hn-arrow { top: -5px; }
    .home-nudge-tip.pos-above .hn-arrow { bottom: -5px; }

    .home-notif-sec { margin: 0 0 12px; }
    .home-notif-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .home-notif-ttl { font-size: 14px; font-weight: 800; color: #1a1a2e; }
    .home-notif-count { display: inline-flex; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: #e85d4a; color: #fff; font-size: 12px; font-weight: 800; align-items: center; justify-content: center; vertical-align: middle; }
    .home-notif-sec .notif-list { max-height: 40vh; overflow-y: auto; background: #faf9f5; border-radius: 12px; padding: 4px; }
    .nav-bell { position: relative; font-size: 15px; padding-left: 12px; padding-right: 12px; }
    .notif-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.28); z-index: 9150; }
    .notif-center { position: fixed; z-index: 9200; background: #fff; border: 1px solid #ececec; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.18); width: min(380px, 92vw); max-height: 70vh; display: flex; flex-direction: column; overflow: hidden; top: 64px; right: 16px; }
    .notif-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid #f0f0ea; flex: 0 0 auto; }
    .notif-head h3 { margin: 0; font-size: 16px; font-weight: 800; color: #1a1a2e; }
    .notif-head-actions { display: flex; align-items: center; gap: 6px; }
    .notif-readall { font-size: 12px; color: #1a1a2e; background: #f1f0ea; border: none; border-radius: 8px; padding: 5px 10px; font-weight: 700; cursor: pointer; }
    .notif-list { overflow-y: auto; padding: 6px; flex: 1 1 auto; min-height: 0; }
    .notif-item { display: block; width: 100%; text-align: left; border: none; background: #fff; border-radius: 10px; padding: 10px 12px; cursor: pointer; font-family: inherit; }
    .notif-item + .notif-item { margin-top: 2px; }
    .notif-item:hover { background: #f7f6f1; }
    .notif-item.unread { background: #fff5f2; }
    .notif-item-top { font-size: 13px; color: #1a1a2e; line-height: 1.4; }
    .notif-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #e85d4a; margin-left: 3px; vertical-align: middle; }
    .notif-item-snip { font-size: 12px; color: #777; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-break: break-word; }
    .notif-item-time { font-size: 12px; color: #aaa; margin-top: 4px; }
    .notif-empty { padding: 32px 16px; text-align: center; color: #aaa; font-size: 13px; }
    @media (max-width: 768px) {
      .notif-center { top: auto; bottom: 0; right: 0; left: 0; width: 100%; max-height: 76vh; border-radius: 16px 16px 0 0; }
    }

    .fee-row {
      display: flex;
      justify-content: space-between;
      padding: 6px 0;
      font-size: 12px;
      border-bottom: 1px solid #f8f8f5;
    }

    .fee-label {
      color: #666;
    }

    .fee-value {
      font-weight: 600;
      color: #1a1a2e;
    }

    .fee-highlight {
      color: #e85d4a !important;
      font-weight: 700 !important;
    }

    .korean-tips {
      background: #fff8f6;
      border-radius: 10px;
      padding: 12px;
      margin: 12px 0;
      border: 1px solid #ffd5cc;
    }

    .korean-tips h5 {
      font-size: 12px;
      font-weight: 700;
      color: #e85d4a;
      margin-bottom: 8px;
    }

    .tip-item {
      font-size: 12px;
      color: #555;
      padding: 3px 0;
      display: flex;
      gap: 6px;
      line-height: 1.5;
    }

    .tip-dot {
      color: #e85d4a;
      font-weight: 700;
      flex-shrink: 0;
    }

    .korstay-section {
      background: #f8f9fb;
      border: 1px solid #e6eaf0;
      border-radius: 12px;
      padding: 12px;
      margin: 14px 0;
    }

    .korstay-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 10px;
    }

    .korstay-head h5 {
      font-size: 13px;
      font-weight: 800;
      color: #1a1a2e;
    }

    .korstay-note {
      font-size: 11px;
      color: #8a93a3;
      flex-shrink: 0;
    }

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

    .korstay-item {
      background: #fff;
      border: 1px solid #eceff4;
      border-radius: 8px;
      padding: 8px 10px;
    }

    .korstay-label {
      display: block;
      font-size: 11px;
      color: #99a0ad;
      margin-bottom: 2px;
    }

    .korstay-value {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1.35;
    }

    .korstay-item.is-empty {
      background: #fbfbfc;
      border-style: dashed;
    }

    .korstay-item.is-empty .korstay-value {
      color: #b6bcc6;
      font-weight: 600;
    }

    .korstay-cta {
      margin-top: 10px;
      font-size: 12px;
      color: #6b7280;
      line-height: 1.5;
    }

    .kakao-btn {
      padding: 5px 11px;
      background: #fee500;
      color: #3c1e1e;
      border: none;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .line-btn {
      padding: 5px 11px;
      background: #06c755;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .review-card-d {
      background: #f8f6f0;
      border-radius: 8px;
      padding: 10px;
      margin-bottom: 8px;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 5px;
    }

    .reviewer {
      font-size: 12px;
      font-weight: 700;
      color: #1a1a2e;
    }

    .stars {
      font-size: 12px;
      color: #ffa800;
    }

    .review-text {
      font-size: 12px;
      color: #555;
      line-height: 1.6;
    }

    .cta-box {
      padding: 14px 16px;
      border-top: 1px solid #f0f0ea;
      position: sticky;
      bottom: 0;
      background: #fff;
      flex-shrink: 0;
    }

    .cta-btn {
      width: 100%;
      padding: 13px;
      background: #e85d4a;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
    }

    .gmap-area-marker {
      display: flex; flex-direction: column; align-items: flex-start; gap: 6.6px;
      background: #35629e;
      color: #fff;

      border: 1px solid rgba(255, 255, 255, 0.34);
      padding: 10.6px 7.6px 8.6px;
      border-radius: 5.4px;
      white-space: nowrap;
      box-shadow: 0 3px 9px rgba(16, 30, 50, 0.34);
      cursor: pointer;
      position: absolute;
      transform: translate(-50%, calc(-100% - 4.6px)); 
      z-index: 40;
      line-height: 1;
    }

    .gmap-area-marker::after {
      content: ''; position: absolute; left: 50%; top: calc(100% + 1px);
      width: 6.5px; height: 6.5px; background: #35629e;
      border-right: 1px solid rgba(255, 255, 255, 0.34);
      border-bottom: 1px solid rgba(255, 255, 255, 0.34);
      border-bottom-right-radius: 1.5px;
      transform: translate(-50%, -50%) rotate(45deg);
    }
    .gmap-area-marker .ap-nm { font-size: 13px; font-weight: 900; letter-spacing: -0.4px; }
    .gmap-area-marker .ap-sub { font-size: 8.5px; font-weight: 800; opacity: 0.97; }

    .gmap-area-marker .ap-cnt { opacity: .82; }
    .gmap-area-marker:hover { background: #3f6fac; }
    .gmap-area-marker:hover::after { background: #3f6fac; } 

    .gmap-chome-label {
      position: absolute;
      transform: translate(-50%, -50%);
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      background: #566a8e;
      padding: 3px 8px;
      border-radius: 9px;
      white-space: nowrap;
      pointer-events: auto;        
      cursor: pointer;
      z-index: 1;                  
      letter-spacing: -0.2px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
      transition: filter .12s;
    }
    .gmap-chome-label:hover { filter: brightness(1.12); }
    .gmap-chome-label:active { filter: brightness(0.94); }

    .gmap-chome-label.sel {
      transform: translate(-50%, -50%) scale(1.18);
      box-shadow: 0 0 0 2px #fff, 0 3px 10px rgba(0, 0, 0, 0.35);
      font-weight: 800;
      z-index: 3;                  
    }

    .gmap-price-marker {
      background: #fff;
      color: #1a1a2e;
      padding: 4px 9px;
      border-radius: 11px;
      z-index: 2;                  
      font-size: 11.5px;
      font-weight: 800;
      white-space: nowrap;
      border: 2px solid var(--pin-color, #1a1a2e);
      box-shadow: 0 2px 7px rgba(20, 26, 44, 0.22);
      cursor: pointer;
      position: absolute;
      transform: translate(-50%, calc(-100% - 8px));

      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease, background-color .15s ease;
    }
    .gmap-price-marker::after {
      content: ""; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%);
      width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent;
      border-top: 8px solid var(--pin-color, #1a1a2e);
    }
    .gmap-price-marker::before {
      content: ""; position: absolute; left: 50%; bottom: -5px; transform: translateX(-50%); z-index: 2;
      width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
      border-top: 5px solid #fff;
    }
    .gmap-price-marker:hover,
    .gmap-price-marker.active {
      border-color: var(--pin-hover, #e85d4a); color: #d64a34; background: #fff6f4;
      transform: translate(-50%, calc(-100% - 8px)) scale(1.08); 
      box-shadow: 0 4px 12px rgba(20, 26, 44, 0.28);
      z-index: 15;
    }
    .gmap-price-marker:hover::after,
    .gmap-price-marker.active::after { border-top-color: var(--pin-hover, #e85d4a); }
    .gmap-price-marker:hover::before,
    .gmap-price-marker.active::before { border-top-color: #fff6f4; }

    .gmap-official-pin { z-index: 5; }

    .gmap-quote-pin { z-index: 4; }
    .gmap-ended-quote-pin { color: #8a827a; border-color: var(--pin-ended, #8a827a); border-style: dashed; }
    .gmap-ended-quote-pin::after { border-top-color: var(--pin-ended, #8a827a); }
    .gmap-ended-quote-pin:hover,
    .gmap-ended-quote-pin.active { color: #6f675f; border-color: var(--pin-ended-hover, #6f675f); background: #f7f6f4; }
    .gmap-ended-quote-pin:hover::after,
    .gmap-ended-quote-pin.active::after { border-top-color: var(--pin-ended-hover, #6f675f); }

    .gmap-building-marker {
      position: absolute;
      transform: translate(-50%, -100%);
      cursor: pointer;
      line-height: 0;
      z-index: 2;                  
      --pin-color: #6b7280;        

      transition: transform .15s ease;
    }

    .gmap-building-marker[data-usage~="sale"]       { --pin-color: #16a34a; }
    .gmap-building-marker[data-usage~="rental"]     { --pin-color: #2563eb; }
    .gmap-building-marker[data-usage~="short"]      { --pin-color: #f59e0b; }
    .gmap-building-marker[data-usage~="sharehouse"],
    .gmap-building-marker[data-usage~="dorm"]       { --pin-color: #8b5cf6; }

    .gmap-building-marker svg { display: block; overflow: visible; position: relative; z-index: 1; }
    .gmap-building-marker::after {
      content: ""; position: absolute; left: 50%; bottom: -1px; width: 10px; height: 4px;
      background: rgba(0, 0, 0, .3); border-radius: 50%; filter: blur(1.5px);
      transform: translateX(-50%); z-index: 0;
    }
    .gmap-building-marker .td-body { fill: #fff; stroke: var(--pin-color, #6b7280); stroke-width: 3; }
    .gmap-building-marker .td-dot  { fill: var(--pin-color, #6b7280); }

    .pin-rev-badge { display: none; }
    [data-has-review="true"] > .pin-rev-badge {
      display: block; position: absolute; top: -5px; right: -6px;
      width: 15px; height: 15px; border-radius: 50%;
      background: #111827; border: 1.5px solid #fff;
      color: #fff; font-size: 8.5px; line-height: 12px; text-align: center;
      font-style: normal; font-weight: 900; letter-spacing: 0;
      box-shadow: 0 1px 3px rgba(0,0,0,.35);
      z-index: 3; pointer-events: none;
    }
    .gmap-building-marker:hover { transform: translate(-50%, -100%) scale(1.08); z-index: 10; } 
    .gmap-building-marker:hover .td-body { stroke: var(--pin-hover, #e85d4a); }
    .gmap-building-marker.active { z-index: 20; transform: translate(-50%, -100%) scale(1.14); }
    .gmap-building-marker.active .td-body { fill: var(--pin-hover, #e85d4a); stroke: var(--pin-hover, #e85d4a); }
    .gmap-building-marker.active .td-dot  { fill: #fff; }

    .gmap-building-marker .marker-label {
      display: none;
    }

    .gmap-building-marker.active .marker-label {
      display: none;
    }

    .gmap-ward-cluster {
      position: absolute;
      min-width: 34px; height: 26px; padding: 0 9px;
      border-radius: 999px;

      display: inline-flex; align-items: center; justify-content: center; gap: 1px;
      background: #fff; border: 2px solid #35629e; color: #35629e;
      font-family: inherit;
      box-shadow: 0 2px 8px rgba(20, 26, 44, 0.24);
      cursor: pointer;
      transform: translate(-50%, -50%);
      z-index: 31;
    }
    .gmap-ward-cluster .wc-n { font-size: 13px; font-weight: 900; letter-spacing: -0.2px; line-height: 1; }
    .gmap-ward-cluster .wc-u { font-size: 10px; font-weight: 800; opacity: .72; line-height: 1; transform: translateY(1px); }
    .gmap-ward-cluster:hover { background: #35629e; color: #fff; }

    .gmap-ask-btn {

      position: absolute; right: 12px; bottom: 102px; z-index: 400;
      width: 40px; height: 40px;
      border: none; border-radius: 50%;
      background: #35629e; color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,.3);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .15s;
    }
    .gmap-ask-btn:hover { background: #2b5089; }
    .gmap-ask-btn svg { display: block; }

    .gmap-loc-btn {
      position: absolute; right: 12px; bottom: 52px; z-index: 400; 
      width: 40px; height: 40px;
      border: none; border-radius: 50%;
      background: #fff; color: #1a73e8;
      box-shadow: 0 2px 8px rgba(0,0,0,.3);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .15s;
    }
    .gmap-loc-btn:hover { background: #f1f5fb; }
    .gmap-loc-btn.loading { opacity: .55; pointer-events: none; }
    .gmap-loc-btn svg { display: block; }
    @media (max-width: 760px) { .gmap-loc-btn { bottom: 82px; } .gmap-ask-btn { bottom: 132px; } } 

    .map-pin-legend {
      display: none !important;
      position: fixed;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%);
      z-index: 20;
      align-items: center;
      gap: 10px;
      max-width: calc(100vw - 24px);
      overflow-x: auto;
      scrollbar-width: none;
      padding: 7px 10px;
      border: 1px solid #eeeeea;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      color: #555;
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 4px 16px rgba(0,0,0,.12);
      pointer-events: auto;
    }

    .map-pin-legend::-webkit-scrollbar {
      display: none;
    }

    .map-pin-legend-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    .map-pin-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid #1a1a2e;
      box-shadow: 0 1px 4px rgba(0,0,0,.16);
    }

    .map-pin-dot.listing {
      background: #e85d4a;
      border-color: #fff;
      box-shadow: 0 0 0 1px #e85d4a, 0 1px 4px rgba(0,0,0,.18);
    }

    .map-pin-filter {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding-left: 8px;
      border-left: 1px solid #eeeeea;
    }

    .map-pin-filter-group {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding-left: 8px;
      border-left: 1px solid #eeeeea;
    }

    .map-pin-filter-label {
      color: #999;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .map-pin-filter-btn {
      border: 1px solid #e0e0da;
      border-radius: 999px;
      background: #fff;
      color: #666;
      padding: 4px 8px;
      font-size: 11px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }

    .map-pin-filter-btn.active {
      background: #1a1a2e;
      border-color: #1a1a2e;
      color: #fff;
    }

    .map-pin-filter-btn:hover {
      border-color: #e85d4a;
      color: #e85d4a;
    }

    .map-pin-filter-btn.active:hover {
      color: #fff;
    }

    body.community-page-open .map-pin-legend {
      display: none;
    }

    body.community-page-open .top-home-filter {
      display: none;
    }

    @media (max-width: 900px) {
      .map-pin-legend {
        left: 50%;
        bottom: 14px;
        flex-wrap: nowrap;
        gap: 4px;
        padding: 5px 8px;
        border-radius: 999px;
      }

      .map-pin-legend-item { display: none; }
      .map-pin-filter {
        width: auto;
        border-left: none;
        border-top: none;
        padding: 0;
        justify-content: center;
      }
      .map-pin-filter-group {
        width: auto;
        border-left: none;
        border-top: none;
        padding: 0;
        justify-content: center;
      }
      .map-pin-filter-label {
        display: none;
      }
    }

    .rrw-box {
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      width: min(480px, calc(100vw - 32px));
      max-height: calc(100dvh - 48px);
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0,0,0,.2);
    }
    .rrw-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 16px;
    }
    .rrw-main-title { font-size: 16px; font-weight: 800; color: #1a1a2e; }
    .rrw-prog {
      display: none;
      align-items: center;
      gap: 0;
      margin-top: 8px;
    }
    .rrw-prog-dot {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: #e0e0da;
      color: #999;
      font-size: 12px;
      font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .rrw-prog-dot.active { background: #e85d4a; color: #fff; }
    .rrw-prog-dot.done  { background: #4aad6e; color: #fff; }
    .rrw-prog-line { flex: 1; height: 2px; background: #e0e0da; min-width: 8px; max-width: 24px; }
    .rrw-step-title { font-size: 16px; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; }
    .rrw-step-sub { font-size: 12px; color: #888; margin-bottom: 14px; line-height: 1.5; }
    .rrw-choice-btns { display: flex; flex-direction: column; gap: 10px; margin: 8px 0; }
    .rrw-choice-btn {
      padding: 14px;
      border-radius: 12px;
      border: 2px solid #e0e0da;
      background: #fff;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
      transition: all .15s;
    }
    .rrw-choice-btn.yes:hover, .rrw-choice-btn.yes.selected { border-color: #4aad6e; background: #eef8ee; color: #1e7e38; }
    .rrw-choice-btn.no:hover,  .rrw-choice-btn.no.selected  { border-color: #e85d4a; background: #fff8f6; color: #c0392b; }
    .rrw-field-label { font-size: 12px; font-weight: 700; color: #333; margin: 12px 0 5px; }
    .rrw-req { color: #e85d4a; }

    .rrw-auto-chip {
      display: flex; align-items: center; gap: 6px;
      background: #f1f6f2; border: 1px solid #cfe6d6; border-radius: 10px;
      padding: 10px 12px; margin: 4px 0 2px;
      font-size: 13px; font-weight: 600; color: #2c7a4b; line-height: 1.4;
    }
    .rrw-auto-chip.muted { background: #f6f6f4; border-color: #e4e4de; color: #999; font-weight: 500; }
    .rrw-stars { display: flex; gap: 6px; margin-bottom: 4px; }
    .rrw-star {
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 2px;
      color: #ddd;
      line-height: 1;
      font-family: inherit;
      transition: color .1s;
    }
    .rrw-star.active { color: #f0a030; }
    .rrw-period-btns { display: flex; gap: 8px; flex-wrap: wrap; }
    .rrw-period-btn {
      padding: 7px 14px;
      border-radius: 20px;
      border: 1.5px solid #e0e0da;
      background: #fff;
      font-size: 12px;
      font-weight: 500;
      cursor: pointer;
      font-family: inherit;
      transition: all .15s;
    }
    .rrw-period-btn.active { border-color: #1a1a2e; background: #1a1a2e; color: #fff; }

    .rrw-optional { color: #aaa; font-weight: 400; font-size: 12px; }
    .rrw-traits { margin-top: 14px; }
    .rrw-trait-grp {
      display: grid;
      grid-template-columns: 96px repeat(3, minmax(92px, 1fr));
      gap: 8px 10px;
      align-items: center;
      max-width: 600px;
      margin: 0 auto 8px;
    }
    .rrw-trait-name { width: auto; font-size: 12px; color: #555; flex-shrink: 0; }
    .rrw-trait-chip {
      min-width: 0;
      font-size: 12px;
      line-height: 1.25;
      min-height: 32px;
      padding: 6px 10px;
      border: 1.5px solid #e2e2e2;
      border-radius: 16px;
      background: #fff;
      color: #666;
      cursor: pointer;
      text-align: center;
      white-space: nowrap;
    }
    .rrw-trait-chip.active { border-color: #1a1a2e; background: #1a1a2e; color: #fff; }
    .rrw-trait-rent {
      grid-column: 2 / 5;
      width: 100%;
      min-height: 36px;
      font-size: 12px;
      padding: 6px 10px;
      border: 1.5px solid #e2e2e2;
      border-radius: 10px;
    }
    .rrw-structure-trait .rrw-trait-chip:nth-of-type(3) { font-size: 12px; letter-spacing: 0; }

    .rrw-form-trait .rrw-trait-chip:nth-of-type(4) { grid-column: 2; }

    .rrw-form-trait .rrw-trait-name { grid-row: 1 / 3; align-self: center; }

    .building-summary-card {
      margin: 14px 0 16px;
      padding: 14px;
      border: 1px solid #ece9e2;
      border-radius: 12px;
      background: #fbfaf6;
    }
    .building-summary-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .building-summary-title {
      font-size: 14px;
      font-weight: 900;
      color: #1a1a2e;
    }
    .building-summary-source {
      font-size: 12px;
      font-weight: 800;
      color: #888;
      white-space: nowrap;
    }
    .building-summary-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
    .building-summary-item {
      min-width: 0;
      padding: 10px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #f0eee8;
    }
    .building-summary-label {
      font-size: 12px;
      color: #999;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .building-summary-value {
      font-size: 14px;
      color: #1a1a2e;
      font-weight: 900;
      line-height: 1.35;
      word-break: keep-all;
    }
    .building-summary-note {
      margin-top: 10px;
      color: #999;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.5;
    }
    .btrait-title { font-size: 12px; font-weight: 900; color: #1a1a2e; margin: 12px 0 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
    .btrait-edit { font-size: 12px; font-weight: 700; color: #93233a; background: #fff; border: 1px solid #e0b8c0; border-radius: 7px; padding: 3px 9px; cursor: pointer; font-family: inherit; flex: none; }
    .btrait-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .btrait { font-size: 13px; background: #fff; border: 1px solid #f0eee8; border-radius: 10px; padding: 9px 10px; color: #444; }
    .btrait b { display: block; font-size: 12px; font-weight: 800; color: #999; margin: 0 0 3px; }
    .btrait-value { color: #1a1a2e; font-weight: 900; line-height: 1.35; word-break: keep-all; }
    .btrait-sub { font-size: 0.82em; font-weight: 700; color: #9a968c; } 
    .btrait-split .btrait-sub { color: #c79356; }
    .btrait-split { border-color: #f0d6a8; background: #fdf6e8; } 
    .btrait-split .btrait-value { color: #b86818; }
    .trait-stars { color: #f0a030; letter-spacing: 0; font-size: 13px; white-space: nowrap; }
    .trait-stars .empty { color: #dedbd2; }
    .trait-score { margin-left: 4px; color: #1a1a2e; font-weight: 900; }
    .btrait-rating {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
      padding: 10px 12px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #eeeae2;
    }
    .btrait-rating-label { font-size: 12px; font-weight: 900; color: #777; }
    .btrait-rating-value { display: inline-flex; align-items: center; gap: 5px; font-weight: 900; color: #1a1a2e; }
    .short-stay-card {
      margin: 0 0 16px;
      padding: 13px 14px;
      border: 1px solid #f1d8d1;
      border-radius: 12px;
      background: #fff8f6;
    }
    .short-stay-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 8px;
    }
    .short-stay-title {
      font-size: 13px;
      font-weight: 900;
      color: #1a1a2e;
    }

    .bld-type-card { background:#f4f7fb; border:1px solid #e2e8f2; border-radius:10px; padding:12px 14px; margin:10px 0; }
    .bld-type-card.sale { background:#f1faf3; border-color:#cdebd6; }
    .bld-type-head { display:flex; align-items:center; gap:8px; margin-bottom:6px; }
    .bld-type-tag { font-size:12px; font-weight:800; color:#2563eb; background:#e6effe; border-radius:6px; padding:2px 8px; }
    .bld-type-tag.sale { color:#16a34a; background:#e3f6e9; }
    .bld-type-form { font-size:12px; color:#666; }
    .bld-type-price { font-size:16px; font-weight:800; color:#1a1a2e; }
    .bld-type-note { font-size:12px; font-weight:400; color:#888; }
    .bld-type-rooms { margin-top:6px; }
    .bld-type-room { display:flex; justify-content:space-between; font-size:12px; padding:3px 0; border-top:1px solid #eef1f6; }
    .bld-type-desc { font-size:12px; color:#999; margin:6px 0 0; }

    .rent-obs:empty { display:none; }

    .rent-obs { display:flex; flex-direction:column; gap:10px; margin:10px 0; }
    .rent-obs-box { background:#fbfaf7; border:1px solid #ece8e0; border-radius:10px; padding:12px 14px; }
    .rent-obs-head { font-size:13px; font-weight:800; color:#1a1a2e; margin-bottom:8px; }
    .rent-obs-note { font-size:11px; font-weight:600; color:#aa9; }
    .rent-obs-row { padding:7px 0; border-top:1px solid #f0ece3; display:flex; align-items:center; gap:10px; }
    .rent-obs-info { flex:1; min-width:0; }
    .rent-obs-row:first-of-type { border-top:none; }
    .rent-obs-row-top { display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
    .rent-obs-deal { font-size:12px; font-weight:800; color:#2563eb; background:#e6effe; border-radius:6px; padding:2px 7px; }
    .rent-obs-deal.sale { color:#16a34a; background:#e3f6e9; }
    .rent-obs-deal.sharehouse { color:#7c5bd6; background:#efe9fb; }
    .rent-obs-deal.monthly { color:#8b5cf6; background:#f1e9ff; }
    .rent-obs-type { font-size:12px; font-weight:700; color:#555; }
    .rent-obs-tag { font-size:11px; font-weight:700; color:#6a4a52; background:#f3e3e7; border-radius:6px; padding:2px 7px; }
    .rent-obs-price { font-size:14px; font-weight:800; color:#1a1a2e; margin-top:3px; }
    .rent-obs-count { font-size:12px; font-weight:600; color:#999; }
    .rent-obs-src { font-size:12px; color:#aaa; margin-top:2px; }
    .rent-obs-units { font-size:12px; color:#7a756c; margin-top:2px; } 

    .rent-obs-photos { flex:none; display:flex; gap:4px; align-items:center; }
    .rent-obs-photo { position:relative; width:46px; height:46px; flex:none; }
    .rent-obs-photo img { width:100%; height:100%; object-fit:cover; border-radius:7px; cursor:pointer; background:#f1eef0; }
    .rent-obs-more { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,0.5); color:#fff; font-size:12px; font-weight:800; border-radius:7px; pointer-events:none; }
    .rent-obs-empty { font-size:12px; color:#aaa; padding:4px 0; }
    .rent-obs-section { margin-top:12px; }
    .rent-obs-section:first-child { margin-top:0; }
    .rent-obs-preserved { color:#826322; background:#f8edcf; }
    .rent-obs-add { margin-top:10px; width:100%; padding:8px; border:1px dashed #d8cfc4; border-radius:9px; background:#fff; color:#93233a; font-size:12px; font-weight:700; font-family:inherit; cursor:pointer; }
    .rent-obs-now { color:#1a8a4a; font-weight:800; }
    .rent-obs-now.done { color:#8a827a; background:#efece6; border-radius:5px; padding:1px 7px; font-weight:800; }
    .rent-obs-row.sold .rent-obs-amt { text-decoration:line-through; text-decoration-color:#c0503a; text-decoration-thickness:2px; color:#a8a29a; }
    .rent-obs-row.sold { opacity:.85; }

    .listing-now-head { display:flex; align-items:baseline; gap:7px; margin-bottom:9px; }
    .listing-now-title { font-size:14px; font-weight:900; color:#1a1a2e; }
    .listing-now-note { font-size:12px; color:#aaa; font-weight:700; }
    .listing-cards { display:grid; gap:8px; }
    .listing-card { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:10px; align-items:center; padding:12px 14px; border:1px solid #e8e3d9; border-radius:8px; background:#fff; }
    .listing-card.sold { opacity:.72; }

    a.listing-card { text-decoration:none; color:inherit; transition:border-color .12s, box-shadow .12s, transform .12s; }
    a.listing-card.clickable:hover { border-color:#2b5089; box-shadow:0 4px 14px rgba(31,61,52,.12); }
    .listing-more { font-size:12px; font-weight:800; color:#2b5089; white-space:nowrap; }
    .listing-main { min-width:0; }
    .listing-top { display:flex; align-items:center; gap:6px; flex-wrap:wrap; margin-bottom:3px; }
    .listing-type { font-size:13px; font-weight:900; color:#1a1a2e; }
    .listing-chip { font-size:12px; font-weight:800; color:#2563eb; background:#e8f0ff; border-radius:7px; padding:2px 7px; }
    .listing-chip.foreign { color:#7c4054; background:#f3e3e7; }
    .listing-chip.move { color:#3f684f; background:#e5f3e9; }
    .listing-price { font-size:19px; font-weight:950; color:#1a1a2e; }
    .listing-price small { font-size:12px; font-weight:700; color:#8f897f; }
    .listing-meta { font-size:12px; color:#8f897f; margin-top:2px; line-height:1.45; }
    .listing-feats { display:flex; gap:4px; flex-wrap:wrap; margin-top:5px; }
    .listing-feat { font-size:12px; color:#6f6a60; background:#f3f0e9; border-radius:6px; padding:2px 6px; }
    .listing-side { display:flex; flex-direction:column; align-items:flex-end; gap:7px; }
    .listing-thumb { width:54px; height:54px; border-radius:8px; object-fit:cover; background:#f1eee8; cursor:zoom-in; }
    .listing-inquire { border:none; border-radius:9px; background:#2b5089; color:#fff; padding:7px 10px; font-size:12px; font-weight:900; font-family:inherit; cursor:pointer; white-space:nowrap; }
    .listing-inquire:disabled { background:#ddd6ca; color:#8f897f; cursor:not-allowed; }
    .listing-contact-box { background:#fff; border-radius:14px; max-width:430px; width:92%; padding:16px; box-sizing:border-box; }
    .listing-contact-head { display:flex; justify-content:space-between; gap:10px; align-items:flex-start; margin-bottom:10px; }
    .listing-contact-kicker { font-size:12px; font-weight:900; color:#8f897f; margin-bottom:2px; }
    .listing-contact-title { font-size:16px; font-weight:950; color:#1a1a2e; }
    .listing-contact-sub { font-size:12px; color:#777; line-height:1.55; margin:2px 0 12px; }
    .listing-contact-summary { border:1px solid #eee8dd; border-radius:10px; background:#faf8f3; padding:10px 11px; margin-bottom:10px; }
    .listing-contact-price { font-size:19px; font-weight:950; color:#1a1a2e; }
    .listing-contact-meta { font-size:12px; color:#8f897f; margin-top:2px; line-height:1.45; }
    .listing-contact-actions { display:grid; gap:8px; }

    .listing-intro-edit { margin:10px 0 0; background:none; border:none; padding:0; font:inherit; font-size:12px; font-weight:800; color:#8a857a; cursor:pointer; }
    .listing-intro-edit:hover { color:#e85d4a; }
    .listing-contact-btn { display:flex; align-items:center; justify-content:center; gap:7px; border-radius:11px; padding:12px 14px; font-size:14px; font-weight:950; text-decoration:none; font-family:inherit; cursor:pointer; }
    .listing-contact-btn.primary { border:none; background:#06c755; color:#fff; }
    .listing-contact-btn.primary.kakao { background:#fee500; color:#3a1d1d; }
    .listing-contact-btn.primary.relay { background:#e85d4a; color:#fff; border:none; }
    .listing-contact-btn.primary.email,
    .listing-contact-btn.primary.tel { background:#1a1a2e; color:#fff; }
    .listing-contact-btn.shop { border:1.5px solid #cfdcee; background:#fff; color:#35629e; }
    .listing-contact-btn.disabled { background:#f1eee8; color:#9a9488; border:none; cursor:default; }

    .myobs-box { background:#fff; border-radius:14px; max-width:480px; width:92%; max-height:84vh; display:flex; flex-direction:column; overflow:hidden; }
    .myobs-head { display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid #f0ede6; }
    .myobs-head h3 { margin:0; font-size:16px; font-weight:800; color:#1a1a2e; }
    .myobs-sub { font-size:12px; color:#777; line-height:1.5; padding:10px 16px 4px; }
    .myobs-list { padding:8px 12px 14px; overflow-y:auto; }
    .myobs-row { display:flex; align-items:center; gap:10px; padding:10px 4px; border-top:1px solid #f3efe8; }
    .myobs-row:first-child { border-top:none; }
    .myobs-row.down { opacity:0.6; }
    .myobs-info { flex:1; min-width:0; }
    .myobs-title { font-size:13px; color:#1a1a2e; display:flex; align-items:center; gap:5px; flex-wrap:wrap; }
    .myobs-meta { font-size:12px; color:#aaa; margin-top:3px; }
    .myobs-unit { font-size:12px; font-weight:700; color:#6a655c; background:#f1ede4; padding:1px 6px; border-radius:6px; } 
    .myobs-ph { font-size:12px; color:#888; }
    .myobs-now-tag { font-size:11px; font-weight:800; color:#1a8a4a; background:#e3f5ea; border-radius:6px; padding:1px 6px; }
    .myobs-down-tag { font-size:11px; font-weight:800; color:#999; background:#eee; border-radius:6px; padding:1px 6px; }
    .myobs-exp-tag { font-size:11px; font-weight:800; color:#b8541a; background:#fbe9dc; border-radius:6px; padding:1px 6px; } 
    .myobs-soon-tag { font-size:11px; font-weight:800; color:#a07a00; background:#fbf3d6; border-radius:6px; padding:1px 6px; } 
    .myobs-actions { display:flex; flex-direction:column; gap:4px; flex:none; }
    .myobs-btn { font-size:12px; font-weight:700; font-family:inherit; border-radius:7px; padding:5px 9px; cursor:pointer; white-space:nowrap; border:1px solid #ddd; background:#fff; color:#555; }
    .myobs-btn.down { color:#b8860b; border-color:#e6cf9a; }
    .myobs-btn.restore { color:#1a8a4a; border-color:#aedcc0; }
    .myobs-btn.del { color:#c0392b; border-color:#e7b3ab; }

    .obs-photos { display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; }
    .obs-photo { position:relative; width:56px; height:56px; border-radius:8px; overflow:hidden; }
    .obs-photo img { width:100%; height:100%; object-fit:cover; display:block; }
    .obs-photo-x { position:absolute; top:1px; right:1px; width:16px; height:16px; border-radius:50%; border:none; background:rgba(0,0,0,0.55); color:#fff; font-size:11px; line-height:16px; text-align:center; cursor:pointer; padding:0; }
    .obs-photo-add { display:inline-flex; align-items:center; gap:6px; padding:8px 12px; margin-top:8px; border:1px dashed #c9b3b9; border-radius:9px; background:#fff; color:#93233a; font-size:12px; font-weight:700; cursor:pointer; }
    .obs-src-note { font-size:12px; color:#888; background:#f7f5f0; border-radius:8px; padding:8px 10px; margin-top:8px; }

    .obsadd-bld { font-size:13px; font-weight:700; color:#93233a; margin-left:6px; }
    .obs-fieldrow { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
    .obs-fieldrow > div { min-width:0; }
    .official-edit-body .obs-check { display:flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:#333; margin-top:22px; white-space:nowrap; }
    .official-edit-body .obs-check input { width:auto; }
    .obs-feats { display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; }
    .obsfeat { font-size:12px; font-weight:700; color:#8a8178; background:#f4f1ea; border:1px solid #e6ded0; border-radius:8px; padding:5px 10px; cursor:pointer; user-select:none; }
    .obsfeat.on { color:#fff; background:#4577b0; border-color:#4577b0; }
    .obs-mininote { font-size:12px; color:#a29c8f; line-height:1.5; margin-top:4px; }

    .org-shop-links { display:flex; flex-direction:column; gap:8px; margin:12px 0 4px; }
    .org-shop-btn { display:flex; align-items:center; justify-content:center; gap:8px; font-size:16px; font-weight:900; border-radius:13px; padding:16px 18px; text-decoration:none; cursor:pointer; font-family:inherit; }
    .org-shop-btn.kakao { background:#fee500; color:#3a1d1d; }
    .org-shop-btn.line { background:#06c755; color:#fff; }
    .org-shop-btn.email { background:#1a1a2e; color:#fff; }
    .org-shop-btn.tel { background:#1a1a2e; color:#fff; }
    .org-shop-btn.shop { background:#fff; color:#35629e; border:1.5px solid #cfdcee; font-size:14px; font-weight:800; padding:11px 16px; }

    .name-edit-btn { font-size:12px; padding:1px 6px; margin-left:6px; border:1px solid #d8d8d0; border-radius:6px; background:#fff; color:#888; cursor:pointer; vertical-align:middle; }
    .name-edit-btn:hover { background:#f3f3ee; }
    .short-stay-badge {
      flex: 0 0 auto;
      padding: 4px 8px;
      border-radius: 999px;
      background: #ffe9e4;
      color: #e85d4a;
      font-size: 12px;
      font-weight: 900;
    }
    .short-stay-desc {
      margin: 0 0 10px;
      color: #666;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.55;
    }
    .short-stay-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }
    .short-stay-note {           
      margin: 0;
      color: #b0867d;
      font-size: 11px;
      font-weight: 700;
      line-height: 1.5;
    }
    .brand-card {                
      background: #f4f7fb;
      border: 1px solid #e3e9f2;
      border-radius: 14px;
      padding: 12px 14px;
      margin-bottom: 10px;
    }
    .brand-card-head {
      font-size: 13px;
      font-weight: 900;
      color: #33415c;
      margin-bottom: 5px;
    }
    .brand-card-desc {
      margin: 0;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.6;
      color: #5a6577;
    }
    .brand-card-link {       
      display: inline-block;
      margin-top: 9px;
      font-size: 12px;
      font-weight: 800;
      color: #2f5fa6;
      text-decoration: none;
    }

    .brand-card-ja { display: inline; margin-left: 6px; font-style: normal;
      font-size: 11.5px; font-weight: 600; color: #a89f90; }
    .brand-card-map { appearance: none; background: none; border: 0; padding: 0;
      cursor: pointer; font-family: inherit; margin-right: 14px; }
    .brand-card-map:hover { text-decoration: underline; }
    .short-stay-chip {
      padding: 5px 8px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #f1d8d1;
      color: #555;
      font-size: 12px;
      font-weight: 900;
    }
    .short-stay-chip.positive {
      border-color: #d9eedc;
      background: #effaf0;
      color: #2c7a4b;
    }
    .short-stay-action {
      width: 100%;
      border: none;
      border-radius: 10px;
      background: #e85d4a;
      color: #fff;
      padding: 10px 12px;
      font-size: 13px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
    }
    .rrw-select, .rrw-input {
      width: 100%;
      border: 1.5px solid #e0e0da;
      border-radius: 10px;
      padding: 9px 12px;
      font-size: 13px;
      font-family: inherit;
      outline: none;
      background: #fff;
      box-sizing: border-box;
    }
    .rrw-select:focus, .rrw-input:focus { border-color: #e85d4a; }
    .rrw-textarea {
      width: 100%;
      border: 1.5px solid #e0e0da;
      border-radius: 10px;
      padding: 9px 12px;
      font-size: 13px;
      font-family: inherit;
      outline: none;
      resize: none;
      box-sizing: border-box;
      line-height: 1.5;
    }
    .rrw-textarea:focus { border-color: #e85d4a; }
    .rrw-photo-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
    .rrw-photo-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 6px 12px;
      border-radius: 8px;
      background: #f5f5f0;
      border: none;
      font-size: 12px;
      font-weight: 600;
      color: #555;
      cursor: pointer;
      font-family: inherit;
    }
    .rrw-photo-preview { display: flex; gap: 6px; flex-wrap: wrap; }
    .rrw-photo-thumb {
      width: 56px; height: 56px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #e0e0da;
    }
    .rrw-nav { display: flex; justify-content: space-between; gap: 8px; margin-top: 18px; }
    .rrw-nav-back {
      padding: 10px 18px;
      border-radius: 10px;
      border: 1.5px solid #e0e0da;
      background: #fff;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      color: #555;
    }
    .rrw-nav-next {
      flex: 1;
      padding: 11px;
      border-radius: 10px;
      border: none;
      background: #e85d4a;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      font-family: inherit;
    }
    .rrw-nav-next:disabled { background: #ccc; cursor: default; }

    .mobile-tabbar { display: none; }
    @media (max-width: 760px) {

      .mobile-tabbar {
        display: flex;
        position: fixed;
        left: 10px; right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom, 0));
        height: 56px;
        background: rgba(255,255,255,0.74);
        -webkit-backdrop-filter: saturate(180%) blur(16px);
        backdrop-filter: saturate(180%) blur(16px);
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 26px;
        box-shadow: 0 8px 28px rgba(0,0,0,0.16);
        z-index: 1200;
        padding: 0 4px;
      }
      .mtab {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border: none;
        background: none;
        cursor: pointer;
        font-family: inherit;
        color: #aaa;
        padding: 6px 0 4px;
        border-radius: 18px;
      }
      .mtab svg { width: 24px; height: 24px; }

      .mtab span:not(.mtab-badge) { font-size: 12px; font-weight: 700;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; } 
      .mtab.active { color: #1a1a2e; }
      .mtab.active svg { stroke: #e85d4a; }

      .main { padding-bottom: 76px; }
    }

    .mobile-sheet {
      display: none;
      position: fixed;
      inset: 0;
      bottom: 0;
      background: #fafaf7;
      z-index: 3500; 
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      touch-action: manipulation; 
    }
    .mobile-sheet.open { display: block; }
    .msheet-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      background: #fff;
      border-bottom: 0.5px solid #eee;
    }
    .msheet-head h2 { font-size: 19px; font-weight: 900; margin: 0; color: #1a1a2e; }
    .msheet-body { padding: 16px; }
    .msheet-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: #fff;
      border: 0.5px solid #eee;
      border-radius: 12px;
      padding: 14px 16px;
      margin-bottom: 8px;
      font-size: 14px;
      font-weight: 700;
      color: #1a1a2e;
      font-family: inherit;
      cursor: pointer;
      text-align: left;
    }
    .msheet-row span { font-size: 12px; color: #999; font-weight: 500; }
    .msheet-section-label { font-size: 12px; font-weight: 800; color: #999; letter-spacing: 0.04em; margin: 14px 2px 8px; }

    .msheet-acc-head { display: flex; align-items: center; justify-content: space-between; width: 100%; background: #fff; border: 0.5px solid #eee; border-radius: 12px; padding: 14px 16px; margin-bottom: 8px; font-size: 14px; font-weight: 700; color: #1a1a2e; font-family: inherit; cursor: pointer; text-align: left; }
    .msheet-acc-meta { display: flex; align-items: center; gap: 8px; }
    .msheet-acc-count { font-size: 12px; font-weight: 700; color: #999; min-width: 16px; text-align: center; }
    .msheet-acc-arrow { display: inline-block; font-size: 12px; color: #bbb; transition: transform 0.18s; }
    .msheet-acc-head.open .msheet-acc-arrow { transform: rotate(180deg); }
    .msheet-acc-body { margin: -2px 0 8px; }
    .msheet-acc-body.collapsed { display: none; }
    .msheet-empty { color: #aaa; font-size: 13px; padding: 24px; text-align: center; line-height: 1.6; }
    .fav-bld-row { display: flex; align-items: stretch; gap: 8px; margin-bottom: 8px; }
    .fav-bld-main { flex: 1; min-width: 0; text-align: left; background: #fff; border: 0.5px solid #eee; border-radius: 12px; padding: 12px 14px; cursor: pointer; font-family: inherit; }
    .fav-bld-name { font-size: 14px; font-weight: 700; color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .fav-bld-addr { font-size: 12px; color: #999; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .fav-bld-home { flex: 0 0 auto; border: 0.5px solid #e85d4a; background: #fff; color: #e85d4a; border-radius: 12px; padding: 0 12px; font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer; white-space: nowrap; }
    .fav-bld-home.on { background: #e85d4a; color: #fff; }
    .my-act-row { display: block; width: 100%; text-align: left; background: #fff; border: 0.5px solid #eee; border-radius: 12px; padding: 11px 14px; margin-bottom: 8px; cursor: pointer; font-family: inherit; }
    .my-act-text { font-size: 13px; color: #1a1a2e; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .my-act-date { font-size: 12px; color: #aaa; margin-top: 3px; }
    #bsubModal {
      display: none;
      position: fixed; inset: 0;
      z-index: 9000;
      background: rgba(0,0,0,.45);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    #bsubModal.open { display: flex; }
    .bsub-box {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 420px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 24px 20px 20px;
    }
    .bsub-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
    .bsub-title { font-size: 16px; font-weight: 800; color: #1a1a2e; }
    .bsub-sub { font-size: 12px; color: #888; margin-top: 3px; }
    .bsub-label { font-size: 12px; font-weight: 700; color: #333; margin: 14px 0 5px; }
    .bsub-input {
      width: 100%; border: 1.5px solid #e0e0da;
      border-radius: 10px; padding: 9px 12px;
      font-size: 13px; font-family: inherit;
      outline: none; box-sizing: border-box;
    }
    .bsub-input:focus { border-color: #e85d4a; }

    .ac-overlay { position: fixed; inset: 0; z-index: 9600; background: rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; padding: 24px; }
    .ac-box { background: #fff; border-radius: 16px; width: 100%; max-width: 380px; padding: 22px 22px 18px; box-shadow: 0 12px 40px rgba(0,0,0,.28); font-family: inherit; }
    .ac-title { font-size: 16px; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
    .ac-body { font-size: 14px; color: #555; line-height: 1.65; }
    .ac-hl { margin: 11px 0 4px; padding: 11px 13px; background: #f6f6f1; border-radius: 10px; font-weight: 700; color: #1a1a2e; font-size: 13px; word-break: break-all; line-height: 1.45; }
    .ac-addr { margin: 0 0 4px; padding: 0 2px; font-size: 12px; color: #777; word-break: break-all; line-height: 1.45; } 
    .ac-note { margin-top: 10px; font-size: 12px; color: #e85d4a; font-weight: 700; }
    .ac-sub { margin-top: 7px; font-size: 12px; color: #999; line-height: 1.5; } 
    .ac-actions { display: flex; gap: 8px; margin-top: 18px; }
    .ac-actions button { flex: 1; padding: 12px; border-radius: 12px; font-size: 14px; font-weight: 800; font-family: inherit; cursor: pointer; border: none; }
    .ac-cancel { background: #f0f0ea; color: #555; }
    .ac-cancel:hover { background: #e6e6df; }
    .ac-ok { background: #e85d4a; color: #fff; }
    .ac-ok:hover { background: #d44f3d; }
    .bsub-addr-row { display: flex; gap: 8px; }
    .bsub-addr-row .bsub-input { flex: 1; }
    .bsub-geo-btn {
      white-space: nowrap; border: 1.5px solid #e85d4a; border-radius: 10px;
      padding: 9px 12px; font-size: 12px; font-weight: 700; color: #e85d4a;
      background: #fff; cursor: pointer; font-family: inherit;
    }
    .bsub-geo-result { font-size: 12px; color: #666; margin-top: 5px; min-height: 16px; }
    .bsub-geo-result.ok { color: #4aad6e; }
    .bsub-geo-result.err { color: #e85d4a; }
    .bsub-select {
      width: 100%; border: 1.5px solid #e0e0da; border-radius: 10px;
      padding: 9px 12px; font-size: 13px; font-family: inherit;
      outline: none; background: #fff; box-sizing: border-box;
    }
    .bsub-photo-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:4px; }
    .bsub-photo-btn { cursor:pointer; font-size:12px; padding:6px 12px; border:1.5px dashed #ddd; border-radius:8px; color:#888; user-select:none; }
    .bsub-photo-preview { display:flex; gap:6px; flex-wrap:wrap; }
    .bsub-photo-thumb { position:relative; width:56px; height:56px; border-radius:6px; overflow:hidden; background:#f0f0f0; }
    .bsub-photo-thumb img { width:100%; height:100%; object-fit:cover; }
    .bsub-photo-thumb-remove { position:absolute; top:2px; right:2px; background:rgba(0,0,0,.55); color:#fff; border:none; border-radius:50%; width:18px; height:18px; font-size:11px; cursor:pointer; padding:0; line-height:18px; text-align:center; }

    .bsub-geo-btn { margin-top: 10px; width: 100%; padding: 10px; border: 1.5px solid #e85d4a; background: #fff; color: #e85d4a; border-radius: 10px; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; }
    .bsub-geo-btn:hover { background: #fff5f3; }
    .bsub-map-wrap { margin-top: 10px; }
    .bsub-map { width: 100%; height: 200px; border-radius: 10px; overflow: hidden; background: #eee; }
    .bsub-map-hint { font-size: 12px; color: #888; margin-top: 6px; text-align: center; }
    .pin-edit-btn { color: #2563eb !important; border-color: #cdddfb; background: #f3f7ff !important; } 
    .bsub-actions { display: flex; gap: 8px; margin-top: 20px; }
    .bsub-submit {
      flex: 1; background: #e85d4a; color: #fff; border: none;
      border-radius: 10px; padding: 11px; font-size: 14px;
      font-weight: 800; cursor: pointer; font-family: inherit;
    }
    .bsub-cancel {
      background: #f5f5f0; color: #666; border: none;
      border-radius: 10px; padding: 11px 16px; font-size: 13px;
      cursor: pointer; font-family: inherit;
    }

    .bsub-review-section { margin-top: 2px; }
    .bsub-stars { display:flex; gap:2px; margin-bottom:8px; }
    .bsub-star { background:none; border:none; font-size:24px; color:#ddd; cursor:pointer; padding:2px 3px; line-height:1; transition:color .1s; }
    .bsub-star.active { color:#f5a623; }
    .bsub-period-row { display:flex; gap:6px; margin-bottom:8px; flex-wrap:wrap; }
    .bsub-period-btn { padding:5px 11px; border:1.5px solid #ddd; border-radius:20px; background:#fff; font-size:12px; cursor:pointer; font-family:inherit; color:#555; }
    .bsub-period-btn.active { border-color:#e85d4a; background:#e85d4a; color:#fff; }
    .bsub-review-textarea { width:100%; box-sizing:border-box; border:1.5px solid #e5e7eb; border-radius:8px; padding:8px 10px; font-size:13px; font-family:inherit; resize:vertical; outline:none; }
    .bsub-review-textarea:focus { border-color:#e85d4a; }

    .admin-bld-card { border: 1.5px solid #e0e0da; border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; }

    .cover-photos { margin: 10px 0; }
    .cover-photos.empty { margin: 8px 0; }

    .cover-carousel { position: relative; width: 100%; border-radius: 12px; overflow: hidden; background: #f0f0ea; }
    .cover-main { display: block; width: 100%; border: 0; padding: 0; margin: 0; background: none; cursor: zoom-in; }

    .cover-main-img { display: block; width: 100%; aspect-ratio: 16/9; height: auto; object-fit: cover; }
    .cover-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(0,0,0,0.42); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; }
    .cover-nav:hover { background: rgba(0,0,0,0.6); }
    .cover-nav.prev { left: 8px; }
    .cover-nav.next { right: 8px; }
    .cover-count { position: absolute; right: 10px; bottom: 10px; background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; font-weight: 800; padding: 3px 9px; border-radius: 11px; }
    .cover-manage-btn { margin-top: 6px; font-size: 12px; color: #1a1a2e; background: #f1f0ea; border: none; border-radius: 8px; padding: 6px 12px; font-weight: 700; cursor: pointer; }
    .cover-mgr-box { background: #fff; border-radius: 14px; max-width: 460px; width: 92%; max-height: 86vh; overflow-y: auto; padding: 16px 18px; }
    .cover-mgr-head { display: flex; align-items: center; justify-content: space-between; }
    .cover-mgr-head h3 { font-size: 16px; margin: 0; }
    .cover-mgr-sub { font-size: 12px; color: #777; margin: 6px 0 10px; line-height: 1.5; }

    .cover-mgr-upload { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; box-sizing: border-box; padding: 10px; margin-bottom: 12px; border: 1px dashed #c9b3b9; border-radius: 10px; background: #fff; color: #93233a; font-size: 13px; font-weight: 700; cursor: pointer; }
    .cover-mgr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

    .myorg-box { background:#fff; border-radius:14px; max-width:460px; width:92%; max-height:84vh; display:flex; flex-direction:column; overflow:hidden; }
    .myorg-head { display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid #f0ede6; flex:0 0 auto; }
    .myorg-head h3 { margin:0; font-size:16px; font-weight:800; color:#1a1a2e; }
    .myorg-add { margin:12px 16px 0; padding:11px; border:1px dashed #c9b3b9; border-radius:10px; background:#fff; color:#93233a; font-size:13px; font-weight:800; font-family:inherit; cursor:pointer; }

    .shopset-box #shopSetBody { padding:14px 16px 18px; overflow-y:auto; }
    .shopset-org { margin:12px 16px 0; padding:9px 10px; border:1px solid #e0dccf; border-radius:9px; font-size:13px; font-weight:700; font-family:inherit; color:#1a1a2e; background:#fff; width:calc(100% - 32px); }
    .shopset-hint { font-size:13px; color:#6f6a5e; line-height:1.6; background:#faf8f3; border:1px solid #efe9dd; border-radius:10px; padding:10px 12px; margin:0 0 14px; }
    .shopset-hint code { background:#efe9dd; border-radius:4px; padding:1px 5px; font-size:12px; }
    .shopset-l { display:block; font-size:13px; font-weight:800; color:#3a3a44; margin:12px 0 5px; }
    .shopset-sub { font-weight:600; color:#a29c8f; font-size:12px; }
    .shopset-box input[type=text], .shopset-box input[type=url], .shopset-box textarea { width:100%; box-sizing:border-box; border:1px solid #ddd7c9; border-radius:9px; padding:9px 11px; font-size:14px; font-family:inherit; color:#1a1a2e; background:#fff; }
    .shopset-box textarea { resize:vertical; line-height:1.5; }
    .shopset-keyrow { display:flex; align-items:center; border:1px solid #ddd7c9; border-radius:9px; overflow:hidden; }
    .shopset-keyrow span { flex:0 0 auto; font-size:13px; color:#8a857a; background:#f4f1ea; padding: 9px 11px; white-space:nowrap; }
    .shopset-keyrow input { border:none !important; border-radius:0 !important; padding-left:6px !important; }
    .shopset-actions { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:18px; }
    .shopset-preview { font-size:13px; font-weight:800; color:#c4452f; text-decoration:none; }
    .shopset-preview.off { color:#b5b0a3; font-weight:600; }
    .shopset-save { background:#2b5089; color:#fff; border:none; border-radius:10px; padding:11px 26px; font-size:14px; font-weight:800; font-family:inherit; cursor:pointer; }
    .shopset-save:disabled { opacity:.6; }

    .opseed-box { background:#fff; border-radius:14px; max-width:560px; width:94%; max-height:88vh; display:flex; flex-direction:column; overflow:hidden; }
    .opseed-box .official-edit-head { padding:14px 16px; border-bottom:1px solid #f0ede6; }
    .opseed-body { padding:14px 16px; overflow-y:auto; }

    .opseed-body .seed-actions { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin:12px 0; }
    .opseed-body .seed-actions .admin-org-btn { width:100%; box-sizing:border-box; padding:11px 8px; white-space:nowrap; text-align:center; }
    .opseed-intro-label { display:block; font-size:13px; font-weight:800; color:#444; margin:12px 0 5px; }
    .opseed-intro-label span { font-weight:500; color:#999; font-size:12px; }
    .opseed-body .opseed-intro { min-height:64px; }
    .myorg-list { padding:8px; overflow-y:auto; }
    .myorg-label { font-size:12px; font-weight:800; color:#999; padding:8px 6px 4px; }
    .myorg-row { display:flex; align-items:center; gap:10px; width:100%; text-align:left; background:#fff; border:none; border-radius:10px; padding:8px; cursor:pointer; font-family:inherit; }
    .myorg-row:hover { background:#faf8f3; }
    .myorg-thumb { width:52px; height:52px; border-radius:8px; object-fit:cover; flex:none; background:#f1eef0; }
    .myorg-thumb.empty { display:flex; align-items:center; justify-content:center; font-size:20px; color:#cbb4ba; }
    .myorg-info { flex:1; min-width:0; }
    .myorg-name { font-size:14px; font-weight:700; color:#1a1a2e; }
    .myorg-tag { font-size:11px; font-weight:800; border-radius:6px; padding:1px 6px; vertical-align:middle; }
    .myorg-dday { font-size:11px; font-weight:800; border-radius:6px; padding:1px 6px; margin-left:4px; vertical-align:middle; color:#3a7a52; background:#e3f5ea; } 
    .myorg-dday.soon { color:#a07a00; background:#fbf3d6; }
    .myorg-dday.urgent { color:#c4452f; background:#fdeae6; }
    .myorg-dday.expired { color:#b8541a; background:#fbe9dc; }
    .myorg-tag.own { color:#16a34a; background:#e3f6e9; }
    .myorg-tag.ref { color:#e85d4a; background:#fdeae6; }
    .myorg-addr { font-size:12px; color:#999; margin-top:2px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
    .myorg-addr-pending { color:#bbb; font-style:italic; } 
    .myorg-go { color:#ccc; font-size:19px; flex:none; }
    .cover-pick { position: relative; aspect-ratio: 4/3; border: 2px solid transparent; padding: 0; border-radius: 10px; overflow: hidden; cursor: pointer; background: #eee; }
    .cover-pick img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .cover-pick.picked { border-color: #b83048; }
    .cover-pick-check { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,0.35); color: transparent; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
    .cover-pick.picked .cover-pick-check { background: #b83048; color: #fff; }

    .cover-pick.first .cover-pick-check { width: auto; padding: 0 7px; border-radius: 11px; font-size: 11px; }

    .cover-pick-make {
      position: absolute; left: 4px; top: 4px; padding: 3px 8px; border-radius: 999px;
      background: rgba(0,0,0,0.62); color: #fff; font-size: 11px; font-weight: 700;
      line-height: 1.5; cursor: pointer; user-select: none;
    }
    .cover-pick-make:hover { background: #b83048; }

    .cover-pick-src {
      position: absolute; left: 4px; bottom: 4px;
      max-width: calc(100% - 8px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
      background: rgba(0,0,0,.62); color: #fff; border-radius: 6px;
      padding: 2px 6px; font-size: 10px; font-weight: 800; letter-spacing: -.2px;
    }
    .cover-mgr-actions { display: flex; gap: 8px; margin-top: 14px; }
    .cover-mgr-actions .official-cta { margin-top: 0; }

    .official-card { background: #fff; border: 1px solid #e7ebf0; border-radius: 14px; padding: 14px 16px; margin: 12px 0; }
    .official-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
    .official-badge { font-size: 12px; font-weight: 700; color: #8a8f9a; background: #f2f4f7; padding: 4px 10px; border-radius: 20px; }
    .official-badge .ico { width: 1em; height: 1em; vertical-align: -.14em; margin-right: 2px; }
    .official-badge-share { font-size: 12px; font-weight: 800; color: #2f6b4f; background: #e7f3ec; }
    .listing-now-title .ico { width: 1em; height: 1em; vertical-align: -.13em; margin-right: 3px; color: #3a56d4; }
    .official-edit-btn { font-size: 12px; color: #5a6472; background: none; border: 1px solid #dfe3ea; border-radius: 8px; padding: 4px 12px; cursor: pointer; font-family: inherit; }
    .official-brandrow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
    .official-brand { font-size: 16px; font-weight: 800; color: #1a1a2e; }
    .official-brand:empty { display: none; }
    .official-metapills { display: inline-flex; gap: 5px; }
    .official-pill { font-size: 12px; font-weight: 700; color: #5a6472; background: #f2f4f7; border-radius: 999px; padding: 3px 10px; }
    .official-price { font-size: 22px; font-weight: 900; color: #1a1a2e; margin: 2px 0; }

    .official-price-note { display: block; font-size: 12px; font-weight: 600; color: #9aa0ae;
      line-height: 1.45; margin-top: 2px; }

    .official-cost-note { font-size: 11.5px; font-weight: 500; color: #a6acb8;
      line-height: 1.5; margin: 3px 0 0; }
    .official-line { font-size: 13px; color: #5a6472; margin-top: 3px; }

    .vac-badge {
      display: inline-block; vertical-align: 4px; margin-left: 8px;
      font-size: 12px; font-weight: 800; color: #1f7a4d;
      background: #e8f6ee; border: 1px solid #bfe6cf; border-radius: 999px; padding: 3px 9px;
      white-space: nowrap;
    }
    .vac-full {
      display: flex; flex-direction: column; gap: 1px;
      font-size: 12px; font-weight: 700; color: #8a8f9a;
      margin: 10px 0 -2px;
    }
    .vac-full-sub { font-size: 12px; font-weight: 500; color: #a8adb8; }

    .official-desc { font-size: 12px; line-height: 1.5; color: #3d4350; margin: 10px 0 0; white-space: pre-wrap; }
    .official-rooms { display: grid; gap: 4px; margin-top: 8px; }
    .official-room { display: flex; justify-content: space-between; font-size: 12px; background: #fff; border-radius: 8px; padding: 5px 9px; }
    .official-room-type { font-weight: 700; color: #1a1a2e; }
    .official-room-price { color: #b83048; font-weight: 700; }

    .of-rooms { display: grid; gap: 6px; margin-top: 8px; }
    .of-room { display: flex; gap: 9px; align-items: center; background: #f7f8fa; border-radius: 10px; padding: 6px; }
    .of-room-thumb { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex: none; background: #eceff3; }
    .of-room-thumb.empty { display: flex; align-items: center; justify-content: center; font-size: 18px; color: #b8bfcb; }

    .of-room.clickable { cursor: pointer; transition: background .12s, box-shadow .12s; }
    .of-room.clickable:hover { background: #eef1f6; box-shadow: 0 3px 10px rgba(31,61,52,.1); }
    .of-room-more { margin-left: auto; align-self: center; font-size: 12px; font-weight: 800; color: #2b5089; white-space: nowrap; padding-right: 4px; }
    .of-room-more:empty { display: none; }
    .of-room-info { flex: 1; min-width: 0; }
    .of-room-top { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
    .of-room-no { font-weight: 800; color: #1a1a2e; font-size: 13px; }
    .of-room-type { font-size: 12px; color: #555; }
    .of-room-vacant { font-size: 11px; font-weight: 800; color: #1a8a4a; background: #e3f5ea; border-radius: 20px; padding: 2px 7px; }
    .of-room-occupied { font-size: 11px; font-weight: 700; color: #999; background: #f0f0f0; border-radius: 20px; padding: 2px 7px; }

    .of-room-unverified { font-size: 11px; font-weight: 700; color: #7a8494; background: #eef1f5; border-radius: 20px; padding: 2px 7px; }

    .of-room-price { color: #1a1a2e; font-weight: 800; font-size: 13px; margin-left: auto; padding-left: 8px; }
    @media (max-width: 420px) { .of-room-price { margin-left: 0; padding-left: 0; } }

    .of-rooms.no-thumb .of-room { padding: 8px 10px; }

    .of-room.occupied .of-room-no,
    .of-room.occupied .of-room-type,
    .of-room.occupied .of-room-price { text-decoration: line-through; text-decoration-color: #b0392a; text-decoration-thickness: 2px; color: #a8a29a; }
    .of-room.occupied .of-room-thumb { filter: grayscale(1); opacity: .6; }
    .of-room-sub { font-size: 12px; color: #999; }

    .of-room-edit { border: 1px solid #eadfe2; border-radius: 10px; padding: 10px; margin-top: 8px; background: #fcfafb; }
    .of-room-edit-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .of-room-edit-title { font-size: 12px; font-weight: 800; color: #93233a; }
    .of-room-del { font-size: 12px; color: #b83048; background: none; border: 1px solid #e0b8c0; border-radius: 7px; padding: 2px 8px; cursor: pointer; font-family: inherit; }
    .of-room-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .of-room-grid input, .of-room-grid select, .of-room-grid textarea { padding: 7px 8px; border: 1px solid #ddd; border-radius: 7px; font-size: 12px; font-family: inherit; box-sizing: border-box; width: 100%; }
    .of-room-grid textarea { grid-column: 1 / -1; min-height: 64px; resize: vertical; line-height: 1.5; }
    .of-room-photos { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
    .of-room-photo { position: relative; width: 56px; height: 56px; border-radius: 8px; overflow: hidden; }
    .of-room-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .of-room-photo.cover { outline: 2px solid #b83048; outline-offset: -2px; }
    .of-room-photo-x { position: absolute; top: 1px; right: 1px; width: 16px; height: 16px; border-radius: 50%; border: none; background: rgba(0,0,0,0.55); color: #fff; font-size: 11px; line-height: 16px; cursor: pointer; padding: 0; text-align: center; }
    .of-room-cover-tag { position: absolute; bottom: 0; left: 0; right: 0; font-size: 11px; text-align: center; background: #b83048; color: #fff; font-weight: 800; cursor: pointer; }
    .of-room-photo:not(.cover) .of-room-cover-tag { background: rgba(0,0,0,0.45); }
    .of-room-photo-add { width: 56px; height: 56px; border: 1px dashed #c9b3b9; border-radius: 8px; background: #fff; color: #b83048; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex: none; }
    .of-room-vacant-toggle { grid-column: 1 / -1; display: flex; align-items: center; gap: 6px; font-size: 12px; margin-top: 2px; color: #333; white-space: nowrap; }
    .of-room-vacant-toggle input[type=checkbox] { width: auto; flex: none; margin: 0; }
    .of-room-add-btn { width: 100%; margin-top: 8px; padding: 9px; border: 1px dashed #c9b3b9; border-radius: 9px; background: #fff; color: #93233a; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; }

    .share-spec { margin-top: 10px; }
    .share-row { display: grid; grid-template-columns: 62px 1fr; gap: 10px; align-items: baseline; padding: 7px 0; border-top: 1px solid #f0f2f5; }
    .share-row:first-child { border-top: 0; padding-top: 0; }
    .share-k { font-size: 12px; color: #8a92a0; line-height: 1.45; }
    .share-v { font-size: 13px; color: #2c3340; line-height: 1.5; }

    .share-video { font-size: 13px; font-weight: 700; color: #2b5089; text-decoration: none; }
    .share-video:hover { text-decoration: underline; }
    .share-off { color: #a6adb9; }  
    .share-limit { display: flex; gap: 7px; align-items: flex-start; margin-top: 10px; padding: 9px 11px; border-radius: 9px; background: #fff3e0; color: #e65100; font-size: 12px; line-height: 1.45; }
    .share-limit .ico { width: 15px; height: 15px; flex: none; margin-top: 1px; }
    @media (max-width: 420px) { 
      .share-row { grid-template-columns: 1fr; gap: 2px; }
    }

    .init-cost { margin-top: 12px; padding: 12px 14px; border-radius: 11px; background: #f5f5f0; border: 1px solid #ece9e0; }
    .init-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 7px; }
    .init-head b { font-size: 13px; color: #2c3340; }
    .init-src { font-size: 12px; color: #86929a; }

    .init-note { margin-top: 8px; font-size: 12px; line-height: 1.65; color: #6b6459; }

    .init-rows { display: flex; flex-wrap: wrap; gap: 3px 16px; }
    .init-row { display: inline-flex; align-items: baseline; gap: 6px; padding: 2px 0; }
    .init-k { font-size: 12px; color: #6a7580; }
    .init-v { font-size: 13px; color: #2c3340; font-weight: 600; }
    .init-free { color: #2e8b57; font-weight: 700; }
    @media (max-width: 420px) { .init-rows { gap: 3px 12px; } }
    .official-feats { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f2f5; }
    .official-feat { font-size: 12px; color: #5a6472; background: #f2f4f7; border-radius: 7px; padding: 4px 9px; }
    .official-cta { width: 100%; margin-top: 10px; padding: 9px; border: none; border-radius: 10px; background: #b83048; color: #fff; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; }

    .official-contact-slot:empty { display: none; }
    .official-contact-btn { display: block; margin-top: 14px; padding: 12px; border-radius: 11px; background: #2b5089; color: #fff; font-size: 14px; font-weight: 800; text-align: center; text-decoration: none; }
    .official-contact-btn:hover { background: #3a6aa8; }

    .official-branch-btn { display: flex; align-items: center; justify-content: center; gap: 7px;
      margin-top: 12px; padding: 12px 14px; border-radius: 11px;
      background: #fff; border: 1.5px solid #2b5089; color: #2b5089;
      font-size: 14px; font-weight: 800; font-family: inherit; text-decoration: none;
      transition: background .16s ease, color .16s ease; }
    .official-branch-btn .obb-arrow { transition: transform .16s ease; font-weight: 700; }

    .official-branch-btn:hover { background: #edf3fb; color: #2b5089; }
    .official-branch-btn:hover .obb-arrow { transform: translateX(3px); }
    .official-branch-btn:active { background: #e2ece6; }

    .official-branch-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
    .official-branch-row .official-branch-btn { margin-top: 0; flex: 1; }

    .pao-info-btn { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
      border: 1.5px solid #2b5089; background: #fff; color: #2b5089;
      cursor: pointer; line-height: 0; padding: 0;
      display: flex; align-items: center; justify-content: center; }
    .pao-info-btn svg { width: 19px; height: 19px; display: block; }
    .pao-info-btn:hover { background: #edf3fb; }  
    .pao-info-btn:active { background: #e2ece6; }
    .pao-info-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.42);
      display: flex; align-items: center; justify-content: center; z-index: 4000; padding: 20px; }
    .pao-info-box { position: relative; background: #fff; border-radius: 16px; max-width: 360px; width: 100%;
      padding: 22px 20px 20px; box-shadow: 0 14px 44px rgba(0,0,0,.22); }
    .pao-info-close { position: absolute; top: 9px; right: 12px; border: none; background: none;
      font-size: 17px; color: #9a9a95; cursor: pointer; line-height: 1; }
    .pao-info-h { font-size: 16px; font-weight: 800; color: #2b5089; margin-bottom: 10px; }
    .pao-info-p { font-size: 14px; line-height: 1.62; color: #333; margin-bottom: 12px; }
    .pao-info-p b { color: #2b5089; }
    .pao-info-note { font-size: 13px; line-height: 1.55; color: #7a7a72;
      background: #f7f6f2; border-radius: 9px; padding: 9px 11px; }
    .pao-info-note b { color: #8a6d1f; }

    .pao-code-row { display: flex; align-items: center; gap: 8px; margin: 2px 0 12px; }
    .pao-code { font-family: 'SF Mono', Menlo, Consolas, monospace; font-size: 19px; font-weight: 800;
      letter-spacing: 3px; color: #2b5089; background: #f4e9c4; border: 1.5px dashed #d8c98f;
      border-radius: 9px; padding: 7px 16px; }
    .pao-code-copy { border: 1.5px solid #2b5089; background: #fff; color: #2b5089; border-radius: 8px;
      padding: 8px 14px; font-weight: 800; font-size: 13px; cursor: pointer; font-family: inherit; }
    .pao-code-copy:hover { background: #2b5089; color: #fff; }

    .pao-actions { display: flex; flex-direction: column; gap: 8px; margin: 6px 0 12px; }
    .pao-actions .official-contact-btn { margin-top: 0; }
    .pao-actions .official-branch-btn { margin-top: 0; }

    .pao-plan-hint { text-align: center; margin: 2px 0 12px; }
    .pao-plan-cap { font-size: 12px; color: #8a6d1f; margin-bottom: 7px; }
    .pao-plan-img { width: 100%; display: block; border-radius: 10px; border: 1px solid #ececf0; }

    .inq-radio-row { display: flex; gap: 18px; margin: 2px 0 4px; }
    .inq-radio { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: #333; cursor: pointer; }
    .ch-apply-btn { background: #2b5089; border: none; font-family: inherit; cursor: pointer; }

    .ch-apply-inline { flex: 1 1 0; min-width: 0; padding: 12px 8px; border: none; border-radius: 11px;
      background: #2b5089; color: #fff; font-weight: 800; font-size: 13.5px; font-family: inherit;
      cursor: pointer; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
    .ch-apply-inline:hover { background: #3a6aa8; }
    .official-branch-row .ch-detail-inline { flex: 0 0 auto; padding-left: 13px; padding-right: 13px; }

    .official-branch-row .ch-apply-inline,
    .official-branch-row .official-branch-btn {
      padding-top: 9px; padding-bottom: 9px; margin-top: 0;
      font-size: 14px; line-height: 1.25;
      border-width: 1.5px; border-style: solid;
    }
    .official-branch-row .ch-apply-inline { border-color: transparent; }
    .official-edit-box { background: #fff; border-radius: 14px; max-width: 440px; width: 92%; max-height: 86vh; overflow-y: auto; padding: 16px 18px; }
    .official-edit-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
    .official-edit-head h3 { font-size: 16px; margin: 0; }
    .official-edit-body { display: grid; gap: 4px; }
    .official-edit-body label { font-size: 12px; font-weight: 700; color: #555; margin-top: 8px; }
    .official-edit-body input:not([type=checkbox]), .official-edit-body select, .official-edit-body textarea { padding: 8px 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 13px; font-family: inherit; box-sizing: border-box; width: 100%; }
    .official-edit-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin-top: 6px; }
    .official-edit-body .official-edit-check { font-size: 12px; font-weight: 500; color: #333; margin-top: 0; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
    .official-edit-check input[type=checkbox] { width: auto; margin: 0; flex: none; }
    .official-edit-actions { display: flex; gap: 8px; margin-top: 14px; }
    .official-edit-actions .official-cta { margin-top: 0; width: auto; flex: 1; }
    .official-edit-cancel { padding: 9px 16px; border: 1px solid #ddd; border-radius: 10px; background: #fff; font-size: 13px; font-family: inherit; cursor: pointer; flex: none; white-space: nowrap; }
    .admin-section-label { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 0 4px; margin-top: 4px; }

    .admin-org-create { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
    .admin-org-input { padding: 7px 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 12px; font-family: inherit; }
    .admin-org-create .admin-org-input:first-child { flex: 1; min-width: 160px; }
    .admin-org-btn { padding: 7px 14px; border: none; border-radius: 8px; background: #1a1a2e; color: #fff; font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer; }

    .seed-help { font-size: 12px; color: #777; line-height: 1.6; margin: 2px 0 8px; }
    .seed-textarea { width: 100%; min-height: 120px; box-sizing: border-box; padding: 10px 12px; border: 1px solid #ddd; border-radius: 10px; font-size: 13px; font-family: inherit; line-height: 1.6; resize: vertical; }
    .seed-actions { display: flex; gap: 8px; margin: 10px 0; }
    .seed-submit:disabled { opacity: 0.4; cursor: not-allowed; }
    .seed-summary { font-size: 12px; font-weight: 700; color: #1a1a2e; margin: 8px 0 6px; }
    .seed-row { font-size: 12px; color: #444; padding: 5px 0; border-bottom: 1px solid #f0efe9; }
    .seed-row span { color: #999; }
    .seed-row-bad { color: #b83048; }
    .seed-dup { color: #b86818 !important; margin-left: 6px; font-weight: 700; }

    .seed-row-dup { background: #fffaf2; border-radius: 8px; padding: 7px 9px; border-bottom: none; }
    .seed-dup-info { font-size: 12px; color: #8a6d3b; margin-top: 5px; line-height: 1.4; }
    .seed-dup-info span { color: #a98; }
    .seed-dup-choice { display: flex; gap: 6px; margin-top: 6px; }
    .sdc-btn { flex: 1; font-size: 12px; font-weight: 700; font-family: inherit; padding: 6px 4px; border-radius: 8px; border: 1.5px solid #e6e0d4; background: #fff; color: #8a857c; cursor: pointer; }
    .sdc-btn.on { border-color: #e85d4a; background: #fff1ee; color: #c4452f; }

    .atag-search { width: 100%; box-sizing: border-box; padding: 9px 12px; border: 1px solid #ddd; border-radius: 10px; font-size: 13px; font-family: inherit; margin: 4px 0 4px; }
    .atag-card { border: 1px solid #eee; border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; }
    .atag-name { font-size: 13px; color: #1a1a2e; margin-bottom: 7px; }
    .atag-name span { color: #999; font-size: 12px; margin-left: 4px; }
    .atag-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
    .atag-chip { padding: 5px 9px; border: 1px solid #ddd; border-radius: 999px; background: #fff; color: #888; font-size: 12px; font-weight: 600; font-family: inherit; cursor: pointer; line-height: 1.2; }
    .atag-chip.on { background: #1a1a2e; border-color: #1a1a2e; color: #fff; }
    .atag-desc { width: 100%; box-sizing: border-box; padding: 7px 10px; border: 1px solid #e2e2dc; border-radius: 8px; font-size: 12px; font-family: inherit; margin-bottom: 8px; }
    .atag-foot { display: flex; justify-content: flex-end; }

    .atag-area-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
    .atag-area-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid #ddd; border-radius: 999px; background: #fff; color: #555; font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer; }
    .atag-area-btn.on { background: #eef0ff; border-color: #c3c9f5; color: #1a1a2e; }
    .atag-area-cnt { background: #1a1a2e; color: #fff; font-size: 11px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
    .admin-org-card { border: 1px solid #eee; border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; }
    .admin-org-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .admin-org-name { font-weight: 700; font-size: 14px; color: #1a1a2e; }
    .admin-org-meta { font-size: 12px; color: #888; }
    .admin-org-actions { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-bottom: 6px; }
    .admin-org-actions .admin-org-uid { flex: 1; min-width: 140px; }
    .admin-org-members { display: grid; gap: 4px; }
    .admin-org-member { display: flex; align-items: center; gap: 8px; font-size: 12px; background: #f7f7f4; border-radius: 6px; padding: 4px 8px; }
    .admin-org-member-id { font-family: monospace; color: #555; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
    .admin-org-member-role { color: #1a1a2e; font-weight: 700; }
    .admin-org-member-del { border: none; background: none; color: #c0392b; font-size: 12px; cursor: pointer; }
    .admin-org-empty { font-size: 12px; color: #aaa; padding: 2px 0; }
    .admin-bld-org { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
    .admin-bld-org-label { font-size: 12px; color: #888; }
    .admin-bld-org .admin-org-input { flex: 1; }

    .admin-ref-list { margin-top: 4px; display: flex; flex-direction: column; gap: 3px; }
    .admin-ref-row { display: flex; align-items: center; gap: 6px; padding: 4px 8px; background: #f4f2ec; border-radius: 6px; font-size: 12px; }
    .admin-ref-no { color: #aaa; font-weight: 700; min-width: 9px; }
    .admin-ref-name { flex: 1; color: #333; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .admin-ref-lead { background: #3a7a52; color: #fff; border-radius: 4px; padding: 1px 5px; font-size: 11px; font-weight: 700; flex: none; }
    .admin-ref-x { border: none; background: none; color: #c0392b; font-weight: 800; font-size: 12px; cursor: pointer; padding: 0 2px; flex: none; }
    .admin-ref-x:disabled { opacity: .4; cursor: default; }
    .admin-bld-name { font-weight: 700; font-size: 14px; color: #1a1a2e; }
    .admin-bld-addr { font-size: 12px; color: #666; margin-top: 2px; }
    .admin-bld-meta { font-size: 12px; color: #999; margin-top: 4px; }
    .admin-bld-photo-grid { display:flex; gap:6px; flex-wrap:wrap; margin-top:8px; }
    .admin-bld-photo { width:68px; height:68px; border-radius:7px; object-fit:cover; border:1px solid #eee; cursor:pointer; }
    .admin-bld-maps-btn { display:inline-flex; align-items:center; gap:4px; margin-top:6px; padding:4px 10px; background:#f0f7ff; color:#1a73e8; border-radius:6px; font-size:12px; border:1px solid #c8deff; cursor:pointer; font-family:inherit; text-decoration:none; }
    .admin-bld-review { background:#f9f9f9; border-radius:8px; padding:8px 10px; margin-top:8px; }
    .admin-bld-review-rating { color:#f5a623; font-size:13px; margin-bottom:3px; }
    .admin-bld-review-period { font-size:11px; color:#aaa; margin-bottom:4px; }
    .admin-bld-review-text { font-size:12px; color:#333; line-height:1.5; }
    .admin-bld-reject-row { margin-top:6px; display:none; }
    .admin-bld-reject-row.visible { display:block; }
    .admin-bld-reject-input { width:100%; box-sizing:border-box; border:1.5px solid #e5e7eb; border-radius:6px; padding:6px 8px; font-size:12px; font-family:inherit; margin-bottom:4px; }
    .admin-bld-reject-confirm { background:#e85d4a; color:#fff; border:none; border-radius:6px; padding:5px 12px; font-size:12px; font-weight:700; cursor:pointer; font-family:inherit; }
    .admin-bld-actions { display: flex; gap: 8px; margin-top: 10px; align-items:center; }
    .admin-bld-approve { background: #4aad6e; color: #fff; border: none; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
    .admin-bld-reject  { background: #f5f5f0; color: #e85d4a; border: 1.5px solid #e85d4a; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
    .admin-bld-goto    { background: #f0f4ff; color: #3a3fa0; border: 1.5px solid #c0c8f0; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
    .admin-bld-approve { background: #eef8ee; color: #1e7e38; border: 1.5px solid #a8d8b0; border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
    .gmap-building-marker.pending-building { --pin-color: #f0a500; }

    .jibu-toast {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 10000;
      background: #1a1a2e;
      color: #fff;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease;
      pointer-events: none;
    }
    .jibu-toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    #jibuDebugBadge { display: none !important; }

    .chomei-panel-header-block {
      padding: 18px 16px 12px;
      border-bottom: 1px solid #f0f0ec;
    }

    .chomei-panel-name-row {
      display: flex;
      align-items: center;   
      flex-wrap: wrap;
      gap: 6px 8px;
    }
    .chomei-panel-name-ko {
      font-size: 22px;
      font-weight: 800;
      color: #1a1a2e;
      line-height: 1.2;
    }
    .chomei-panel-name-ja {
      font-size: 14px;
      color: #888;
    }
    .chomei-panel-name-ward {
      font-size: 12px;
      color: #aaa;
    }
    .chomei-panel-meta {
      font-size: 12px;
      color: #666;
      margin-top: 6px;
    }

    .chomei-area-chip {
      margin-left: auto; flex-shrink: 0;
      display: inline-flex; align-items: center; gap: 5px;
      padding: 6px 11px; border-radius: 999px;
      background: #fff; border: 1.5px solid #35629e;
      color: #35629e; font-size: 12px; font-weight: 800; text-decoration: none;
    }

    .chomei-area-chip:hover { background: #f1f5fb; border-color: #2b5089; color: #2b5089; }
    .chomei-area-chip .cac-arrow { opacity: .8; }

    @media (max-width: 520px) {
      .chomei-area-chip { margin-left: 0; }
    }

    .chomei-panel-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      margin-top: 10px;
    }

    .chomei-area-link {
      display: flex; align-items: center; gap: 7px;
      margin-top: 12px; padding: 12px 14px;
      background: #eef2f8; border: 1px solid #dae5f2; border-radius: 11px;
      color: #2b5089; font-size: 13px; font-weight: 800; text-decoration: none;
    }
    .chomei-area-link .ico { width: 16px; height: 16px; flex-shrink: 0; }
    .chomei-area-link b { font-weight: 800; color: #5f6a78; }
    .chomei-area-link .cal-arrow { margin-left: auto; opacity: .7; }
    .chomei-area-link:hover { background: #e3ebf7; }

    .ward-fold { margin-top: 8px; }   
    .ward-fold > summary {
      list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 800; color: #6b7280;
    }
    .ward-fold > summary::-webkit-details-marker { display: none; }
    .ward-fold > summary::before { content: '▸'; font-size: 11px; opacity: .65; }
    .ward-fold[open] > summary::before { content: '▾'; }
    .ward-fold > summary:hover { color: #2b5089; }
    .ward-fold-body { margin-top: 9px; }
    .ward-fold-body p { margin: 0; font-size: 13px; line-height: 1.65; color: #555; }

    .chomei-ward-desc {
      font-size: 13px;
      color: #555;
      line-height: 1.65;
      margin-top: 10px;
      padding: 12px 14px;
      background: #f5f3ee;
      border-radius: 10px;
      border-left: 3px solid #b9a98a;
    }

    .chome-stats {
      margin-top: 12px; padding-top: 11px; border-top: 1px solid #ececf2;
      font-size: 12px; line-height: 1.7; color: #46536b;
    }

    .chome-stats .cs-read { font-size: 14px; font-weight: 800; color: #23385c; line-height: 1.5; }
    .chome-stats .cs-read .cs-dot { margin: 0 5px; opacity: .35; font-weight: 400; }
    .chome-stats .cs-nums { margin-top: 5px; font-size: 12px; color: #6b7789; }
    .chome-stats .cs-nums .cs-sep { margin: 0 5px; opacity: .45; }
    .chome-stats .cs-cmp { color: #96a2b4; }
    .chome-stats .cs-src { display: block; margin-top: 4px; font-size: 11px; color: #96a2b4; }

    .ward-stats {
      margin-top: 9px; padding-top: 8px; border-top: 1px solid rgba(184, 169, 138, .35);
      font-size: 12px; line-height: 1.75; color: #6b6250;
    }
    .ward-stats b { color: #4a4232; font-weight: 800; }
    .ward-stats i { font-style: normal; font-size: 11px; font-weight: 800; color: #a08a5c; }
    .ward-stats .ws-sep { margin: 0 6px; opacity: .45; }
    .ward-stats .ws-src { display: block; margin-top: 4px; font-size: 11px; color: #a89f90; }

    .chomei-ward-desc-label {
      display: inline-block;
      font-weight: 700;
      color: #6b5b3e;
      margin-right: 6px;
    }
    .chomei-color-bar {
      height: 4px;
      border-radius: 2px;
      margin-bottom: 16px;
    }
    .chomei-section-title {
      font-size: 14px;
      font-weight: 700;
      color: #1a1a2e;
      padding: 16px 16px 8px;
      border-top: 1px solid #f0f0ec;
    }
    .chomei-building-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: background .15s;
    }
    .chomei-building-card:hover { background: #f8f8f5; }

    .chomei-buildings-wrap.collapsed {
      flex: 0 0 auto; 
      max-height: 315px;   
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
    }
    .chomei-buildings-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: calc(100% - 40px);
      margin: 6px 20px 0;
      padding: 8px 16px;
      border: 1px solid #ececec;
      border-radius: 10px;
      background: #fafafa;
      color: #555;
      font-size: 12px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
    }
    .chomei-buildings-toggle:hover { background: #f3f3ef; }
    .chomei-buildings-toggle .cbt-arrow { font-size: 11px; }
    .chomei-building-icon {
      width: 36px;
      height: 36px;
      background: #f0f0ec;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    .chomei-building-name {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a2e;
    }
    .chomei-building-name-ko {
      font-size: 12px;
      font-weight: 600;
      color: #6b6b80;
      margin-top: 1px;
    }
    .chomei-building-sub {
      font-size: 12px;
      color: #888;
      margin-top: 2px;
    }
    .chomei-review-placeholder {
      padding: 24px 16px;
      text-align: center;
      color: #aaa;
      font-size: 13px;
      line-height: 1.6;
    }

    #chomeiPopup {
      position: fixed;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%) translateY(16px);
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,.18);
      padding: 16px 20px;
      min-width: 240px;
      max-width: 320px;
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s, transform .2s;
    }
    #chomeiPopup.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .chomei-popup-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 6px;
    }
    .chomei-popup-name-ko {
      font-size: 16px;
      font-weight: 800;
      color: #1a1a2e;
    }
    .chomei-popup-name-ja {
      font-size: 12px;
      color: #888;
      margin-top: 1px;
    }
    .chomei-popup-ward {
      font-size: 12px;
      color: #666;
      margin-bottom: 12px;
    }
    .chomei-popup-close {
      background: none;
      border: none;
      font-size: 19px;
      color: #aaa;
      cursor: pointer;
      line-height: 1;
      padding: 0 0 0 8px;
      flex-shrink: 0;
    }
    .chomei-popup-btn {
      display: block;
      width: 100%;
      padding: 9px 0;
      background: #1a1a2e;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      text-align: center;
    }

    .favorite-btn {
      border: 1.5px solid #e0e0da;
      background: #fff;
      color: #555;
      border-radius: 20px;
      padding: 6px 11px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: all .15s ease;
      white-space: nowrap;
    }
    .favorite-btn:hover {
      border-color: #e85d4a;
      color: #e85d4a;
      background: #fff8f6;
    }
    .favorite-btn.active {
      background: #e85d4a;
      color: #fff;
      border-color: #e85d4a;
    }

    .share-link-btn {
      border: 1.5px solid #e0e0da;
      background: #fff;
      color: #666;
      border-radius: 20px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 800;
      cursor: pointer;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      box-sizing: border-box;
      min-width: 65px; 
      transition: all .15s ease;
      white-space: nowrap;
    }

    .share-link-btn:hover {
      border-color: #1a1a2e;
      color: #1a1a2e;
      background: #f8f6f0;
    }

    .share-icon-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1.5px solid #e0e0da;
      background: #fff;
      color: #1a1a2e; 
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      line-height: 1;
      padding: 0;
      flex: 0 0 auto;
      transition: all .15s ease;
    }
    .share-icon-btn:hover { border-color: #1a1a2e; background: #f8f6f0; }

    .imgsave-overlay { position: fixed; inset: 0; z-index: 9700; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; padding: 16px; overflow: auto; }
    .imgsave-box { background: #fff; border-radius: 14px; padding: 14px; max-width: 92vw; display: flex; flex-direction: column; gap: 10px; }
    .imgsave-hint { font-size: 13px; color: #555; text-align: center; line-height: 1.5; }
    .imgsave-img { max-width: 100%; max-height: 68vh; object-fit: contain; border: 1px solid #eee; border-radius: 8px; }
    .imgsave-actions { display: flex; gap: 8px; justify-content: center; }
    .imgsave-dl, .imgsave-close { padding: 9px 18px; border-radius: 10px; font-size: 13px; font-weight: 800; font-family: inherit; cursor: pointer; text-decoration: none; border: none; }
    .imgsave-dl { background: #e85d4a; color: #fff; }
    .imgsave-close { background: #f0f0ea; color: #555; }

    .favorite-row {
      display: flex;
      gap: 8px;
      padding: 0 16px 10px;
      align-items: center;
      flex-wrap: wrap;
    }
    .favorite-hint {
      font-size: 12px;
      color: #888;
    }
    .detail-fav-row {
      display: flex;
      gap: 8px;
      align-items: center;

      flex-wrap: wrap;
      margin: 8px 0 12px;
    }

    .favorite-row .fav-count,
    .detail-fav-row .fav-count {
      font-size: 12px !important;
      line-height: 1.4 !important;
      color: #888 !important;
      font-weight: 500 !important;
      white-space: nowrap !important;
    }

    .building-panel.open {
      width: 380px !important;
    }

    .building-inner {
      width: 380px !important;
    }

    .building-panel .detail-imgs {
      height: 170px !important;
      flex-shrink: 0;
    }

    .building-review-section {
      padding: 0 16px 18px; 
    }
    .building-review-section .chomei-section-title { border-top: none; } 

    .building-review-tabs {
      display: flex;
      gap: 6px;
      overflow-x: auto;
      scrollbar-width: none;
      margin: 8px 0 10px;
      padding-bottom: 2px;
    }

    .building-review-tabs::-webkit-scrollbar {
      display: none;
    }

    .building-review-tab {
      padding: 5px 10px;
      border-radius: 14px;
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      border: 1.5px solid #e0e0da;
      color: #555;
      background: #fff;
      transition: all .15s;
      font-family: inherit;
    }

    .building-review-tab.active {
      background: #1a1a2e;
      color: #fff;
      border-color: #1a1a2e;
    }

    .building-review-write {
      display: flex;
      gap: 8px;
      margin: 10px 0 12px;
    }

    .building-review-write input {
      flex: 1;
      border: 1.5px solid #e0e0da;
      border-radius: 20px;
      padding: 8px 12px;
      font-size: 12px;
      outline: none;
      font-family: inherit;
      min-width: 0;
    }

    .building-review-write input:focus {
      border-color: #e85d4a;
    }

    .building-review-submit {
      padding: 8px 13px;
      background: #e85d4a;
      color: #fff;
      border: none;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      font-family: inherit;
    }

    @media (max-width: 900px) {
      .building-panel.open {
        width: 100% !important;
      }
      .building-inner {
        width: 100% !important;
      }

      .brand-subtitle {
        font-size: 11px;
      }
    }

    @media (max-width: 640px) {
      .brand-subtitle {
        display: none;
      }
    }

    .building-panel {
      transform: translateX(100%);
      width: 380px !important;
      max-width: 380px !important;
      border-left-width: 1px;
      pointer-events: none;
    }

    .building-panel.open {
      transform: translateX(0);
      width: 380px !important;
      pointer-events: auto;
    }

    .building-inner {
      width: 380px !important;
    }

    .building-panel { overflow-x: hidden !important; }
    .building-panel, .side-panel { scrollbar-width: thin; scrollbar-color: #cfd2da transparent; }
    .building-panel::-webkit-scrollbar, .side-panel::-webkit-scrollbar { width: 7px; height: 0; }
    .building-panel::-webkit-scrollbar-thumb, .side-panel::-webkit-scrollbar-thumb { background: #cfd2da; border-radius: 4px; }
    .building-panel::-webkit-scrollbar-thumb:hover, .side-panel::-webkit-scrollbar-thumb:hover { background: #b3b7c2; }
    .building-panel::-webkit-scrollbar-track, .side-panel::-webkit-scrollbar-track { background: transparent; }

    @media (max-width: 900px) {
      .building-panel,
      .building-panel.open {
        width: 100% !important;
        max-width: 100% !important;
      }
      .building-inner {
        width: 100% !important;
      }
    }

    .building-panel {
      display: none !important;
      position: fixed !important;
      top: 56px !important;
      right: 0 !important;
      bottom: 0 !important;
      width: 380px !important;
      max-width: 380px !important;
      background: #fff !important;
      border-left: 1px solid #e8e8e2 !important;
      z-index: 3000 !important;
      overflow-y: auto !important;
      overscroll-behavior: none !important;
      box-shadow: -8px 0 24px rgba(0,0,0,0.08) !important;
      transform: none !important;
      pointer-events: auto !important;
    }

    .building-panel.open {
      display: flex !important;
      flex-direction: column !important;
    }

    .building-inner {
      width: 380px !important;
      min-height: 100% !important;

      display: block !important;
    }

    @media (max-width: 900px) {
      .building-panel,
      .building-panel.open {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
      }

      .building-inner {
        width: 100% !important;
      }
    }

    @media (max-width: 760px) {
      :root {
        --jibu-mobile-header-height: 106px;
      }

      body {
        overflow: hidden;
      }

      body.community-page-open {
        overflow-x: hidden;
        overflow-y: auto;
      }

      body.community-page-open .header {
        display: none;
      }

      .header {

        height: auto;
        top: 8px; left: 8px; right: 8px;
        padding: 9px 12px;
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: center;
        gap: 8px;  
        background: rgba(255,255,255,0.74);
        -webkit-backdrop-filter: saturate(180%) blur(16px);
        backdrop-filter: saturate(180%) blur(16px);
        border: 1px solid rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        border-radius: 22px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.12);
      }

      .brand {
        align-items: center;  
      }

      .brand {
        order: 1;
        height: 34px;
        flex: 0 0 auto;
      }

      .logo {
        font-size: 19px;
      }

      .search-wrap {
        order: 2;
        flex: 1 1 110px; 
        max-width: none;
        min-width: 0;
      }

      .mobile-more-btn {
        display: flex;
        order: 3;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        flex: 0 0 auto;
        border-radius: 50%;
        border: 1px solid rgba(0,0,0,0.08);
        background: rgba(255,255,255,0.9);
        color: #1a1a2e;
        cursor: pointer;
        padding: 0;
        position: relative; 
      }

      .mobile-more-btn svg {
        width: 16px;
        height: 16px;
      }

      .search-bar {
        height: 34px;
        border-radius: 18px;
        padding: 0 10px;
      }

      .search-bar input {
        font-size: 13px;
      }

      .search-suggestions {
        top: 40px;
        max-height: min(58vh, 360px);
        overflow-y: auto;
      }

      .auth-area {
        order: 3;
        margin-left: 0;
        max-width: none;
      }

      .login-btn {
        max-width: 98px;
        padding: 6px 10px;
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .nav-tabs,
      .auth-area {
        display: none !important;
      }

      .user-info {
        max-width: none;
        background: transparent;
        padding: 0;
        gap: 6px;
      }

      .user-nickname {
        display: none;
      }

      .logout-btn {
        padding: 3px 6px;
      }

      .nav-tabs {
        order: 4;
        width: auto;
        flex: 0 0 auto;
        overflow-x: visible;
        scrollbar-width: none;
        padding-bottom: 0;
      }

      .nav-tabs::-webkit-scrollbar {
        display: none;
      }

      .nav-tab,
      .contact-nav-btn {
        flex: 0 0 auto;
        padding: 6px 10px;
        font-size: 12px;
      }

      .top-home-filter {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        width: auto;
        min-width: 0;
        padding: 1px 2px;
        background: transparent;
      }

      .top-home-filter-btn {
        padding: 7px 12px;
        font-size: 12px;
      }

      .top-home-filter .tf-dd-btn {
        background: #fff;
        border-color: rgba(0,0,0,0.14);
        color: #1a1a2e;
        box-shadow: 0 1px 4px rgba(0,0,0,0.12);
      }

      .top-home-filter {
        position: absolute;
        z-index: 900;

        top: calc(100% + 8px + 1px);   
        right: -1px;                   
        left: auto;
        flex-direction: column;
        align-items: stretch;   
        gap: 0;
        padding: 4px;
        width: auto;
        overflow: visible;
        border-radius: 16px;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
      }
      .top-home-filter::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: rgba(255, 255, 255, 0.82);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        backdrop-filter: saturate(180%) blur(14px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: -1;
      }

      .top-home-filter .tf-dd-btn {
        width: 100%;
        min-height: 40px;
        justify-content: flex-start;
        gap: 7px;
        padding: 9px 12px;
        font-size: 13px;
        letter-spacing: -0.2px;
        border-radius: 12px;
        border-color: transparent;
        background: transparent;
        box-shadow: none;
        color: #1a1a2e;
      }
      .top-home-filter .tf-dd.on .tf-dd-btn {
        background: #e9eff8;
        border-color: #e9eff8;
      }

      .top-home-filter .tf-dd + .tf-dd::before {
        content: '';
        position: absolute;
        left: 9px; right: 9px; top: -1px;
        width: auto; height: 1px;
        background: rgba(0, 0, 0, 0.09);
      }

      .top-home-filter .tf-dd-caret { display: none; }
      body.start-card-open .top-home-filter { opacity: 0; pointer-events: none; }

      .main {
        height: 100dvh;
        padding-top: var(--jibu-mobile-header-height);
      }

      #map {
        min-height: calc(100dvh - var(--jibu-mobile-header-height));
      }

      .rrw-box {
        width: calc(100vw - 28px);
        max-width: none;
        margin: 0 auto;
        padding: 18px 22px;
        border-radius: 18px;
      }

      .rrw-trait-grp {
        grid-template-columns: 78px repeat(3, minmax(0, 1fr));
        gap: 8px;
        max-width: none;
      }

      .rrw-trait-name {
        grid-column: 1;
      }

      .rrw-trait-chip {
        min-height: 34px;
        padding: 7px 6px;
      }

      .rrw-trait-rent {
        min-height: 38px;
      }

      .rrw-structure-trait .rrw-trait-chip:nth-of-type(3) {
        font-size: 12px;
        padding-left: 3px;
        padding-right: 3px;
        white-space: nowrap;
      }

      .left-panels {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        z-index: 3600; 
        display: block;
        pointer-events: none;
      }

      .detail-panel,

      .side-panel {
        position: fixed;
        inset: 0;
        width: 100% !important;
        height: 100dvh;
        max-height: none;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none !important;
        transition: none !important;
        display: none;
        flex-direction: column;
        pointer-events: auto;
        overflow-y: auto;
        z-index: 3600;
      }

      .detail-panel.open,
      .side-panel.open {
        display: flex;
        width: 100% !important;
      }

      .side-inner,
      .detail-inner {
        width: 100% !important;
      }

      .panel-header {
        padding: 12px 20px;
      }

      .area-tabs {
        padding: 10px 14px 0;
      }

      .area-info {
        margin: 10px 14px;
        padding: 12px;
      }

      .favorite-row,
      .review-tags,
      .cat-tabs {
        padding-left: 14px;
        padding-right: 14px;
      }

      .comments-section {
        margin-left: 14px;
        margin-right: 14px;
      }

      .review-sort-tabs,
      .cat-tabs,
      .building-review-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
      }

      .review-sort-tabs::-webkit-scrollbar,
      .cat-tabs::-webkit-scrollbar,
      .building-review-tabs::-webkit-scrollbar {
        display: none;
      }

      .review-controls-row {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .review-controls-row::-webkit-scrollbar { display: none; }
      .review-controls-row .cat-tabs,
      .review-controls-row .building-review-tabs,
      .review-controls-row .review-sort-tabs {
        flex: 0 0 auto;
        overflow: visible;
      }
      .review-controls-row .review-sort-tabs { margin-left: auto; }

      .comment-card,
      .question-card,
      .square-card {
        border-radius: 12px;
      }

      .building-panel {
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: min(72dvh, 640px) !important;
        border-left: 0 !important;
        border-top: 1px solid #e8e8e2 !important;
        border-radius: 18px 18px 0 0 !important;
        box-shadow: 0 -14px 30px rgba(0,0,0,0.16) !important;
      }

      .building-panel.open {
        width: 100% !important;
        max-width: 100% !important;
      }

      .building-inner {
        width: 100% !important;
      }

      .building-panel .detail-imgs {
        height: 145px !important;
      }

      .spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .map-pin-legend {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        max-width: none;
        justify-content: center;
      }

      .board-page {
        padding: 16px 10px calc(84px + env(safe-area-inset-bottom, 0)); 
      }

      .board-sub { display: none; } 
      .board-sub-mbr { display: inline; } 

      .board-title {
        font-size: 22px;
      }

      .board-sub {
        font-size: 12px;
      }

      .community-main {
        padding: 10px;
      }

      .community-side {
        border-radius: 12px;
        padding: 8px;
      }

      .community-search { justify-content: flex-start; }
      .community-search input { flex: 1 1 auto; }

      .square-detail-box,
      .write-modal-box,
      .contact-modal-box {
        width: calc(100vw - 22px);
        max-height: calc(100dvh - 28px);
      }

      .write-modal-box,
      .contact-modal-box {
        overflow-y: auto;
      }

      .jibu-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center;
      }
    }

    @media (max-width: 420px) {
      .header {
        gap: 6px;
      }

      .nav-tab,
      .contact-nav-btn {
        padding-left: 9px;
        padding-right: 9px;
      }

      .area-stats {
        grid-template-columns: 1fr;
      }

      .square-card .square-target-row,

      .community-hot-foot {
        align-items: center;
      }
    }

    #landingPage{position:fixed;inset:0;z-index:5000;background:#f5f1e8;overflow-y:auto;-webkit-overflow-scrolling:touch;color:#24352c;-webkit-font-smoothing:antialiased;}
    html.lp-skip #landingPage{display:none;}

    .lp-wrap{max-width:760px;margin:0 auto;padding:0 22px 76px;}
    .lp-head{display:flex;justify-content:flex-end;align-items:flex-start;padding:24px 0 8px;}

    .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;}
    .lp-vtitle{position:fixed;left:5px;top:50%;transform:translateY(-50%) rotate(180deg);writing-mode:vertical-rl;font-size:18px;font-weight:500;letter-spacing:.16em;margin:0;color:#2e5a4a;line-height:1;pointer-events:none;z-index:30;}
    .lp-nav{font-size:13px;color:#2e5a4a;background:none;border:none;font-family:inherit;cursor:pointer;padding:6px 0 0;}
    .lp-nav:active{opacity:.55;}
    .lp-intro{font-size:16px;line-height:1.8;margin:30px 0 44px;max-width:440px;font-weight:400;word-break:keep-all;}
    .lp-intro .dim{color:#8d8778;}

    .lp-diag{background:#2e5a4a;color:#e9e7db;border-radius:18px;padding:26px 22px 24px;margin:0 0 56px;max-width:560px;}
    .lp-diag-t{font-size:19px;font-weight:600;margin:0 0 6px;letter-spacing:-.01em;word-break:keep-all;}
    .lp-diag-s{font-size:13.5px;color:#9fb1a3;line-height:1.65;margin:0 0 18px;word-break:keep-all;}
    .lp-diag-btns{display:flex;flex-wrap:wrap;gap:10px;}
    .lp-diag-go{background:#e9e7db;color:#1f3b30;border:none;border-radius:11px;padding:13px 18px;font-size:14.5px;font-weight:700;font-family:inherit;cursor:pointer;}
    .lp-diag-go:active{opacity:.85;}
    .lp-diag-alt{background:none;color:#cfd8cb;border:1px solid rgba(233,231,219,.38);border-radius:11px;padding:13px 16px;font-size:13.5px;font-family:inherit;cursor:pointer;}
    .lp-diag-alt:active{opacity:.7;}
    .lp-diag-foot{font-size:12.5px;line-height:1.6;color:#9fb1a3;margin:14px 0 0;word-break:keep-all;}
    .lp-item{margin:0 0 54px;}
    .lp-fig{margin:0;position:relative;}
    .lp-fig img{display:block;width:100%;height:auto;background:rgba(36,53,44,.06);}

    .lp-fig.clickable{cursor:pointer;}
    .lp-fig.clickable::after{content:'';position:absolute;inset:0;background:#2e5a4a;opacity:0;transition:opacity .3s ease;pointer-events:none;}
    .lp-fig.clickable:hover::after{opacity:.74;}
    .lp-fig.clickable:active::after{opacity:.74;}
    .lp-cap{display:flex;gap:12px;margin:14px 2px 0;}
    .lp-cap .n{font-size:11px;color:rgba(36,53,44,.4);font-variant-numeric:tabular-nums;padding-top:2px;}
    .lp-cap b{display:block;font-size:13px;font-weight:500;color:#24352c;}
    .lp-cap .sub{display:block;font-size:12px;color:#8d8778;margin-top:2px;}

    .lp-two{display:grid;grid-template-columns:1fr;gap:4px;}
    .lp-two img{display:block;width:100%;height:auto;background:rgba(36,53,44,.06);}
    .lp-block{margin:0 0 54px;}
    .lp-kicker{font-size:11px;letter-spacing:.18em;color:#6f8a7c;margin:0 0 16px;text-transform:uppercase;}
    .lp-areas{font-size:16px;line-height:2.15;margin:0 0 14px;}
    .lp-areas a{color:#24352c;text-decoration:none;margin-right:18px;white-space:nowrap;border-bottom:1px solid rgba(36,53,44,.22);}
    .lp-areas a:active{opacity:.5;}
    .lp-areas .more{color:#6f8a7c;white-space:nowrap;}
    .lp-stat{font-size:12.5px;color:#8d8778;}
    .lp-quote{font-size:21px;line-height:1.55;font-weight:400;margin:0 0 12px;letter-spacing:-.01em;word-break:keep-all;color:#2e5a4a;}
    .lp-quote-by{font-size:12.5px;color:#8d8778;}

    .lp-say{font-size:18px;line-height:1.7;margin:0;color:#24352c;font-weight:400;word-break:keep-all;}
    .lp-say .dim{color:#8d8778;}
    .lp-say .q{display:block;font-size:12px;letter-spacing:.2em;color:rgba(36,53,44,.35);margin:0 0 12px;}
    .lp-note{font-size:12.5px;line-height:1.7;color:#8d8778;margin:16px 0 0;word-break:keep-all;}
    .lp-enter{display:inline-block;font-size:16px;color:#2e5a4a;background:none;border:none;border-bottom:1px solid #2e5a4a;padding:0 1px 5px;font-family:inherit;cursor:pointer;}
    .lp-foot{margin-top:60px;padding-top:22px;border-top:1px solid rgba(36,53,44,.15);display:flex;flex-wrap:wrap;gap:20px;font-size:12px;}
    .lp-foot a,.lp-foot button{color:#8d8778;text-decoration:none;background:none;border:none;font-family:inherit;font-size:12px;cursor:pointer;padding:0;letter-spacing:.04em;}
    .lp-foot a:active,.lp-foot button:active{color:#24352c;}

    @media (min-width:760px){
      .lp-wrap{max-width:1080px;padding:0 40px 120px;}
      .lp-head{padding:34px 0 0;}
      .lp-vtitle{font-size:32px;left:28px;letter-spacing:.14em;}
      .lp-intro{font-size:19px;line-height:1.85;max-width:540px;margin:46px 0 60px;}
      .lp-diag{padding:32px 30px 28px;margin:0 0 96px;}
      .lp-diag-t{font-size:22px;}
      .lp-diag-s{font-size:14.5px;}
      .lp-item{margin-bottom:104px;}
      .lp-item.pos-l{margin-right:auto;}
      .lp-item.pos-r{margin-left:auto;}
      .lp-item.w38{width:38%;}.lp-item.w42{width:42%;}.lp-item.w46{width:46%;}.lp-item.w50{width:50%;}.lp-item.w54{width:54%;}.lp-item.w58{width:58%;}.lp-item.w60{width:60%;}.lp-item.w62{width:62%;}.lp-item.w70{width:70%;}
      .lp-block{max-width:600px;margin-bottom:96px;}
      .lp-block.pos-r{margin-left:auto;}
      .lp-quote{font-size:31px;}
      .lp-say{font-size:24px;line-height:1.6;}
      .lp-enter{font-size:19px;}
    }

    .reco-box{background:#fff;width:100%;max-width:480px;max-height:86vh;overflow-y:auto;border-radius:20px;padding:18px 18px 20px;margin:0 16px;box-sizing:border-box;-webkit-overflow-scrolling:touch;}
    .reco-head{display:flex;align-items:center;gap:10px;margin-bottom:4px;}
    .reco-back{background:none;border:none;font-size:19px;color:#8a8178;cursor:pointer;padding:4px 6px;font-family:inherit;}
    .reco-head-t{flex:1;min-width:0;}
    .reco-head-t b{display:block;font-size:16px;color:#1a1a2e;font-weight:800;word-break:keep-all;}
    .reco-head-t span{display:block;font-size:12px;color:#8a8178;margin-top:2px;}
    .reco-dots{display:flex;gap:5px;margin:10px 2px 14px;}
    .reco-dots span{width:22px;height:4px;border-radius:2px;background:#eceae3;}
    .reco-dots span.on{background:#e85d4a;}
    .reco-chips{display:flex;flex-direction:column;gap:9px;margin:8px 0 4px;}
    .reco-chips-wrap{flex-direction:row;flex-wrap:wrap;}
    .reco-chip{border:1.5px solid #e3e0d8;background:#fff;border-radius:12px;padding:13px 14px;font-size:14px;color:#333;font-family:inherit;cursor:pointer;text-align:left;word-break:keep-all;}
    .reco-chips-wrap .reco-chip{padding:9px 13px;border-radius:20px;font-size:13px;}
    .reco-chip em{font-style:normal;font-size:12px;color:#b3ad9f;margin-left:6px;}
    .reco-chip.sel{border-color:#e85d4a;background:#fbe7e2;color:#c4452f;font-weight:700;}
    .reco-cta{display:block;width:100%;background:#e85d4a;color:#fff;border:none;border-radius:13px;padding:14px;font-size:16px;font-weight:800;font-family:inherit;cursor:pointer;margin-top:14px;}
    .reco-note{font-size:12px;color:#a39a8f;line-height:1.6;margin:12px 2px 0;word-break:keep-all;}

    .reco-median{font-size:13px;color:#5f6a78;background:#edf2f9;border-radius:9px;padding:8px 11px;margin:0 0 10px;word-break:keep-all;}
    .reco-median b{color:#35629e;}
    .reco-or{font-size:12px;color:#a39a8f;margin:16px 2px 8px;font-weight:600;}
    .reco-anchor-wrap{display:flex;gap:8px;}
    .reco-anchor-in{flex:1;min-width:0;box-sizing:border-box;border:1.5px solid #e3e0d8;border-radius:11px;padding:12px 13px;font-size:14px;font-family:inherit;color:#333;}
    .reco-anchor-in:focus{outline:none;border-color:#35629e;}
    .reco-anchor-btn{flex-shrink:0;background:#35629e;color:#fff;border:none;border-radius:11px;padding:0 14px;font-size:13px;font-weight:700;font-family:inherit;cursor:pointer;white-space:nowrap;}
    .reco-anchor-btn:disabled{opacity:.6;}
    .reco-results{display:flex;flex-direction:column;gap:14px;margin-top:10px;}
    .reco-card{border:1.5px solid #eceae3;border-radius:14px;overflow:hidden;}
    .reco-card-body{display:block;padding:14px 14px 12px;text-decoration:none;color:inherit;}
    .reco-card-body:active{background:#faf8f3;}
    .reco-card-top{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
    .reco-card-top b{font-size:16px;color:#1a1a2e;}
    .reco-badge{font-size:12px;font-weight:700;padding:3px 9px;border-radius:8px;}
    .reco-rent{font-size:13px;color:#555;margin-top:6px;}
    .reco-rent b{color:#c4452f;}
    .reco-over{font-size:12px;color:#b3813a;}
    .reco-under{font-size:12px;color:#2e8a5f;}
    .reco-desc{font-size:13px;color:#777;line-height:1.55;margin-top:6px;word-break:keep-all;}
    .reco-mth{display:flex;gap:6px;flex-wrap:wrap;margin-top:8px;}
    .reco-mth span{font-size:12px;color:#35629e;background:#edf2f9;border-radius:8px;padding:3px 8px;}
    .reco-card-acts{display:flex;border-top:1px solid #f0eee7;}
    .reco-card-act{flex:1;text-align:center;padding:11px 8px;font-size:13px;font-weight:700;font-family:inherit;cursor:pointer;text-decoration:none;background:none;border:none;color:#555;}
    .reco-card-act:active{background:#faf8f3;}
    .reco-card-act.map{border-left:1px solid #f0eee7;color:#e85d4a;}
    .reco-foot{margin-top:14px;}

    .reco-login,.reco-hub-login{background:#edf2f9;border-radius:12px;padding:14px 15px;margin-top:14px;}
    .reco-login-top{margin-top:4px;margin-bottom:14px;} 
    .reco-hub-login{margin-top:18px;}
    .reco-login-t{font-size:14px;font-weight:700;color:#35629e;margin:0 0 4px;word-break:keep-all;}
    .reco-login-d{font-size:13px;color:#5f6a78;line-height:1.6;margin:0 0 12px;word-break:keep-all;}
    .reco-login-btn{display:block;width:100%;background:#35629e;color:#fff;border:none;border-radius:10px;padding:12px;font-size:14px;font-weight:700;font-family:inherit;cursor:pointer;}
    .reco-login-btn:active{opacity:.85;}
    .reco-again{display:block;width:100%;background:#fff;border:1.5px solid #e3e0d8;color:#555;border-radius:12px;padding:11px;font-size:14px;font-weight:700;font-family:inherit;cursor:pointer;margin-top:12px;}
    .reco-again-top{margin-top:0;margin-bottom:10px;}  

    .reco-hub-sec{padding:2px 0 6px;}
    .reco-hub-title{font-size:16px;font-weight:800;color:#1a1a2e;margin:4px 0 8px;}
    .reco-hub-title .reco-hub-sub{font-size:12px;color:#8a8178;font-weight:400;margin-left:6px;}
    .reco-hub-desc{font-size:13px;color:#7d756b;line-height:1.65;margin:0 0 4px;word-break:keep-all;}
    .reco-hub-divider{font-size:12px;letter-spacing:.08em;color:#a39a8f;margin:20px 0 8px;padding-top:16px;border-top:1px solid #eceae3;font-weight:700;}

    .reco-hub-notif{margin-bottom:6px;}
    .reco-hub-grid{display:grid;grid-template-columns:1fr;gap:12px;}
    @media (min-width:720px){
      .official-edit-box.reco-hub-box{max-width:900px;}
      .reco-hub-grid{grid-template-columns:1fr 1fr;gap:26px;align-items:start;}
      .reco-hub-col-home{border-right:1px solid #eceae3;padding-right:26px;}
    }

    #loginModal{z-index:10002;}

@media (min-width: 901px) {
  .building-panel,
  .building-panel.open,
  .side-panel.open {
    width: clamp(400px, 32vw, 500px) !important;
    max-width: clamp(400px, 32vw, 500px) !important;
  }
  .building-inner,
  .side-inner {
    width: 100% !important;
    max-width: 100% !important;
  }
}

    .xlang-bar{position:fixed;left:0;right:0;top:56px;z-index:3400;display:flex;align-items:center;gap:10px;padding:7px 14px;background:#fbf3ef;border-bottom:1px solid #f0ded5;font-size:12.5px;color:#7a5c4e;}

    @media(max-width:760px){ .xlang-bar{top:var(--jibu-mobile-header-height,106px);} }
    .xlang-bar[hidden]{display:none;}
    .xlang-msg{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
    .xlang-cta{color:#c4452f;font-weight:700;text-decoration:none;white-space:nowrap;}
    .xlang-cta:hover{text-decoration:underline;}
    .xlang-x{background:none;border:none;color:#b09a8e;font-size:18px;line-height:1;cursor:pointer;padding:0 2px;font-family:inherit;}
    @media(max-width:520px){ .xlang-bar{font-size:11.5px;padding:6px 11px;gap:8px;} }

    @media(max-width:760px){
      .xlang-bar{ flex-wrap:wrap; align-items:flex-start; padding-right:30px; position:relative; }
      .xlang-msg{ white-space:normal; overflow:visible; text-overflow:clip; flex:1 1 100%; line-height:1.45; }
      .xlang-cta{ white-space:normal; }
      .xlang-x{ position:absolute; top:4px; right:8px; }
    }

    .map-filter-empty{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:60;
      background:rgba(255,255,255,.97);border:1px solid #ece2da;border-radius:16px;padding:18px 20px;
      max-width:min(340px,86vw);text-align:center;box-shadow:0 10px 30px rgba(40,30,25,.14);}
    .map-filter-empty[hidden]{display:none;}
    .mfe-t{font-size:15px;font-weight:800;color:#2b2118;margin-bottom:6px;}
    .mfe-s{font-size:12.5px;color:#7d756b;line-height:1.6;margin-bottom:13px;}
    .mfe-btn{background:#e85d4a;color:#fff;border:none;border-radius:11px;padding:9px 18px;
      font-size:13.5px;font-weight:700;font-family:inherit;cursor:pointer;}
    .tf-sec-note{font-size:11.5px;color:#8a8078;line-height:1.55;margin-top:7px;}
    .tf-sec-note[hidden]{display:none;}
    .tf-sec-note b{color:#c4452f;}

.write-form-hint{font-size:12px;font-weight:600;color:var(--jibu-text-3,#8a8a8a);margin-left:4px;}
.night-safe-options{flex-wrap:wrap;}

#cmpTrayBar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 84px; z-index: 3500; 
  display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 999px;
  background: #1a1a2e; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.28); font-size: 13px;

  white-space: nowrap; }

body.bldcmp-open #cmpTrayBar { display: none; }
body:has(#sidePanel.open) #cmpTrayBar,
body:has(#buildingPanel.open) #cmpTrayBar,
body:has(#squareBoardPage.open) #cmpTrayBar { display: none; }
#cmpTrayBar .ctb-n { font-weight: 700; }
#cmpTrayBar .ctb-go { border: 0; border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 800;
  background: #e85d4a; color: #fff; cursor: pointer; }
#cmpTrayBar .ctb-go:disabled { opacity: 0.45; cursor: default; }
#cmpTrayBar .ctb-clear { border: 0; background: none; color: #aab; font-size: 12px; cursor: pointer; }

    .detail-fav-row .share-icon-btn:first-of-type { margin-left: auto; }
    .cmp-add-btn { border-color: #c6d4ea; color: #2b5089; }
    .cmp-add-btn.active { background: #35629e; color: #fff; border-color: #35629e; }
    .cmp-go-btn { border: 0; background: #e85d4a; color: #fff; border-radius: 20px;
      padding: 7px 13px; font-size: 12.5px; font-weight: 800; cursor: pointer; font-family: inherit;
      white-space: nowrap; box-shadow: 0 2px 8px rgba(232,93,74,.28); }

body:has(.start-scrim) .mobile-tabbar { z-index: 4300; }
body:has(.start-scrim) header.header { z-index: 4300; }

#bldCompareOv { position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 1100;
  padding-top: 56px; background: #f8f6f0; display: flex; flex-direction: column; }
@media (max-width: 760px) {

  #bldCompareOv { top: 0; bottom: 0; padding-top: 62px; }
  #bldCompareOv .bc-scroll { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
}
body.bldcmp-open { overflow: hidden; }

body.bldcmp-open .top-home-filter { display: none; }

#bldCompareOv .bc-head { display: flex; align-items: center; gap: 10px; padding: 9px 16px;
  border-bottom: 1px solid #ece6da; background: #fff; }
#bldCompareOv .bc-logo { display: flex; align-items: center; margin-right: 2px; }
#bldCompareOv .bc-logo img { height: 20px; display: block; }
#bldCompareOv .bc-head b { font-size: 16px; }
#bldCompareOv .bc-note { font-size: 11px; color: #a89f90; }
#bldCompareOv .bc-close { margin-left: auto; border: 0; background: none; font-size: 18px; cursor: pointer; color: #6b6459; }

#bldCompareOv .bc-scroll { flex: 1; overflow: auto; -webkit-overflow-scrolling: touch; }
#bldCompareOv .bc-grid { max-width: 1120px; margin: 0 auto; }
#bldCompareOv .bc-grid { display: grid; grid-template-columns: 92px repeat(var(--bc-n), minmax(128px, 1fr));
  min-width: min-content; padding: 0 10px 30px; }

#bldCompareOv .bc-corner { position: sticky; left: 0; background: #f8f6f0; z-index: 4;
  border-bottom: 1px solid #ece6da; }
#bldCompareOv .bc-top { position: sticky; top: 0; background: #f8f6f0; z-index: 2; text-align: center;
  padding: 10px 8px 8px; border-bottom: 1px solid #ece6da; }

#bldCompareOv .bc-top img { height: 96px; max-width: 100%; width: auto;
  object-fit: contain; border-radius: 10px; display: block; margin: 0 auto; }

@media (min-width: 700px) { #bldCompareOv .bc-top img { height: 200px; border-radius: 14px; } }

@media (max-width: 480px) {
}
#bldCompareOv .bc-noimg { width: 100%; height: 96px; border-radius: 10px; background: #ece6da; }

#bldCompareOv .bc-name { font-size: 15px; font-weight: 800; margin-top: 9px; line-height: 1.35;
  word-break: keep-all; overflow-wrap: anywhere; display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden; }

#bldCompareOv .bc-map { display: block; width: 100%; margin: 7px auto 0; padding: 5px 4px;
  border: 0; background: none; color: #2b5089; font-size: 12.5px; font-weight: 700;
  cursor: pointer; border-radius: 8px; letter-spacing: -0.2px; }
#bldCompareOv .bc-map:hover { background: #eef2f8; }
#bldCompareOv .bc-lb { font-size: 13px; font-weight: 700; color: #6b6459; padding: 15px 6px 4px; word-break: keep-all;
  border-bottom: 1px solid #eeeeea; letter-spacing: -0.2px;
  position: sticky; left: 0; z-index: 3; background: #f8f6f0; }
#bldCompareOv .bc-cell { font-size: 15px; line-height: 1.45; padding: 14px 9px; border-bottom: 1px solid #eeeeea; word-break: keep-all; overflow-wrap: anywhere; text-align: center;
  overflow-wrap: break-word; }
#bldCompareOv .bc-cell b { font-size: 17px; color: #e85d4a; }
#bldCompareOv .bc-cell a { color: #2b5089; font-weight: 700; text-decoration: none; }
#bldCompareOv .bc-sub { display: block; font-size: 12.5px; color: #8b8577; margin-top: 3px; line-height: 1.4; }
#bldCompareOv .bc-na { color: #a89f90; }

#bldCompareOv .bc-hood { color: #2b5089; font-weight: 800; text-decoration: none; }
#bldCompareOv .bc-hood-warn { color: #c4452f; }

#bldCompareOv .bc-hoodcmp { display: block; max-width: 420px; margin: 4px auto 34px; text-align: center;
  border: 1.5px solid #e0e0da; border-radius: 12px; padding: 13px; background: #fff;
  color: #35629e; font-weight: 800; font-size: 15px; text-decoration: none; }
#bldCompareOv .bc-cell .bc-chip { margin: 1px; }

@media (max-width: 760px) {
  #bldCompareOv .bc-grid { grid-template-columns: repeat(var(--bc-n), minmax(0, 1fr));
    min-width: 0; padding: 0 10px 30px; }
  #bldCompareOv .bc-corner { display: none; }          
  #bldCompareOv .bc-lb { grid-column: 1 / -1;
    position: static; left: auto; z-index: auto;
    padding: 17px 4px 5px; text-align: left; border-bottom: 0;
    font-size: 12.5px; font-weight: 700; color: #8b8577; letter-spacing: -0.1px; }
  #bldCompareOv .bc-cell { padding: 11px 6px 13px; }

  #bldCompareOv .bc-hoodcmp { max-width: 260px; font-size: 14px; padding: 12px 10px; }
}
#bldCompareOv .bc-chip { display: inline-block; font-size: 12.5px; font-weight: 700; padding: 3px 8px;
  border-radius: 999px; background: #f0f0ea; color: #6b6459; margin: 0 3px 3px 0; }

#bldCompareOv .bc-warn { color: #1a1a2e; font-weight: 800; font-size: 13.5px; line-height: 1.45; }

.official-access { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 2px; }
.official-access span { font-size: 12px; font-weight: 600; color: #2b5089; background: #eef2f8;
  border-radius: 999px; padding: 4px 10px; letter-spacing: -0.2px; }

.of-rooms.fold .of-room.occupied { display: none; }
.of-rooms.fold.open .of-room.occupied { display: flex; }
.of-rooms-toggle {
  display: block; width: 100%; margin-top: 6px; padding: 9px 10px;
  border: 1px solid #e3e6ea; border-radius: 8px; background: #fafbfc;
  font-size: 12.5px; color: #58616f; cursor: pointer; font-family: inherit;
}
.of-rooms-toggle:hover { background: #f2f4f7; }
.of-rooms-toggle .ort-sub { color: #8a93a3; margin-left: 4px; }

.gate-card { border: 1px solid #dbe4f2; background: #f7f9fc; border-radius: 12px; padding: 11px 13px; margin: 10px 0 0; }
.gate-card .gate-g { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 12px; }
.gate-card.one .gate-g { grid-template-columns: 1fr; }
.gate-card .gate-i { display: flex; gap: 7px; align-items: center; min-width: 0; }
.gate-card .gate-ic { flex: none; width: 18px; height: 18px; border-radius: 50%;
  font-size: 11px; font-weight: 800; line-height: 18px; text-align: center; background: #f0ede6; color: #b0a898; }
.gate-card .gate-y .gate-ic { background: #e3f5ea; color: #1a8a4a; }
.gate-card .gate-n .gate-ic { background: #fbeceb; color: #b0392a; }
.gate-card .gate-c .gate-ic { background: #fdf6ec; color: #b45309; }
.gate-card .gate-t { font-size: 13.5px; font-weight: 700; color: #1a1a2e; line-height: 1.35; }
.gate-card .gate-n .gate-t { color: #b0392a; }

.commute-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 9px; margin-top: 9px;
  font-size: 12px; color: #3d4350; }
.commute-row .cmt-k { font-size: 11px; font-weight: 800; color: #a89f90; }
.commute-row .cmt-i { white-space: nowrap; }
.commute-row .cmt-i b { font-weight: 700; }
.commute-row .cmt-i i { font-style: normal; font-size: 10.5px; color: #a89f90; margin-left: 3px; }

.exit-cost { display: flex; gap: 8px; align-items: baseline; margin-top: 8px; padding-top: 8px;
  border-top: 1px dashed #ece6da; font-size: 12.5px; }
.exit-cost .exit-k { flex: none; font-size: 11px; font-weight: 800; color: #a89f90; }
.exit-cost .exit-v { color: #3d4350; }
.exit-cost .exit-sub { display: block; font-size: 11px; color: #a89f90; margin-top: 1px; }
.detail-addr .addr-hint { font-size: 10.5px; color: #b6b0a6; margin-left: 6px; white-space: nowrap; }

.rv-teaser:empty { display: none; }
.rv-teaser { background: #fff; border: 1px solid #dbe4f2; border-radius: 14px; padding: 13px 15px; margin: 12px 0;
  box-shadow: 0 2px 14px rgba(53,98,158,.07); }
.rv-teaser .rv-head { display: flex; align-items: center; gap: 7px; margin-bottom: 9px; }
.rv-teaser .rv-head b { font-size: 14px; }
.rv-teaser .rv-cnt { font-size: 11px; font-weight: 800; color: #2b5089; background: #eef2f8; border-radius: 999px; padding: 2px 8px; }
.rv-teaser .rv-traits { display: grid; gap: 7px; }
.rv-teaser .rvt { display: grid; grid-template-columns: 58px 1fr auto; gap: 9px; align-items: center; font-size: 12px; }
.rv-teaser .rvt-k { font-weight: 700; color: #8b8577; }
.rv-teaser .rvt-v { color: #3d4350; }
.rv-teaser .rvt-bar { height: 6px; border-radius: 99px; background: #f0ece4; overflow: hidden; }
.rv-teaser .rvt-bar i { display: block; height: 100%; border-radius: 99px; background: #35629e; }
.rv-teaser .rvt-n { font-size: 11px; font-weight: 800; color: #3d4350; font-variant-numeric: tabular-nums; }
.rv-teaser .rv-quote { border-left: 2.5px solid #dbe4f2; padding: 2px 0 2px 11px; margin-top: 11px;
  font-size: 13px; line-height: 1.65; color: #3d4350; }
.rv-teaser .rv-empty { font-size: 12.5px; line-height: 1.6; color: #8b8577; background: #faf9f6;
  border-radius: 10px; padding: 10px 12px; }
.rv-teaser .rv-empty b { color: #3d4350; }
.rv-teaser .rv-hood-btn { border: 0; background: none; color: #2b5089; font-weight: 800; font-size: 12px; line-height: 1; font-family: inherit; cursor: pointer; padding: 0; }
.rv-teaser .rv-ask { background: #f7f9fc; border: 1px dashed #c9d5e8; border-radius: 12px; padding: 12px; margin-top: 11px; text-align: center; }
.rv-teaser .rv-ask-t { font-size: 13px; font-weight: 800; }
.rv-teaser .rv-ask-s { font-size: 11.5px; color: #8b8577; margin: 4px 0 9px; line-height: 1.5; }
.rv-teaser .rv-ask-btn { width: 100%; border: 0; border-radius: 9px; padding: 10px; background: #35629e; color: #fff;
  font-weight: 800; font-size: 12.5px; line-height: 1; font-family: inherit; cursor: pointer; }

.hood-cards:empty { display: none; }
.hood-cards { display: grid; gap: 7px; margin: 12px 0; }
.hood-cards .hood-head { font-size: 12px; font-weight: 800; color: #a89f90; }
.hood-cards .hood-c { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: #fff; border: 1px solid #e7ebf0; border-radius: 12px; padding: 11px 13px; cursor: pointer;
  text-decoration: none; font-family: inherit; }
.hood-cards .hood-c:hover { background: #f7f9fc; }
.hood-cards .hood-l { flex: 1; min-width: 0; }

.hood-cards .hood-ph { position: relative; flex: none; width: 52px; height: 52px; border-radius: 9px;
  overflow: hidden; background: #f1efe9; display: flex; align-items: center; justify-content: center; }
.hood-cards .hood-ph > i { font-style: normal; font-size: 13px; font-weight: 800; color: #9a938a;
  line-height: 1.15; text-align: center; padding: 0 3px; word-break: keep-all; }
.hood-cards .hood-ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hood-cards .hood-s { display: block; font-size: 11.5px; font-weight: 700; color: #2b5089; margin-top: 3px; }
.hood-cards .hood-t { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 800; color: #1a1a2e; }
.hood-cards .hood-lv { flex: none; font-style: normal; font-size: 10px; font-weight: 800; color: #5a6472;
  background: #f2f4f7; border-radius: 5px; padding: 1px 5px; }
.hood-cards .hood-r { flex: none; display: flex; align-items: center; gap: 5px; }
.hood-cards .hood-r b { font-size: 11.5px; font-weight: 800; color: #2b5089; }
.hood-cards .hood-r i { font-style: normal; font-size: 21px; color: #b8b1a4; line-height: 1; }
#bldCompareOv .bc-no { color: #c4452f; font-weight: 800; }
#bldCompareOv .bc-hidden { font-size: 11px; color: #a89f90; line-height: 1.5; padding: 11px 8px 4px;
  border-top: 1px dashed #ece6da; margin-top: 4px; }

#bldCompareOv .bc-link { display: block; border: 0; background: none; padding: 0; text-align: center; width: 100%;
  color: #2b5089; font-weight: 700; font-size: 15px; line-height: 1.5; font-family: inherit; cursor: pointer; text-decoration: none; white-space: nowrap; }

#bldCompareOv .bc-link-main { margin-bottom: 3px; }

.init-cost .init-sub { display: inline; margin-left: 5px; font-size: 12px; font-weight: 400; color: #7a7266; }

#bldCompareOv .bce { padding: 14px 16px 30px; }
#bldCompareOv .bce-mine { font-size: 12px; font-weight: 800; color: #2b5089; background: #eef2f8;
  border-radius: 10px; padding: 9px 12px; margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
#bldCompareOv .bce-mine span { font-weight: 700; color: #6b6459; background: #fff; border-radius: 6px; padding: 2px 7px; }
#bldCompareOv .bce-h { font-size: 12px; font-weight: 800; color: #a89f90; margin-bottom: 8px; }
#bldCompareOv .bce-list { display: grid; gap: 7px; }
#bldCompareOv .bce-item { display: flex; align-items: center; gap: 9px; width: 100%; text-align: left;
  background: #fff; border: 1px solid #e0e0da; border-radius: 12px; padding: 11px 13px; cursor: pointer; font-family: inherit; }
#bldCompareOv .bce-nm { font-size: 13.5px; font-weight: 800; color: #1a1a2e; }
#bldCompareOv .bce-sub { flex: 1; min-width: 0; font-size: 11.5px; color: #8b8577;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

#bldCompareOv .bce-none { font-size: 12.5px; line-height: 1.6; color: #8b8577; background: #f8f6f0;
  border-radius: 10px; padding: 12px 13px; margin: 0; }

#bldCompareOv .bc-top { position: relative; }

#bldCompareOv .bc-top { display: flex; flex-direction: column; }
#bldCompareOv .bc-top .bc-map { margin-top: auto; }
#bldCompareOv .bc-del { position: absolute; top: 2px; right: 2px; z-index: 2; width: 22px; height: 22px;
  border: 0; border-radius: 50%; background: rgba(26,26,46,.55); color: #fff; font-size: 11px; line-height: 1;
  cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; }

#bldCompareOv .bc-del { padding-top: 1px; box-sizing: border-box; }
#bldCompareOv .bc-del:hover { background: rgba(26,26,46,.8); }
#bldCompareOv .bce-x { border: 0; background: none; color: #a89f90; font-size: 11px; cursor: pointer;
  padding: 0 0 0 5px; font-family: inherit; }

#bldCompareOv .bc-back { border: 0; background: none; font-size: 13.5px; font-weight: 800; line-height: 1.4;
  color: #6b6459; cursor: pointer; padding: 4px 10px 4px 6px; font-family: inherit;
  border-radius: 8px; flex: none; }
#bldCompareOv .bc-back:hover { background: #eeeeea; }
#bldCompareOv .bce-item { position: relative; }
#bldCompareOv .bce-ck { flex: none; width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid #e0e0da; background: #fff; }
#bldCompareOv .bce-item.on { border-color: #35629e; background: #eef2f8; }
#bldCompareOv .bce-item.on .bce-ck { border-color: #35629e; background: #35629e; }
#bldCompareOv .bce-item.on .bce-ck::after { content: '✓'; color: #fff; font-size: 13px; font-weight: 800;
  display: block; text-align: center; line-height: 17px; }

#bldCompareOv .bce-ph { flex: none; width: 56px; height: 56px; border-radius: 10px; overflow: hidden;
  background: #ece6da; display: block; }
#bldCompareOv .bce-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

#bldCompareOv .bce-ph-tx { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; padding: 6px 5px; font-size: 9.5px; font-style: normal; font-weight: 700;
  line-height: 1.25; color: #8d8471; text-align: center; word-break: break-all; }
#bldCompareOv .bce-price { display: block; font-size: 13.5px; font-weight: 800; color: #e85d4a; margin-top: 3px; }

#bldCompareOv .bce-price.none { color: #a89f90; font-weight: 700; font-size: 12.5px; }
#bldCompareOv .bce-txt { flex: 1; min-width: 0; display: block; }
#bldCompareOv .bce-nm { display: block; font-size: 14.5px; font-weight: 800; color: #1a1a2e; }
#bldCompareOv .bce-sub { display: block; font-size: 12px; color: #8b8577; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#bldCompareOv .bce-tag { flex: none; font-size: 11px; font-weight: 800; color: #c4452f; }
#bldCompareOv .bce-tag.off { color: #a89f90; font-weight: 700; }
#bldCompareOv .bce-foot { position: sticky; bottom: 0; padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0));
  background: linear-gradient(rgba(250,248,245,0), #f8f6f0 40%); }

@media (max-width: 760px) {
  #bldCompareOv .bce-foot { bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}
#bldCompareOv .bce-go { width: 100%; max-width: 420px; margin: 0 auto; display: block; border: 0;
  border-radius: 12px; padding: 14px; background: #35629e; color: #fff; font-weight: 800; font-size: 15px;
  font-family: inherit; cursor: pointer; }
#bldCompareOv .bce-go:disabled { background: #e0e0da; color: #a89f90; cursor: default; }

@media (min-width: 700px) {
  #bldCompareOv .bc-head { order: 0; }
  #bldCompareOv .bce-foot { order: 1; position: static; background: none;
    padding: 12px 16px 4px; border-bottom: 1px solid #ece6da; }
  #bldCompareOv .bc-scroll { order: 2; }
  #bldCompareOv .bce-list { grid-template-columns: 1fr 1fr; gap: 8px 10px; }
  #bldCompareOv .bce { max-width: 820px; margin: 0 auto; }

  #bldCompareOv .bce-go { max-width: 788px; }
}
