/* Shared base theme for huiben storybook pages. */
  :root {
    --cream: #FFF8F0;
    --cream-dark: #FFEEDC;
    --warm-white: #FFF3E8;
    --coral: #FF8C69;
    --coral-deep: #FF6B4A;
    --coral-soft: #FFB499;
    --coral-light: #FFD4C5;
    --mint: #7ECFC0;
    --mint-dark: #4AAE9F;
    --mint-pale: #E8F9F6;
    --honey: #FFB347;
    --honey-pale: #FFF4DD;
    --lavender: #C9A0DC;
    --lavender-pale: #EDE0F5;
    --peach-line: #FFE4CC;
    --green-sprout: var(--coral);
    --green-dark: var(--coral-deep);
    --green-light: var(--coral-soft);
    --green-pale: var(--peach-line);
    --yellow: var(--honey);
    --yellow-dark: #E39A28;
    --brown: #5D4E37;
    --brown-light: #8B7355;
    --text: #5D4E37;
    --text-light: #8B7355;
    --white: #FFFFFF;
    --shadow: rgba(255, 140, 105, 0.18);
    --shadow-strong: rgba(255, 107, 74, 0.28);
    --radius: 22px;
    --radius-sm: 12px;
    --radius-xs: 8px;

    --ink: var(--text);
    --muted: var(--text-light);
    --line: var(--peach-line);
    --soft: var(--warm-white);
    --surface: var(--white);
    --teal: var(--mint-dark);
    --amber: var(--honey);
    --rose: var(--coral);
  }

  * {
    box-sizing: border-box;
  }

  [hidden] {
    display: none !important;
  }

  html {
    margin: 0;
    padding: 0;
    background: var(--cream);
  }

  body {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text) !important;
    font-family: 'Noto Sans SC', 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  }

  body:not(.mengya-redesign) {
    background:
      radial-gradient(circle at 5% 8%, rgba(255, 180, 153, 0.45), transparent 34%),
      radial-gradient(circle at 96% 43%, rgba(126, 207, 192, 0.34), transparent 30%),
      radial-gradient(circle at 52% 96%, rgba(255, 179, 71, 0.26), transparent 26%),
      var(--cream) !important;
  }

  body:not(.mengya-redesign)::before,
  body:not(.mengya-redesign)::after {
    content: "";
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(74px);
    opacity: 0.28;
  }

  body:not(.mengya-redesign)::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    background: var(--mint);
    animation: hbFloatA 8s ease-in-out infinite;
  }

  body:not(.mengya-redesign)::after {
    width: 200px;
    height: 200px;
    left: -42px;
    bottom: -42px;
    background: var(--lavender);
    animation: hbFloatB 10s ease-in-out infinite;
  }

  @keyframes hbFloatA {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
  }

  @keyframes hbFloatB {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
  }

  a,
  button {
    color: inherit;
    text-decoration: none;
    font: inherit;
  }

  .header,
  .hb-page-header {
    position: relative;
    z-index: 10;
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none;
    padding: 0 24px;
  }

  .header-inner {
    max-width: 900px;
    height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important;
    color: transparent;
    font-size: 0;
    box-shadow: none !important;
  }

  .logo-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .logo-text {
    font-family: 'ZCOOL KuaiLe', 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--coral-deep) !important;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .hb-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--text-light);
    font-size: 13px;
  }

  .main,
  .app-shell,
  .sheet {
    position: relative;
    z-index: 5;
  }

  .main,
  .app-shell {
    width: min(1100px, calc(100% - 32px)) !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 40px 0 80px !important;
  }

  .sheet {
    width: min(1040px, calc(100% - 32px));
    margin: 28px auto 64px;
    padding: 28px;
  }

