/* lp-showcase.css — Camika Showcase landing (`/showcase`)
 *
 * Loaded ALONGSIDE lp-home.css so header / footer / lang dropdown / theme
 * switcher / contact toast styling is reused. This file only owns the
 * page-specific sections:
 *   - .lpsc-head      (breadcrumb + bilingual h1 + stats + toolbar)
 *   - .lpsc-featured  (3-tile editors' pick strip with cover gradients)
 *   - .lpsc-browse    (4-col grid + 12 mock cards + pager)
 *   - .lpsc-cta       (submit-work CTA strip)
 *
 * Namespace `.lpsc-*` — collision-free with `.lphome-*` (home) and other lp pages.
 * border-radius: 0 everywhere (CLAUDE.md global Rule #11).
 * Inherits P5 tokens from lp-home.css via :root[data-page="lp"] already declared.
 */

/* Active-state token for toolbar tabs / view toggle / pager.
   light → ink fill (matches the mockup);
   dark → brand red, because --p5-text inverts to near-white in dark theme
   which would otherwise produce an unreadable white-on-white active button. */
:root[data-page="lp"] {
  --lpsc-active-bg: #1a1a1a;
  --lpsc-active-fg: #ffffff;
  /* Persona-style ghost / motif tokens (light theme baseline) */
  --lpsc-ghost-stroke: rgba(20, 20, 26, 0.25);
  --lpsc-scanline: rgba(0, 0, 0, 0.06);
  --lpsc-motif-strong: 0.62;
  --lpsc-motif-faint:  0.42;
}
:root[data-page="lp"][data-theme="dark"] {
  --lpsc-active-bg: var(--p5-red);
  --lpsc-active-fg: #ffffff;
  --lpsc-ghost-stroke: rgba(255, 255, 255, 0.5);
  --lpsc-scanline: rgba(0, 0, 0, 0.18);
  --lpsc-motif-strong: 0.85;
  --lpsc-motif-faint:  0.55;
}

/* Dark-theme pure-white override — the shared lp-home.css token
   --p5-text resolves to #e8e8e8 (slightly off-white for soft reading on
   blogs/marketing), but the Persona showcase design calls for pure #fff
   on display headings + stats + section H2 + active crumb + marquee
   non-dimmed items. Light theme inherits --p5-text untouched. */
:root[data-page="lp"][data-theme="dark"] .lpsc-h1,
:root[data-page="lp"][data-theme="dark"] .lpsc-stat-n,
:root[data-page="lp"][data-theme="dark"] .lpsc-feat-head h2,
:root[data-page="lp"][data-theme="dark"] .lpsc-browse-head h2,
:root[data-page="lp"][data-theme="dark"] .lpsc-marquee-item,
:root[data-page="lp"][data-theme="dark"] .lpsc-crumb-now {
  color: #ffffff;
}
:root[data-page="lp"][data-theme="dark"] .lpsc-marquee-dim { color: var(--p5-muted); }
:root[data-page="lp"][data-theme="dark"] .lpsc-marquee-red { color: var(--p5-red); }

