/* LocalPlus Socials — brand tokens, dashboard tokens, components.
   Brand tokens (--lp-*) mirror localplus.co's shipped CSS. Dashboard
   tokens (--ui-*) are derived for a dense work surface: smaller radius,
   1px borders instead of shadows, 14px body. */

@font-face { font-family: Inter; font-style: normal; font-weight: 400; font-display: swap;
  src: url(/static/fonts/inter-latin-400-normal.woff2) format("woff2"); }
@font-face { font-family: Inter; font-style: normal; font-weight: 500; font-display: swap;
  src: url(/static/fonts/inter-latin-500-normal.woff2) format("woff2"); }
@font-face { font-family: Inter; font-style: normal; font-weight: 600; font-display: swap;
  src: url(/static/fonts/inter-latin-600-normal.woff2) format("woff2"); }
@font-face { font-family: Inter; font-style: normal; font-weight: 700; font-display: swap;
  src: url(/static/fonts/inter-latin-700-normal.woff2) format("woff2"); }

:root {
  --lp-primary: #1F4D3A;
  --lp-primaryDark: #1A4131;
  --lp-accent: #D4683A;
  --lp-accent2: #E39D7F;
  --lp-bg: #F7F2EA;
  --lp-bgAlt: #EDE8E0;
  --lp-card: #FFFDF7;
  --lp-ink: #1A2B23;
  --lp-ink2: rgba(26, 43, 35, .85);
  --lp-muted: rgba(26, 43, 35, .68);
  --lp-border: rgba(26, 43, 35, .12);
  --lp-good: #2F7D5A;
  --lp-radius: 20px;
  --lp-container-max: 1200px;
  --lp-container-pad: 24px;
  --fs-h2: 28px;
  --fs-h3: 22px;
  --lp-shadow-card: 0 10px 32px #1a2b231f, 0 2px 8px #1a2b230f;

  --ui-radius: 10px;
  --ui-radius-sm: 7px;
  --ui-body: 14px;
  --ui-meta: 12px;
  --ui-label: 10.5px;
  --ui-space: 8px;
  --ui-sidebar: 240px;
  --ui-rail: 56px;
  --ui-topbar: 46px;
  --ui-drawer: 400px;
  --ui-shadow-raised: 0 24px 48px -16px #1430272e;
  --ui-accent-ink: #A64C22;
  --ui-page-pad: 24px;
}
@media (min-width: 640px) { :root { --lp-container-pad: 32px; --fs-h2: 32px; --fs-h3: 24px; } }
@media (min-width: 1024px) { :root { --lp-container-pad: 48px; --fs-h2: 40px; --fs-h3: 28px; } }

* { box-sizing: border-box; }
html { height: 100%; }
body {
  margin: 0; min-height: 100%;
  background: var(--lp-bg); color: var(--lp-ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--ui-body); font-weight: 500; line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--lp-primary); text-underline-offset: 2px; }
a:hover { color: var(--lp-primaryDark); }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.02em; margin: 0; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 50; }