/* Shared header and login modal. */
    .hb-page-header {
      position: relative;
      z-index: 10;
      background: transparent !important;
      border-bottom: 0 !important;
      box-shadow: none !important;
      backdrop-filter: none;
      padding: 0 24px;
    }
    .hb-page-header .header-inner {
      max-width: 900px;
      height: 84px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .hb-page-header .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: inherit;
      text-decoration: none;
    }
    .hb-page-header .logo-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: transparent;
      color: transparent;
      font-size: 0;
      box-shadow: none;
    }
    .hb-page-header .logo-icon img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .hb-page-header .logo-text {
      font-family: 'ZCOOL KuaiLe', 'Nunito', 'Noto Sans SC', sans-serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--coral-deep, #FF6B4A);
      letter-spacing: 1px;
      white-space: nowrap;
    }
    .hb-header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      color: var(--text-light, #8B7355);
      font-size: 13px;
    }
    .hb-header-actions [data-huiben-auth-nav] {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }
    .hb-header-actions .button {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 50px;
      padding: 8px 18px;
      background: transparent;
      color: var(--text-light, #8B7355);
      font-family: 'Noto Sans SC', sans-serif;
      font-size: 13px;
      font-weight: 500;
      line-height: 1;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      box-shadow: none;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .hb-header-actions .button.secondary {
      border: 0 !important;
      background: transparent !important;
      color: var(--text-light, #8B7355) !important;
      box-shadow: none !important;
    }
    .hb-header-actions .button:hover,
    .hb-header-actions .hb-header-link.active,
    .hb-header-actions .hb-header-link[aria-current="page"] {
      background: var(--coral, #FF8C69) !important;
      color: #fff !important;
      box-shadow: 0 6px 20px rgba(255, 140, 105, 0.18) !important;
      transform: translateY(-1px);
    }
    .hb-contact-qq-link {
      position: fixed;
      right: 24px;
      bottom: 28px;
      z-index: 900;
      width: 132px;
      display: block;
      border: 0;
      padding: 0;
      background: transparent;
      cursor: pointer;
      line-height: 0;
      filter: drop-shadow(0 8px 18px rgba(255, 101, 76, 0.20));
      transition: transform 0.18s ease, filter 0.18s ease;
    }
    .hb-contact-qq-link:hover {
      transform: translateY(-2px);
      filter: drop-shadow(0 10px 22px rgba(255, 101, 76, 0.28));
    }
    .hb-contact-qq-link img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }
    .hb-contact-panel {
      position: fixed;
      right: 24px;
      bottom: 100px;
      z-index: 902;
      width: min(320px, calc(100vw - 28px));
      border: 1px solid rgba(255, 205, 188, 0.95);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.985);
      box-shadow: 0 20px 48px rgba(93, 78, 55, 0.18);
      padding: 13px 14px 15px;
      color: var(--text, #5D4E37);
    }
    .hb-contact-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 11px;
    }
    .hb-contact-panel h3 {
      margin: 0;
      color: var(--text, #5D4E37);
      font-size: 18px;
      font-weight: 900;
      line-height: 1.25;
    }
    .hb-contact-panel-close {
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      border: 0;
      border-radius: 50%;
      background: #fff3e8;
      color: var(--text-light, #8B7355);
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }
    .hb-contact-methods {
      display: grid;
      gap: 12px;
    }
    .hb-contact-method {
      display: grid;
      justify-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 228, 204, 0.95);
      border-radius: 16px;
      background: #fff8f0;
      padding: 14px 12px;
      text-align: center;
    }
    .hb-contact-method-qr {
      padding-top: 12px;
    }
    .hb-contact-method-qq {
      padding: 13px 12px 14px;
      gap: 7px;
    }
    .hb-contact-method strong {
      color: var(--text, #5D4E37);
      font-size: 17px;
      font-weight: 900;
      line-height: 1.2;
    }
    .hb-contact-method span {
      color: var(--text-light, #8B7355);
      font-size: 12px;
      line-height: 1.45;
    }
    .hb-contact-method .hb-contact-label {
      color: var(--text-light, #8B7355);
      font-size: 12px;
      line-height: 1.2;
    }
    .hb-contact-qr-frame {
      width: 158px;
      height: 158px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 8px 18px rgba(93, 78, 55, 0.06);
    }
    .hb-contact-qr {
      width: 146px;
      height: 146px;
      display: block;
      border-radius: 8px;
      background: #fff;
    }
    .hb-contact-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 2px;
    }
    .hb-contact-copy,
    .hb-contact-open {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      min-width: 72px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      cursor: pointer;
      padding: 8px 17px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
      text-decoration: none;
    }
    .hb-contact-copy {
      min-width: 104px;
      background: linear-gradient(135deg, var(--coral, #FF8C69), var(--coral-deep, #FF6B4A));
      box-shadow: 0 7px 16px rgba(255, 107, 74, 0.20);
    }
    .hb-contact-open {
      background: #5D4E37;
      box-shadow: 0 6px 16px rgba(93, 78, 55, 0.16);
    }
    .hb-contact-toast {
      position: fixed;
      right: 24px;
      bottom: 100px;
      z-index: 903;
      max-width: min(320px, calc(100vw - 32px));
      border: 1px solid rgba(255, 212, 197, 0.95);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 14px 34px rgba(93, 78, 55, 0.16);
      padding: 10px 14px;
      color: var(--text, #5D4E37);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.5;
    }
    .hb-auth-modal-mask {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background:
        radial-gradient(circle at 20% 12%, rgba(255, 179, 153, 0.24), transparent 34%),
        radial-gradient(circle at 84% 42%, rgba(126, 207, 192, 0.18), transparent 34%),
        rgba(96, 80, 58, 0.32);
      backdrop-filter: blur(12px);
    }
    .hb-auth-modal-mask.show {
      display: flex;
    }
    .hb-auth-modal {
      position: relative;
      width: min(600px, calc(100vw - 32px));
      border: 1.5px solid rgba(255, 204, 173, 0.92);
      border-radius: 28px;
      background:
        radial-gradient(circle at 16% 20%, rgba(255, 243, 232, 0.84), transparent 30%),
        radial-gradient(circle at 86% 54%, rgba(255, 243, 232, 0.78), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 250, 246, 0.985));
      box-shadow: 0 30px 76px rgba(93, 78, 55, 0.17), 0 18px 42px rgba(255, 140, 105, 0.16);
      padding: 104px 42px 40px;
      overflow: visible;
      text-align: center;
      transform: scale(0.8);
      transform-origin: center;
    }
    .hb-auth-modal::before,
    .hb-auth-modal::after {
      content: "";
      position: absolute;
      z-index: 0;
      bottom: 0;
      width: 118px;
      height: 100px;
      opacity: 0.72;
      pointer-events: none;
    }
    .hb-auth-modal::before {
      left: 0;
      border-bottom-left-radius: 28px;
      background:
        radial-gradient(ellipse at 22% 92%, rgba(255, 140, 105, 0.88) 0 22%, transparent 23%),
        radial-gradient(ellipse at 50% 82%, rgba(255, 179, 153, 0.72) 0 18%, transparent 19%),
        radial-gradient(ellipse at 72% 88%, rgba(255, 224, 194, 0.80) 0 16%, transparent 17%);
    }
    .hb-auth-modal::after {
      right: 0;
      border-bottom-right-radius: 28px;
      background:
        radial-gradient(ellipse at 78% 92%, rgba(255, 140, 105, 0.88) 0 22%, transparent 23%),
        radial-gradient(ellipse at 50% 82%, rgba(255, 179, 153, 0.72) 0 18%, transparent 19%),
        radial-gradient(ellipse at 28% 88%, rgba(255, 224, 194, 0.80) 0 16%, transparent 17%);
    }
    .hb-auth-modal-icon {
      position: absolute;
      z-index: 2;
      top: -54px;
      left: 50%;
      width: 112px;
      height: 112px;
      transform: translateX(-50%);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #fff 0%, #fff6ee 100%);
      border: 10px solid rgba(255, 243, 232, 0.98);
      box-shadow: 0 16px 38px rgba(255, 140, 105, 0.20);
    }
    .hb-auth-modal-icon::after {
      content: "✦";
      position: absolute;
      top: 14px;
      right: -26px;
      color: var(--honey, #FFB347);
      font-size: 23px;
      text-shadow: 22px 28px 0 var(--honey, #FFB347);
    }
    .hb-auth-modal-icon span {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: radial-gradient(circle at 50% 35%, #806454, #4e3c31 72%);
      color: #fff;
      font-size: 40px;
      line-height: 1;
    }
    .hb-auth-modal h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 8px;
      color: var(--text, #5D4E37);
      font-size: 38px;
      font-weight: 900;
      line-height: 1.2;
      text-align: center;
    }
    .hb-auth-modal p {
      position: relative;
      z-index: 1;
      margin: 0 0 22px;
      color: var(--text-light, #8B7355);
      font-size: 17px;
      font-weight: 800;
      line-height: 1.5;
      text-align: center;
    }
    .hb-auth-qr-box {
      position: relative;
      z-index: 1;
      box-sizing: border-box;
      width: 310px;
      height: 310px;
      margin: 0 auto 16px;
      padding: 18px;
      border: 1.5px solid rgba(255, 169, 145, 0.70);
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.94);
      overflow: hidden;
      color: var(--text-light, #8B7355);
      text-align: center;
      font-size: 14px;
      font-weight: 800;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(255, 140, 105, 0.08);
    }
    .hb-auth-qr-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #fff;
    }
    .hb-auth-status {
      position: relative;
      z-index: 1;
      min-height: 42px;
      width: fit-content;
      min-width: 132px;
      margin: 0 auto 18px;
      padding: 0 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      background: linear-gradient(135deg, var(--coral, #FF8C69), var(--coral-deep, #FF6B4A));
      color: #fff;
      font-size: 15px;
      font-weight: 900;
      text-align: center;
      box-shadow: 0 12px 26px rgba(255, 107, 74, 0.24);
    }
    .hb-auth-status::before {
      content: "";
      width: 16px;
      height: 16px;
      border: 3px dotted currentColor;
      border-radius: 50%;
      animation: hbAuthSpin 1.1s linear infinite;
    }
    .hb-auth-status.error {
      background: rgba(255, 243, 232, 0.98);
      color: var(--coral-deep, #FF6B4A);
      box-shadow: none;
      border: 1.5px solid rgba(255, 140, 105, 0.36);
    }
    .hb-auth-status.error::before {
      display: none;
    }
    @keyframes hbAuthSpin {
      to { transform: rotate(360deg); }
    }
    .hb-auth-modal-actions {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 0;
    }
    .hb-auth-modal-actions .button {
      min-width: 214px;
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1.5px solid rgba(255, 169, 145, 0.66);
      border-radius: 50px;
      padding: 0 18px;
      background: rgba(255, 255, 255, 0.86);
      color: var(--text, #5D4E37);
      font-family: 'Noto Sans SC', sans-serif;
      font-size: 16px;
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      box-shadow: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }
    .hb-auth-modal-actions .button:hover {
      transform: translateY(-1px);
      border-color: var(--coral, #FF8C69);
      background: var(--warm-white, #FFF3E8);
      box-shadow: 0 10px 22px rgba(255, 140, 105, 0.13);
    }
    .hb-auth-modal-actions .button.secondary {
      border: 1.5px solid var(--peach-line, #FFE4CC);
      background: rgba(255, 255, 255, 0.86);
      color: var(--text, #5D4E37);
      box-shadow: none;
    }
    .hb-auth-modal-actions .button.secondary:hover {
      border-color: var(--coral-light, #FFD4C5);
      background: var(--warm-white, #FFF3E8);
      box-shadow: none;
    }
    .hb-auth-refresh-icon {
      font-size: 20px;
      line-height: 1;
    }
    .hb-auth-helper {
      position: relative;
      z-index: 1;
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--text, #5D4E37);
      font-size: 14px;
      font-weight: 800;
    }
    .hb-auth-wechat-icon {
      position: relative;
      width: 26px;
      height: 20px;
      flex: 0 0 auto;
    }
    .hb-auth-wechat-icon::before,
    .hb-auth-wechat-icon::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      background: #16bf69;
    }
    .hb-auth-wechat-icon::before {
      left: 0;
      top: 2px;
      width: 17px;
      height: 14px;
    }
    .hb-auth-wechat-icon::after {
      right: 0;
      bottom: 1px;
      width: 15px;
      height: 12px;
      box-shadow: -6px -2px 0 -4px #fff;
    }
    .hb-auth-modal-close {
      position: absolute;
      z-index: 3;
      top: 22px;
      right: 22px;
      width: 44px;
      height: 44px;
      border: 1.5px solid rgba(255, 169, 145, 0.58);
      border-radius: 50%;
      background: rgba(255, 250, 246, 0.94);
      color: var(--text, #5D4E37);
      font-size: 0;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: transform 0.18s ease, background 0.18s ease;
    }
    .hb-auth-modal-close::before,
    .hb-auth-modal-close::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 22px;
      height: 4px;
      border-radius: 999px;
      background: currentColor;
    }
    .hb-auth-modal-close::before {
      transform: translate(-50%, -50%) rotate(45deg);
    }
    .hb-auth-modal-close::after {
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    .hb-auth-modal-close:hover {
      background: rgba(255, 243, 232, 0.98);
      transform: rotate(6deg);
    }
    @media (min-width: 821px) and (max-height: 760px) {
      .hb-auth-modal-mask {
        padding-top: 66px;
        padding-bottom: 18px;
      }
      .hb-auth-modal {
        width: min(520px, calc(100vw - 32px));
        padding: 72px 36px 28px;
      }
      .hb-auth-modal-icon {
        top: -44px;
        width: 96px;
        height: 96px;
        border-width: 9px;
      }
      .hb-auth-modal-icon span {
        width: 64px;
        height: 64px;
        font-size: 34px;
      }
      .hb-auth-modal h3 {
        font-size: 30px;
        margin-bottom: 6px;
      }
      .hb-auth-modal p {
        margin-bottom: 12px;
        font-size: 15px;
      }
      .hb-auth-qr-box {
        width: 250px;
        height: 250px;
        margin-bottom: 10px;
        padding: 15px;
      }
      .hb-auth-status {
        min-height: 36px;
        margin-bottom: 12px;
        font-size: 14px;
      }
      .hb-auth-modal-actions .button {
        min-height: 46px;
      }
      .hb-auth-helper {
        margin-top: 12px;
        font-size: 13px;
      }
    }
    @media (max-width: 820px) {
      .hb-page-header .header-inner {
        height: auto;
        min-height: 84px;
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
      }
      .hb-header-actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
      }
      .hb-header-actions [data-huiben-auth-nav] {
        flex-wrap: wrap;
        justify-content: flex-start;
      }
      .hb-contact-qq-link {
        right: 14px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: 118px;
      }
      .hb-contact-panel {
        right: 14px;
        bottom: calc(72px + env(safe-area-inset-bottom));
      }
      .hb-contact-toast {
        right: 14px;
        bottom: calc(72px + env(safe-area-inset-bottom));
      }
      .hb-auth-modal {
        width: min(100%, 520px);
        padding: 82px 24px 28px;
      }
      .hb-auth-modal h3 {
        font-size: 30px;
      }
      .hb-auth-modal p {
        font-size: 15px;
      }
      .hb-auth-qr-box {
        width: min(276px, 76vw);
        height: min(276px, 76vw);
      }
    }

/* Shared footer. */
        html {
            min-height: 100%;
        }
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .site-footer {
            position: relative;
            z-index: 5;
            width: min(1100px, calc(100% - 32px));
            margin: auto auto 0;
            padding: 0 0 28px;
            color: var(--text-light, #8B7355);
            font-size: 13px;
            line-height: 1.8;
            text-align: center;
        }
        .site-footer-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 8px 14px;
        }
        .site-footer a {
            color: inherit;
            text-decoration: none;
        }