/* ─── Shared utilities ─────────────────────────────── */
.lpsc-wrap {
  /* Per design spec: max-width 1440 + padding 32 = 1376px content area.
     On viewports >= 1440 the content stays fixed at 1376px (large margin
     auto on both sides). On laptops (~1366) the wrap fills viewport minus
     64px padding (= 1302px content) — slightly tighter but matches the
     design source `.shell { max-width: 1440px; padding: 0 32px; }`. */
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.lpsc-mono {
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.lpsc-h-en {
  color: var(--p5-red);
  font-family: 'Playfair Display', 'DM Serif Display', 'Noto Serif SC', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  font-style: italic;
}

/* ─── Page head (breadcrumb / h1 / stats / marquee + diagonal motif) ─── */
.lpsc-head {
  position: relative;
  /* padding-bottom: 0 because marquee sits flush at the head's bottom
     edge — the gap to tabs-wrap is provided by tabs-wrap's margin-top.
     The motif (::after) extends naturally across the entire head
     including the marquee region (kept inside head per design spec). */
  padding: 64px 0 0;
  background: var(--p5-bg);
  /* No border-bottom — marquee's own border-bottom serves as the visual
     terminator of the head region. Adding head's own border would
     double-line directly under marquee. */
  /* overflow: hidden so the diagonal motif's `right: -8%; width: 60%`
     absolute box can't extend past viewport and trigger horizontal
     scrolling. The motif is clipped to head's bounding box, which now
     includes the marquee strip so it visually crosses through it. */
  overflow: hidden;
}
/* Diagonal red double-slash motif at top-right (Persona signature). */
.lpsc-head::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 60%;
  height: 140%;
  background: linear-gradient(105deg,
    transparent 0%, transparent 48%,
    var(--p5-red) 48%, var(--p5-red) 48.35%,
    transparent 48.35%, transparent 50%,
    var(--p5-red) 50%, var(--p5-red) 50.12%,
    transparent 50.12%);
  opacity: var(--lpsc-motif-strong);
  transform: rotate(-2deg);
  pointer-events: none;
  z-index: 0;
}
.lpsc-head > .lpsc-wrap { z-index: 2; }

/* Body-level fence against any other lp page section that might overflow
   horizontally (defensive — without it, e.g. the marquee track during the
   first 16ms of animation can briefly extend past viewport on some
   browsers). Vertical scroll unaffected. */
:root[data-page="lp"] body { overflow-x: hidden; }

.lpsc-crumb {
  font-size: 11px;
  color: var(--p5-muted);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lpsc-crumb .lpsc-mono {
  color: var(--p5-text-secondary);
}
.lpsc-crumb-sep {
  color: var(--p5-red);
}
.lpsc-crumb-now { color: var(--p5-text); }

.lpsc-head-grid {
  display: grid;
  /* Narrower side rail (was clamp 300–380) so the 1fr column has enough
     room for "来自创作者的" (6 CJK chars × ~152px = ~912px) to render
     on one line at 1366+ viewports. On laptop 1366 the 1fr column comes
     out to ~961px, on desktop 1920 it's ~988px — both > 912px ✓. */
  grid-template-columns: minmax(0, 1fr) clamp(280px, 22vw, 340px);
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
}

.lpsc-h1 {
  font-family: 'Oswald', 'Noto Sans SC', sans-serif;
  font-size: clamp(56px, 10vw, 152px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0;
  color: var(--p5-text);
  text-transform: uppercase;
}
.lpsc-h1-line { display: block; }
.lpsc-h1-line2 {
  display: flex;
  align-items: baseline;
  gap: 0.06em;
  flex-wrap: wrap;
}
.lpsc-h1 .lpsc-h-en {
  font-size: 1.05em;
  /* Solid brand red — no gradient (per design spec the Showcase serif word
     is a flat #e63946, the gradient effect was over-styling). */
  color: var(--p5-red);
  display: inline-block;
  transform: translateY(0.04em);
  font-style: italic;
  text-transform: none;
}
/* Solid red dot — empty span from SSR, just a CSS-drawn circle. Sized
   relative to the h1 font-size (em) so it scales with the responsive
   clamp(). align-self: flex-end keeps it on the baseline of the line. */
.lpsc-h-dot {
  display: inline-block;
  width: 0.36em;
  height: 0.36em;
  background-color: #e63946;
  background-color: var(--p5-red);
  border-radius: 50%;
  align-self: flex-end;
  margin: 0 0.22em 0.18em 0.12em;
  flex-shrink: 0;
}
.lpsc-h-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--p5-red);
  padding: 4px 8px;
  border: 1px solid var(--p5-red);
  /* Pushed to the right end of line2 via margin-left:auto so when the
     line wraps, REEL 19 still aligns with the bottom of the Showcase
     word baseline instead of stacking left. align-self:center keeps it
     visually centered against the giant serif word. */
  margin-left: auto;
  align-self: center;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.lpsc-head-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 4px;
}
.lpsc-head-meta p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--p5-text-secondary);
  margin: 0;
  max-width: 380px;
  border-left: 2px solid var(--p5-red);
  padding-left: 14px;
}

.lpsc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--p5-border);
  padding-top: 0;
  margin-top: 0;
}
.lpsc-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px 14px 0;
  border-right: 1px solid var(--p5-border);
}
.lpsc-stat:last-child { border-right: none; }
.lpsc-stat-n {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--p5-text);
}
.lpsc-stat-plus {
  color: var(--p5-red);
  font-size: 0.7em;
  margin-left: 1px;
}
.lpsc-stat-l {
  font-size: 10px;
  color: var(--p5-muted);
  letter-spacing: 0.18em;
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', monospace;
  text-transform: uppercase;
}
.lpsc-pulse {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 6px;
  height: 6px;
  background: var(--p5-red);
  animation: lpsc-pulse 1.4s ease-in-out infinite;
}
@keyframes lpsc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(1.6); }
}