/* ---- app frame: sidebar + work area ---- */
body.app { display: flex; min-height: 100vh; }
.sidebar {
  width: var(--ui-sidebar); flex-shrink: 0; position: sticky; top: 0; height: 100vh;
  background: var(--lp-primary); color: #fff;
  display: flex; flex-direction: column; padding: 14px 10px; gap: 4px;
}
.sidebar-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px 12px; }
.wordmark { font-weight: 700; letter-spacing: -.02em; font-size: 15px; color: #fff; text-decoration: none; }
.wordmark span { color: #f7f2ea99; font-weight: 500; }
.ws-label { font-size: var(--ui-label); text-transform: uppercase; letter-spacing: .08em;
            color: #f7f2ea99; padding: 10px 8px 4px; font-weight: 600; }
.ws-list { display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.ws-item { display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 8px;
           color: #f7f2eacc; text-decoration: none; font-weight: 500; min-height: 40px; }
.ws-item:hover { background: #ffffff14; color: #fff; }
.ws-item.is-active { background: #ffffff1f; color: #fff; }
.ws-item.is-paused { opacity: .55; }
.ws-item.ws-enrol { color: #f7f2ea99; }
.ws-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ws-empty { color: #f7f2ea99; font-size: var(--ui-meta); padding: 6px 8px; margin: 0; }
.sidebar-foot { margin-top: auto; padding: 8px; }
.sidebar .button-text { color: #f7f2ea99; }
.sidebar .button-text:hover { color: #fff; }

.work { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; gap: 22px; height: var(--ui-topbar);
  padding: 0 var(--ui-page-pad); background: var(--lp-card); border-bottom: 1px solid var(--lp-border);
}
.tabs { display: flex; gap: 22px; overflow-x: auto; scrollbar-width: none; height: 100%; }
.tabs::-webkit-scrollbar { display: none; }
.tab { display: flex; align-items: center; height: 100%; color: var(--lp-muted); font-weight: 500;
       text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; }
.tab:hover { color: var(--lp-ink); }
.tab.is-active { color: var(--lp-ink); border-color: var(--lp-accent); font-weight: 600; }
.actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.page { padding: 18px var(--ui-page-pad) 40px; max-width: 1360px; width: 100%; }
.page-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.page-head h1 { font-size: 19px; }
.page-sub { color: var(--lp-muted); font-size: var(--ui-meta); margin: 3px 0 0; }
.nav-toggle, .nav-close { display: none; }
.scrim { display: none; position: fixed; inset: 0; background: #1a2b2366; z-index: 20; }
body.nav-open .scrim, body.drawer-open .scrim { display: block; }

/* ---- avatars ---- */
.avatar { width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; object-fit: cover;
          display: inline-flex; align-items: center; justify-content: center;
          font-size: 10px; font-weight: 700; color: #fff; background: var(--lp-primary); }
.avatar-lg { width: 52px; height: 52px; border-radius: 12px; font-size: 18px; }
.avatar-lp { background: #fff; color: var(--lp-primary); }
.avatar-plus { background: transparent; border: 1px dashed #f7f2ea80; color: #f7f2ea99; }
img.avatar { background: #fff; padding: 2px; }

/* ---- cards, grids, tables ---- */
.card { background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: var(--ui-radius);
        padding: 12px 14px; }
.card h3 { font-size: var(--ui-label); text-transform: uppercase; letter-spacing: .07em;
           color: var(--lp-muted); font-weight: 600; margin-bottom: 8px; display: flex; gap: 8px; }
.card h3 a { margin-left: auto; text-transform: none; letter-spacing: 0; font-size: var(--ui-meta); }
.card + .card { margin-top: 12px; }
.grid > .card + .card { margin-top: 0; }
.grid { display: grid; gap: 12px; margin-bottom: 12px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.stat b { display: block; font-weight: 700; letter-spacing: -.02em; font-size: 24px; line-height: 1.1; }
.stat span { font-size: var(--ui-label); font-weight: 600; letter-spacing: .08em;
             text-transform: uppercase; color: var(--lp-muted); }
.table-wrap { background: var(--lp-card); border: 1px solid var(--lp-border);
              border-radius: var(--ui-radius); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 9px 12px; font-size: var(--ui-label); font-weight: 600;
     letter-spacing: .07em; text-transform: uppercase; color: var(--lp-muted);
     border-bottom: 1px solid var(--lp-border); }
td { padding: 10px 12px; border-bottom: 1px solid var(--lp-border); vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
.cell-name { display: flex; align-items: center; gap: 9px; font-weight: 600; }
.list { display: flex; flex-direction: column; gap: 8px; }
.row { display: flex; align-items: flex-start; gap: 10px; background: var(--lp-card);
       border: 1px solid var(--lp-border); border-radius: var(--ui-radius); padding: 10px 12px; }
.row .grow { flex: 1; min-width: 0; }
.row .title { font-weight: 600; }
.list label.row { cursor: pointer; gap: 12px; align-items: center; }
.list label.row input[type="radio"] { width: 18px; height: 18px; flex: 0 0 auto; margin: 0; }

/* ---- chips ---- */
.chip { display: inline-block; font-size: 10.5px; font-weight: 600; padding: 2px 7px;
        border-radius: 999px; white-space: nowrap; line-height: 1.5; }
.chip-ready, .chip-ultimate { background: #D4683A1f; color: var(--ui-accent-ink); }
.chip-posted, .chip-live, .chip-ok, .chip-published { background: #2F7D5A1f; color: var(--lp-good); }
.chip-scheduled, .chip-producing, .chip-publishing, .chip-syncing { background: #1F4D3A14; color: var(--lp-primary); }
.chip-failed { background: #D4683A2e; color: var(--ui-accent-ink); }
.chip-dismissed, .chip-paused, .chip-discarded { background: #1A2B2314; color: var(--lp-muted); }
.chip-no, .chip-never { background: #1A2B230d; color: var(--lp-muted); }
.dots span { display: inline-block; width: 8px; height: 8px; border-radius: 99px;
             margin-right: 4px; background: #1A2B2326; }
.dots span.on { background: var(--lp-good); }

/* ---- buttons, forms ---- */
button, .button { background: var(--lp-primary); color: #fff; border: 0; border-radius: 8px;
  padding: 7px 12px; cursor: pointer; font: inherit; font-size: var(--ui-meta); font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px; min-height: 32px;
  white-space: nowrap; transition: background-color .15s ease; }
button:hover, .button:hover { background: var(--lp-primaryDark); color: #fff; }
.primary, button.primary { background: var(--lp-accent); }
.primary:hover, button.primary:hover { background: #B8552B; }
.secondary, button.secondary { background: #fff; color: var(--lp-ink); border: 1px solid var(--lp-border); }
.secondary:hover, button.secondary:hover { background: var(--lp-bgAlt); color: var(--lp-ink); }
.button-text, button.button-text { background: none; color: var(--lp-primary); padding: 4px 6px; min-height: 0; }
.button-text:hover { background: none; text-decoration: underline; }
.icon-button { background: none; border: 1px solid var(--lp-border); color: var(--lp-ink);
               width: 34px; height: 34px; padding: 0; justify-content: center; border-radius: 8px; }
button[disabled], .button[disabled] { opacity: .5; cursor: not-allowed; }
button:focus-visible, .button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible { outline: 2px solid var(--lp-accent); outline-offset: 2px; }
input, select, textarea { padding: 8px 10px; border: 1px solid var(--lp-border);
  border-radius: 8px; font: inherit; font-size: var(--ui-body); background: #fff;
  color: var(--lp-ink); width: 100%; }
textarea { resize: vertical; }
input[type="checkbox"] { width: auto; }
.field { display: block; margin: 0 0 14px; }
.field > span.label { display: block; font-weight: 600; margin-bottom: 5px; font-size: var(--ui-meta); }
.field .req { color: var(--lp-accent); margin-left: 6px; font-weight: 600; font-size: 11px; }
.field small { display: block; color: var(--lp-muted); margin-top: 4px; font-size: var(--ui-meta); font-weight: 500; }
.form-row { display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap; }
.form-row .field { flex: 1; min-width: 180px; margin: 0; }
form.inline { display: inline; }
.msg { border-radius: 8px; padding: 8px 12px; margin: 0 0 14px; font-size: var(--ui-meta); font-weight: 600; }
.msg-ok { background: #2F7D5A1f; color: var(--lp-good); }
.msg-err { background: #D4683A1f; color: var(--ui-accent-ink); }
.muted { color: var(--lp-muted); font-size: var(--ui-meta); }
.error { color: var(--ui-accent-ink); }
.ok { color: var(--lp-good); }
.notice { border: 1px dashed var(--lp-border); border-radius: 8px; padding: 10px 12px;
          font-size: var(--ui-meta); color: var(--lp-muted); background: var(--lp-card); }

/* ---- filter chips (links) ---- */
.filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.filter { border: 1px solid var(--lp-border); border-radius: 999px; padding: 4px 10px;
          font-size: var(--ui-meta); font-weight: 600; color: var(--lp-muted);
          text-decoration: none; background: #fff; min-height: 28px; display: inline-flex; align-items: center; }
.filter:hover { color: var(--lp-ink); border-color: var(--lp-ink); }
.filter.is-active { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }

/* ---- drawer ---- */
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: var(--ui-drawer); max-width: 100vw; z-index: 30; }
.drawer[hidden] { display: none; }
.drawer-panel { height: 100%; background: var(--lp-card); border-left: 1px solid var(--lp-border);
                box-shadow: var(--ui-shadow-raised); display: flex; flex-direction: column; }
.drawer-close { position: absolute; top: 10px; right: 10px; }
.drawer-body { padding: 20px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.drawer-body h2 { font-size: 16px; padding-right: 40px; }
.drawer-foot { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; padding-top: 12px;
               border-top: 1px solid var(--lp-border); }
.drawer-body pre { white-space: pre-wrap; font: inherit; margin: 0; background: var(--lp-bg);
                   border-radius: 8px; padding: 10px 12px; }

/* ---- empty state ---- */
.empty { text-align: center; padding: 48px 20px; border: 1px dashed var(--lp-border);
         border-radius: var(--ui-radius); background: var(--lp-card); }
.empty svg { width: 56px; height: 56px; stroke: var(--lp-primary); fill: none; stroke-width: 1.5; margin-bottom: 10px; }
.empty h2 { font-size: 16px; margin-bottom: 4px; }
.empty p { color: var(--lp-muted); margin: 0 0 14px; }

/* ---- login ---- */
body.login-body { display: flex; justify-content: center; align-items: flex-start; padding-top: 15vh; }
.login-card { background: var(--lp-card); border: 1px solid var(--lp-border);
              border-radius: var(--lp-radius); box-shadow: var(--lp-shadow-card); padding: 28px; width: 320px; }
.login-card h1 { font-size: 20px; margin-bottom: 4px; }
.login-card p { color: var(--lp-muted); margin: 0 0 16px; }
.login-card input { margin: 0 0 12px; }
.login-card button { width: 100%; justify-content: center; }

/* ---- client brand page ---- */
.swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.swatch { width: 66px; font-size: 10px; }
.swatch i { display: block; height: 34px; border-radius: 6px; border: 1px solid var(--lp-border); }
.swatch b { display: block; font-weight: 600; margin-top: 3px; font-family: ui-monospace, Menlo, monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.swatch span { color: var(--lp-muted); font-family: ui-monospace, Menlo, monospace; }
.gradient-bar { height: 22px; border-radius: 6px; margin-top: 10px; }
.specimen-display { font-size: 24px; line-height: 1.1; font-weight: 800; margin: 0 0 6px; }
.specimen-body { margin: 0 0 6px; }
.logo-tiles { display: flex; gap: 8px; }
.logo-tiles div { flex: 1; height: 64px; border-radius: 6px; border: 1px solid var(--lp-border);
                  display: flex; align-items: center; justify-content: center; padding: 8px; }
.logo-tiles img { max-width: 100%; max-height: 100%; }
.logo-tiles img.favicon { width: 28px; height: 28px; }
dl.facts { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; font-size: var(--ui-meta); }
dl.facts dt { color: var(--lp-muted); } dl.facts dd { margin: 0; }
.voice { margin: 0 0 6px; font-size: var(--ui-meta); line-height: 1.45; }
.file-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-top: 1px solid var(--lp-border); font-size: var(--ui-meta); }
.file-row:first-of-type { border-top: 0; }
.file-row .kind { font-size: 9.5px; font-weight: 700; background: #1F4D3A14; color: var(--lp-primary); padding: 2px 5px; border-radius: 4px; min-width: 34px; text-align: center; }
.file-row .muted:last-child { margin-left: auto; }
.styletile .toc { display: flex; gap: 14px; flex-wrap: wrap; font-size: var(--ui-meta); font-weight: 600; margin-bottom: 6px; }
.prose { max-width: 760px; line-height: 1.6; font-weight: 400; }
.prose h2 { font-size: var(--fs-h3); margin-top: 32px; } .prose img { max-width: 100%; border-radius: 16px; }
.table-scroll { overflow-x: auto; }

/* ---- socials tiles ---- */
.tile { display: flex; flex-direction: column; gap: 8px; min-height: 150px; }
.tile-head { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.tile-head i { width: 22px; height: 22px; border-radius: 6px; display: inline-block; }
.tile-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; }
.tile-foot button { margin-left: auto; }
.tile-connect { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }

/* ---- feed platform avatars ---- */
.platform-reddit { background: #FF4500; } .platform-instagram { background: #E4405F; }
.platform-facebook { background: #1877F2; } .platform-linkedin { background: #0A66C2; }
.platform-youtube { background: #FF0000; } .platform-web { background: var(--lp-primary); }

/* ---- ready cards ---- */
.ready-card { display: flex; flex-direction: column; gap: 8px; }
.ready-card > .chip { align-self: flex-start; }
.ready-card .title a { color: var(--lp-ink); text-decoration: none; font-weight: 600; line-height: 1.3; }
.ready-card .title a:hover { text-decoration: underline; }
.icon-row { display: flex; gap: 6px; }
.icon-btn { position: relative; background: #fff; border: 1px solid var(--lp-border); border-radius: 8px;
            padding: 6px 7px 4px; cursor: pointer; line-height: 0; min-height: 0; }
.icon-btn:hover { background: var(--lp-bgAlt); border-color: var(--lp-ink); }
.mini-dot { position: absolute; right: -3px; top: -3px; width: 9px; height: 9px; border-radius: 50%;
            background: var(--lp-border); border: 2px solid var(--lp-card); }
.mini-dot.posted { background: var(--lp-good); }
.card-foot { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--lp-border); }
.platform-head { display: flex; align-items: center; gap: 8px; padding-right: 44px; }
.platform-head h2 { flex: 1; }

/* ---- section titles ---- */
.section-title { font-size: 15px; margin: 18px 0 10px; }

/* ---- articles ---- */
.brief { max-width: 760px; }
.field.check { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.field.check input { width: auto; }
.stage-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.stage-log { list-style: none; padding: 0; margin: 0; font-size: var(--ui-meta); }
.stage-log li { padding: 4px 0; border-top: 1px solid var(--lp-border); }
.review-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 16px; align-items: start; }
@media (max-width: 1023px) { .review-grid { grid-template-columns: 1fr; } }
.review-side .card + .card { margin-top: 12px; }
.callout { background: var(--lp-bgAlt); border: 1px solid var(--lp-border); border-left: 3px solid var(--lp-primary); border-radius: var(--ui-radius); padding: 12px 20px; margin: 20px 0; }
.callout.tip { border-left-color: var(--lp-good); } .callout.warning { border-left-color: var(--lp-accent); }
.callout-label { display: block; font-size: var(--ui-label); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--lp-muted); }
.rail { font-size: var(--ui-meta); margin: 6px 0; }
.creative img { width: 100%; border-radius: 8px; margin: 8px 0; }
.creative pre { white-space: pre-wrap; font-size: 12px; max-height: 240px; overflow: auto; }
.creative form { display: flex; gap: 8px; margin: 6px 0; } .creative form input { flex: 1; }

/* ---- client articles ---- */
.idea { display: flex; flex-direction: column; gap: 6px; }
.idea .title { font-weight: 600; line-height: 1.3; }
.pr-block { margin-bottom: 10px; display: flex; flex-direction: column; gap: 6px; }
.pr-block form { display: inline; }

/* ---- responsive ---- */
@media (max-width: 1023px) {
  .sidebar { width: var(--ui-rail); padding: 12px 6px; }
  .sidebar .ws-name, .sidebar .ws-label, .sidebar .ws-empty, .sidebar .wordmark span,
  .sidebar .wordmark-text { display: none; }
  .sidebar .wordmark { font-size: 13px; }
  .sidebar-head { justify-content: center; padding: 4px 0 12px; }
  .ws-item { justify-content: center; padding: 8px 0; }
  .sidebar-foot { display: none; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  :root { --ui-page-pad: 18px; }
}
@media (max-width: 639px) {
  .sidebar { position: fixed; left: 0; top: 0; width: var(--ui-sidebar); transform: translateX(-100%);
             transition: transform .18s ease; z-index: 25; padding: 14px 10px; }
  body.nav-open .sidebar { transform: none; }
  .sidebar .ws-name, .sidebar .ws-label, .sidebar .ws-empty, .sidebar .wordmark span,
  .sidebar .wordmark-text { display: initial; }
  .sidebar-head { justify-content: space-between; padding: 4px 8px 12px; }
  .ws-item { justify-content: flex-start; padding: 7px 8px; }
  .sidebar-foot { display: block; }
  .nav-toggle, .nav-close { display: inline-flex; }
  .topbar { gap: 12px; }
  .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
  .drawer { width: 100vw; }
  .drawer-panel { border-left: 0; }
  :root { --ui-page-pad: 14px; }
  /* six client tabs must fit a 390px phone beside the menu button */
  .tabs { gap: 8px; }
  .tab { padding: 0 1px; font-size: 13px; }
  .topbar { gap: 8px; padding: 0 10px; }
  /* tables become stacked cards; the header row is read from data-label */
  table.stack, table.stack tbody, table.stack tr, table.stack td { display: block; width: 100%; }
  table.stack thead { display: none; }
  table.stack tr { border-bottom: 1px solid var(--lp-border); padding: 6px 0; }
  table.stack td { border: 0; padding: 4px 12px; display: flex; gap: 10px; }
  table.stack td::before { content: attr(data-label); flex: 0 0 90px; color: var(--lp-muted);
                           font-size: var(--ui-label); text-transform: uppercase; letter-spacing: .07em;
                           font-weight: 600; padding-top: 3px; }
}

.share-thumb { display: block; max-width: 100%; border-radius: var(--ui-radius); margin: 10px 0 6px;
               border: 1px solid var(--lp-border); }