/* Tabs section — fully framed by top + bottom borders. Sits below
   .lpsc-head with margin-top page-bg gap separating it from the marquee. */
.lpsc-tabs-wrap {
  margin-top: 32px;
  padding: 28px 0 20px;
  background: var(--p5-bg-alt);
  border-top: 1px solid var(--p5-border);
  border-bottom: 1px solid var(--p5-border);
}
.lpsc-toolbar {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 0;
  padding-top: 0;
}
/* Persona-style parallelogram tabs (clip-path) with red filled active state */
.lpsc-tabs {
  display: flex;
  gap: 4px;
  align-items: stretch;
  min-width: max-content;
}
.lpsc-tab {
  position: relative;
  background: transparent;
  border: 1px solid var(--p5-border);
  color: var(--p5-text-secondary);
  font-family: 'Oswald', 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 11px 18px 11px 24px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  margin-right: -4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.lpsc-tab:hover { color: var(--p5-text); border-color: var(--p5-border-strong); }
.lpsc-tab.is-active {
  background: var(--p5-red);
  color: #fff;
  border-color: var(--p5-red);
  font-weight: 600;
}
.lpsc-tab.is-active::after { display: none; }  /* drop underline; pill fills */
.lpsc-tab-count {
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--p5-muted);
  vertical-align: super;
  transition: color 0.12s;
}
.lpsc-tab.is-active .lpsc-tab-count {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

/* ─── Marquee ticker strip ──────────────────────────── */
.lpsc-marquee {
  position: relative;
  /* Lives inside .lpsc-head now so the diagonal red motif (head::after)
     naturally extends through marquee without being clipped. margin-top
     keeps it separated from stats above; margin-bottom 0 because the
     head's padding-bottom already gives the gap to tabs-wrap. */
  margin: 32px 0 0;
  height: 44px;
  border-top: 1px solid var(--p5-border);
  border-bottom: 1px solid var(--p5-border);
  background: var(--p5-bg-alt);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}
.lpsc-marquee::before,
.lpsc-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.lpsc-marquee::before { left: 0;  background: linear-gradient(90deg, var(--p5-bg-alt), transparent); }
.lpsc-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--p5-bg-alt), transparent); }
.lpsc-marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: lpsc-marquee 42s linear infinite;
  padding-left: 56px;
  will-change: transform;
}
.lpsc-marquee-item {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--p5-text);
  text-transform: uppercase;
  flex-shrink: 0;
}
.lpsc-marquee-item::before {
  content: '\2726';   /* ✦ */
  margin-right: 16px;
  color: var(--p5-red);
}
.lpsc-marquee-dim { color: var(--p5-muted); }
.lpsc-marquee-red { color: var(--p5-red); }
@keyframes lpsc-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lpsc-tool-right {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.lpsc-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--p5-card);
  border: 1px solid var(--p5-border);
  padding: 8px 12px;
  width: 240px;
  color: var(--p5-muted);
}
.lpsc-search input {
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 13.5px;
  color: var(--p5-text);
  width: 100%;
}

.lpsc-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p5-card);
  border: 1px solid var(--p5-border);
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--p5-text-secondary);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.lpsc-select-l {
  color: var(--p5-muted);
  font-size: 12px;
}

.lpsc-view-toggle {
  display: inline-flex;
  background: var(--p5-card);
  border: 1px solid var(--p5-border);
  padding: 2px;
  gap: 2px;
}
.lpsc-view-toggle button {
  padding: 7px 10px;
  color: var(--p5-muted);
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.lpsc-view-toggle button.is-active {
  background: var(--lpsc-active-bg);
  color: var(--lpsc-active-fg);
}

/* ─── Featured strip ────────────────────────────────── */
.lpsc-featured {
  padding: 64px 0;
  background: var(--p5-bg);
  position: relative;
}

/* Section heads with diagonal red slash overlay (Persona signature) */
.lpsc-feat-head,
.lpsc-browse-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.lpsc-feat-head-l,
.lpsc-browse-head-l {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.lpsc-section-idx {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--p5-red);
  letter-spacing: 0.08em;
  position: relative;
  padding-right: 18px;
  text-transform: uppercase;
}
.lpsc-section-idx::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 12px;
  height: 1px;
  background: var(--p5-red);
  transform: translateY(-50%);
}
.lpsc-feat-head h2,
.lpsc-browse-head h2 {
  margin: 0;
  font-family: 'Oswald', 'Noto Sans SC', sans-serif;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--p5-text);
  text-transform: uppercase;
  position: relative;
  isolation: isolate;
  padding-right: 32px;
}
.lpsc-feat-head h2::before,
.lpsc-browse-head h2::before {
  content: '';
  position: absolute;
  left: -6%;
  right: -6%;
  top: 50%;
  height: 6px;
  background: var(--p5-red);
  transform: translateY(-50%) rotate(-3.5deg) scaleX(0);
  transform-origin: left center;
  z-index: -1;
  opacity: 0.85;
  animation: lpsc-slash 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.lpsc-feat-head h2::after,
.lpsc-browse-head h2::after {
  content: '';
  position: absolute;
  left: -6%;
  right: -6%;
  top: calc(50% + 14px);
  height: 2px;
  background: var(--p5-red);
  transform: translateY(-50%) rotate(-3.5deg) scaleX(0);
  transform-origin: left center;
  z-index: -1;
  opacity: 0.55;
  animation: lpsc-slash 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes lpsc-slash {
  to { transform: translateY(-50%) rotate(-3.5deg) scaleX(1); }
}
.lpsc-feat-head h2 .lpsc-h-en,
.lpsc-browse-head h2 .lpsc-h-en {
  font-size: 1.06em;
  margin-left: 8px;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--p5-red);
}
.lpsc-feat-head-r {
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--p5-muted);
  text-transform: uppercase;
  text-align: right;
  padding-bottom: 6px;
}
.lpsc-feat-head-r b { color: var(--p5-text); font-weight: 700; }

/* 1.62fr (big) + 1fr (stack of 2 mini) layout */
.lpsc-feat-grid {
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Mini side stack — uses :nth-child to keep first card as the big hero
   and stack subsequent cards in the right column. */
.lpsc-feat {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--p5-border);
  background: var(--p5-card);
  display: grid;
  grid-template-rows: 1fr auto;
  cursor: pointer;
  color: var(--p5-text);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.15s, box-shadow 0.25s;
}
.lpsc-feat:hover {
  border-color: var(--p5-red);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--p5-red), 14px 14px 0 -4px rgba(230, 57, 70, 0.18);
}

/* Big featured card (idx === 0 → .lpsc-feat-large) — spans both rows */
.lpsc-feat-large {
  grid-row: span 2;
  grid-template-rows: 1fr auto;
}
/* Side mini cards (idx 1, 2) — horizontal cover|body layout */
.lpsc-feat:not(.lpsc-feat-large) {
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr;
}

.lpsc-feat-cover {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--p5-bg-alt);
  overflow: hidden;
}
.lpsc-feat-large .lpsc-feat-cover { aspect-ratio: 16/10; }
.lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-cover {
  aspect-ratio: auto;
  height: 100%;
}
/* Scanline overlay (Persona-style halftone film) */
.lpsc-feat-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg,
    transparent 0, transparent 2px,
    var(--lpsc-scanline) 2px, var(--lpsc-scanline) 3px);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.lpsc-feat-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
/* When cover has background-image, scrim helps readability of overlay chips */

.lpsc-feat-large .lpsc-feat-cover { border-bottom: 1px solid var(--p5-border); }
.lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-cover { border-right: 1px solid var(--p5-border); }

/* Kind chip — left-aligned, right-slanted single-cut parallelogram with
   per-category swatch swatch dot inside (■ DRAMA / ■ MV / ...). */
.lpsc-feat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  z-index: 3;
  border: none;
  /* Single-cut: left edge flush, only right-bottom slants in 8px */
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  text-transform: uppercase;
}
.lpsc-feat-light .lpsc-feat-badge {
  background: rgba(20, 20, 26, 0.86);
}

/* Universal per-category swatch dot used inside .lpsc-feat-badge and
   .lpsc-kind chips. SSR sets inline background = cc.dot. */
.lpsc-swatch {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--p5-red);
}

/* Editor's Pick badge — top-right, red filled parallelogram */
.lpsc-feat-pin {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--p5-red);
  color: #fff;
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  border: none;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.lpsc-feat-pin svg { width: 11px; height: 11px; }

/* Body — hero card uses 2-col grid (text + 56x56 arrow CTA), mini cards
   keep simple column layout. */
.lpsc-feat-body {
  position: relative;
  padding: 24px 28px;
  background: var(--p5-card);
  z-index: 2;
}
.lpsc-feat-large .lpsc-feat-body {
  border-top: 1px solid var(--p5-border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
}
.lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.lpsc-feat-body-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* Arrow CTA on hero card — 56x56 red gradient pad */
.lpsc-feat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--p5-red-gradient, var(--p5-red));
  color: #fff;
  flex-shrink: 0;
  align-self: end;
  pointer-events: none;
}
.lpsc-feat-arrow svg { width: 22px; height: 22px; }
.lpsc-feat:hover .lpsc-feat-arrow {
  box-shadow: 0 10px 26px -8px rgba(230, 57, 70, 0.7);
}

.lpsc-feat-body h3 {
  margin: 0;
  font-family: 'Oswald', 'Noto Sans SC', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--p5-text);
}
.lpsc-feat-large .lpsc-feat-body h3 {
  font-size: clamp(20px, 2.4vw, 32px);
  max-width: 26ch;
}
.lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-body h3 {
  font-size: 17px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lpsc-feat-body p {
  margin: 0;
  font-size: 13px;
  color: var(--p5-text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-body p { display: none; }

.lpsc-feat-row {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--p5-muted);
}
.lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-row {
  padding-top: 0;
  margin-top: 0;
}
.lpsc-feat-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--p5-text-secondary);
}
.lpsc-feat-avatar {
  width: 10px;
  height: 10px;
  background: var(--p5-red);
  display: inline-block;
  border: none;
  flex-shrink: 0;
}

/* Ghost number — large stroked "01" / "02" / "03" rendered as a real DOM
   span (.lpsc-feat-num) inside the cover div by SSR. Stays within the
   cover region (never overlaps body / arrow CTA). Hero uses white stroke
   + mix-blend-mode: difference for cross-tone contrast. Mini cards use
   red stroke (sit on top of varied photo backgrounds). */
.lpsc-feat-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--p5-red);
  z-index: 3;
  pointer-events: none;
}
.lpsc-feat-large .lpsc-feat-num {
  font-size: clamp(80px, 8vw, 110px);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
  mix-blend-mode: difference;
  bottom: 16px;
  right: 20px;
}

.lpsc-feat-light { /* legacy light variant — keep but harmonize */
  color: var(--p5-text);
}
.lpsc-feat-light .lpsc-feat-scrim {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.5) 100%);
}

/* Cover gradients — pure CSS placeholders (no images). */
.lpsc-cover-ember {
  background: radial-gradient(ellipse at 50% 30%, #d83a2a 0%, #5e1810 35%, #100604 100%);
}
.lpsc-cover-ember::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 9px);
}
.lpsc-cover-violet {
  background: radial-gradient(circle at 60% 40%, #b6a7e6 0%, #2c2452 50%, #0c0820 100%);
}
.lpsc-cover-violet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 6px);
}
.lpsc-cover-gold {
  background: linear-gradient(180deg, #f1e2b3 0%, #b89559 100%);
}
.lpsc-cover-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(70, 40, 10, 0.06) 0 1px, transparent 1px 8px);
}

/* ─── Browse grid ───────────────────────────────────── */
.lpsc-browse {
  padding: 0 0 64px;
  background: var(--p5-bg);
  border-top: 1px solid var(--p5-border);
}
.lpsc-browse-head {
  padding: 56px 0 36px;
}

.lpsc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lpsc-card {
  position: relative;
  background: var(--p5-card);
  border: 1px solid var(--p5-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.15s, box-shadow 0.25s;
}
.lpsc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(230, 57, 70, 0.18);
  border-color: var(--p5-red);
}
/* Red corner-accent triangle that "grows" on hover (Persona signature) */
.lpsc-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 0 solid var(--p5-red);
  border-left: 0 solid transparent;
  transition: border-width 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
  pointer-events: none;
}
.lpsc-card:hover::after {
  border-top-width: 16px;
  border-left-width: 16px;
}

.lpsc-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--p5-border);
  background: var(--p5-bg-alt);
  overflow: hidden;
  display: block;
}
/* User-uploaded covers vary in aspect; cover-crop into the fixed 4:3 box so
   the grid stays uniform regardless of source image size. <video> covers (Game
   Demo first-frame via preload="metadata") share the same sizing rules. */
.lpsc-card-thumb img,
.lpsc-card-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.lpsc-card:hover .lpsc-card-thumb img,
.lpsc-card:hover .lpsc-card-thumb video {
  transform: scale(1.035);
}

/* Video publications without an image cover: show a play-icon overlay on
   top of the gradient placeholder so users understand "this is a video"
   without confusion. */
.lpsc-ph.has-video::after,
.lpsc-feat-cover.has-video::after,
.lpsc-card[data-video-src] .lpsc-card-thumb::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.lpsc-ph.has-video::before,
.lpsc-feat-cover.has-video::before,
.lpsc-card[data-video-src] .lpsc-card-thumb::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-left: 16px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  transform: translate(-32%, -50%);
  z-index: 3;
  pointer-events: none;
}

.lpsc-kind {
  position: absolute;
  left: 12px;
  top: 12px;
  right: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px 5px 10px;
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  z-index: 3;
  border: none;
  /* Single-cut: left edge flush, only right-bottom slants in 8px */
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  text-transform: uppercase;
}
/* Swatch dot now rendered as <span class="lpsc-swatch"> via SSR (above),
   so the old ::before pseudo-swatch is removed to avoid duplicate dots. */

.lpsc-ph-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.46);
  padding: 2px 6px;
  letter-spacing: 0.04em;
}
.lpsc-ph-label.is-light {
  color: var(--p5-text-secondary);
  background: rgba(255, 255, 255, 0.74);
}

.lpsc-duration {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(15, 14, 13, 0.84);
  color: #fff;
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', monospace;
  font-size: 10.5px;
  padding: 2px 6px;
}

.lpsc-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lpsc-card-body h3 {
  margin: 0;
  font-family: 'Oswald', 'Noto Sans SC', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--p5-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}
.lpsc-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.lpsc-card-body p {
  margin: 0;
  font-size: 12px;
  color: var(--p5-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lpsc-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 16px 14px;
  border-top: 0;
  margin-top: 0;
  font-size: 12px;
  color: var(--p5-muted);
}
.lpsc-card-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--p5-text-secondary);
  font-weight: 500;
  min-width: 0;
  font-size: 12px;
}
.lpsc-card-by > span:not(.lpsc-avatar) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lpsc-avatar {
  width: 8px;
  height: 8px;
  background: var(--dot, var(--p5-red));
  display: inline-block;
  flex-shrink: 0;
}
.lpsc-card-tag {
  font-family: 'Consolas', 'Monaco', 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--p5-muted);
  background: transparent;
  border: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
}
.lpsc-card-tag::before {
  content: '\2116 ';   /* № */
}

.lpsc-card-foot {
  display: none;   /* SSR-rendered real cards don't include foot; hide for any legacy mock */
}

/* Placeholder thumb backgrounds — CSS-only mock textures. */
.lpsc-ph {
  position: absolute;
  inset: 0;
}
.lpsc-ph-ember {
  background:
    repeating-linear-gradient(135deg, rgba(40, 10, 0, 0.08) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #3a201a, #0e0805);
}
.lpsc-ph-gold {
  background:
    repeating-linear-gradient(135deg, rgba(120, 90, 30, 0.06) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #f1e8d2, #e3d3a6);
}
.lpsc-ph-violet {
  background:
    repeating-linear-gradient(135deg, rgba(60, 40, 120, 0.06) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #cdc6e8, #4e447a);
}
.lpsc-ph-fog {
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #e8e4dd, #b4ada1);
}
.lpsc-ph-mint {
  background:
    repeating-linear-gradient(135deg, rgba(40, 80, 60, 0.06) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #cfe1d1, #5a8a64);
}
.lpsc-ph-ink {
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #3a3833, #0d0c0a);
}
.lpsc-ph-cream {
  background:
    repeating-linear-gradient(135deg, rgba(120, 90, 30, 0.04) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, #fdf8ea, #e9d8a2);
}

/* Pager / Load-more — Persona-style parallelogram outline button.
   JS in lp-showcase.js hides .lpsc-load-more when hasMore=0. */
.lpsc-load-more {
  display: flex;
  justify-content: center;
  padding: 48px 0 8px;
  margin-top: 0;
}
.lpsc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.lpsc-btn-ghost {
  background: transparent;
  color: var(--p5-text);
  border-color: var(--p5-border-strong);
}
.lpsc-btn-ghost:hover {
  background: var(--p5-bg-alt);
}
.lpsc-btn-lg {
  padding: 14px 28px 14px 32px;
  font-size: 13px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  gap: 14px;
}
/* Apply parallelogram cut to the load-more button specifically */
.lpsc-load-more .lpsc-btn {
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  border-color: var(--p5-border-strong);
}
.lpsc-load-more .lpsc-btn:hover {
  background: var(--p5-red);
  color: #fff;
  border-color: var(--p5-red);
}

/* ─── CTA strip ─────────────────────────────────────── */
.lpsc-cta {
  padding: 64px 0 88px;
  border-top: 1px solid var(--p5-border);
  background: var(--p5-card);
}
.lpsc-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.lpsc-cta h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  max-width: 680px;
  color: var(--p5-text);
}
.lpsc-cta p {
  margin: 10px 0 0;
  color: var(--p5-muted);
  font-size: 14.5px;
  max-width: 520px;
  line-height: 1.7;
}
.lpsc-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.lpsc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.lpsc-btn-primary {
  background: var(--p5-red);
  color: #fff;
  border: 1px solid var(--p5-red);
}
.lpsc-btn-primary:hover {
  background: #c42121;
  border-color: #c42121;
}
.lpsc-btn-ghost {
  background: transparent;
  color: var(--p5-text);
  border: 1px solid var(--p5-border-strong);
}
.lpsc-btn-ghost:hover {
  background: var(--p5-bg-alt);
}

/* ─── Responsive ────────────────────────────────────── */

/* Laptop (~1280-1440px): h1 not quite as huge, side rail narrower */
@media (max-width: 1440px) {
  .lpsc-head { padding: 56px 0 32px; }
  .lpsc-h1 { font-size: clamp(54px, 8.8vw, 124px); }
  .lpsc-head-grid {
    grid-template-columns: minmax(0, 1fr) clamp(280px, 26vw, 340px);
    gap: clamp(24px, 3vw, 48px);
  }
  .lpsc-feat-head h2,
  .lpsc-browse-head h2 { font-size: clamp(30px, 3.8vw, 48px); }
  .lpsc-feat-large::before { font-size: clamp(72px, 7vw, 100px); }
}

/* Mid breakpoint (≤1180): stack head + featured, narrow grid to 3 cols */
@media (max-width: 1180px) {
  .lpsc-head-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lpsc-h1 { font-size: clamp(48px, 9vw, 96px); }
  .lpsc-head-meta { max-width: 640px; }
  .lpsc-head-meta p { max-width: none; }
  .lpsc-feat-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .lpsc-feat-large {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-rows: auto auto;
  }
  .lpsc-feat-large .lpsc-feat-cover { aspect-ratio: 21/9; }
  .lpsc-feat:not(.lpsc-feat-large) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-cover {
    aspect-ratio: 16/10;
    border-right: 0;
    border-bottom: 1px solid var(--p5-border);
  }
  .lpsc-feat:not(.lpsc-feat-large) .lpsc-feat-body p { display: -webkit-box; }
  .lpsc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /* Stacked layout: shrink hero ghost num so it doesn't crowd 21:9 cover */
  .lpsc-feat-large .lpsc-feat-num { font-size: clamp(64px, 6vw, 90px); }
}

/* Tablet (~900): featured single column, grid 2 cols */
@media (max-width: 900px) {
  .lpsc-feat-grid { grid-template-columns: 1fr; }
  .lpsc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lpsc-marquee-item { font-size: 13px; }
}
@media (max-width: 768px) {
  .lpsc-wrap {
    padding: 0 16px;
  }

  /* ── H5 simplification 2026-05-14 ─────────────────────
     Per H5 design: page is a thumbnail-first listing.
     Hide the marketing scaffolding that desktop carries (breadcrumb /
     lede / 4 stats / marquee ticker / featured strip / "全部作品" h2 /
     CTA banner / desktop footer). Only the page title + pill tabs +
     2-col card grid remain. */
  .lpsc-crumb,
  .lpsc-head-meta,
  .lpsc-marquee,
  .lpsc-featured,
  .lpsc-browse-head,
  .lpsc-cta { display: none; }

  /* H5 hero: collapse the 2-line title (drop dot/tag accents) */
  .lpsc-h1 .lpsc-h-dot,
  .lpsc-h1 .lpsc-h-tag { display: none; }
  .lpsc-h1-line2 { display: inline; gap: 0; }
  .lpsc-head::after { display: none; }   /* drop diagonal motif on H5 */

  /* Head — single-column title only */
  .lpsc-head {
    padding: 20px 0 8px;
    background: var(--p5-bg);
  }
  .lpsc-head-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lpsc-h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  /* H5 keeps single literal "Showcase" word — collapse the line break */
  .lpsc-h1 br { display: none; }

  /* Tabs-wrap — strip container padding tightened for mobile */
  .lpsc-tabs-wrap {
    padding: 10px 0 6px;
    background: var(--p5-bg);
    border-bottom: 0;
  }

  /* Toolbar — no top border, tighter spacing, no flex-wrap */
  .lpsc-toolbar {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    gap: 10px;
  }

  /* Tabs — horizontal scrolling pill row (red-filled active).
     Override desktop's `min-width: max-content` (which forces the tabs strip
     to be as wide as all 5 tabs combined → pushes toolbar/tabs-wrap wider
     than viewport on H5 even though tabs themselves have overflow-x: auto). */
  .lpsc-tabs {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    min-width: 0;
  }
  .lpsc-tabs::-webkit-scrollbar { display: none; }
  .lpsc-tab {
    flex: 0 0 auto;
    padding: 8px 14px;
    background: var(--p5-card);
    border: 1px solid var(--p5-border);
    color: var(--p5-text-secondary);
    font-size: 13px;
    white-space: nowrap;
  }
  .lpsc-tab.is-active {
    background: var(--p5-red);
    color: #fff;
    border-color: var(--p5-red);
    font-weight: 600;
  }
  .lpsc-tab.is-active::after { display: none; } /* drop underline in pill mode */

  /* Browse grid — 2 cols, tighter gap */
  .lpsc-browse {
    padding: 14px 0 24px;
    border-top: 0;
  }
  .lpsc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Card — keep cover + title + by author + ❤ / 👁 stats.
     Hide desc paragraph, meta tag chip, bookmark, and the mono label. */
  .lpsc-card-body p,
  .lpsc-card-tag,
  .lpsc-bookmark,
  .lpsc-ph-label { display: none; }

  /* Move the category chip from top-right (.lpsc-kind) to bottom-left to
     match the H5 mockup. */
  .lpsc-kind {
    top: auto;
    bottom: 10px;
    right: auto;
    left: 10px;
  }

  .lpsc-card-body {
    padding: 10px 12px 8px;
    gap: 2px;
  }
  .lpsc-card-body h3 {
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Author row — full width, no border, ❤ / 👁 in same row */
  .lpsc-card-meta {
    padding: 0 12px 4px;
    border-top: 0;
    margin-top: 0;
    justify-content: flex-start;
  }
  .lpsc-card-by { font-size: 12px; }
  .lpsc-avatar { width: 14px; height: 14px; }

  .lpsc-card-foot {
    padding: 0 12px 12px;
    gap: 10px;
    font-size: 12px;
  }
  /* ❤ icon uses red to match the mockup's red-heart accent */
  .lpsc-card-foot .lpsc-stat-ico:first-child {
    color: var(--p5-red);
  }

  /* Reserve space for the bottom fixed CTA bar (46 CTA + 14 gap) */
  body { padding-bottom: 60px; }
}

/* ─── Footer override — distinct background to separate footer from page body.
   Shared lp-home.css uses var(--p5-bg) which makes the footer blend into the
   body (light=#fff, dark=#0a0a0f). Showcase design spec calls for a discrete
   footer tone — warm beige in light mode, slightly lifted card-tone in dark. */
:root[data-page="lp"][data-theme="light"] .lphome-footer {
  background: #f8f5f0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
:root[data-page="lp"][data-theme="dark"] .lphome-footer {
  background: #11111a;
  border-top: 1px solid var(--p5-border);
}

/* Footer-bottom — single-row legal copyright (no right-side WK/date per spec).
   Override the shared .lphome-footer-bottom flex space-between so the single
   span sits flush-left instead of centered/spread. */
.lpsc-footer .lphome-footer-bottom {
  justify-content: flex-start;
  border-top: 1px solid var(--p5-border);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
