:root {
  --lc-navy: #0f2847;
  --lc-terracotta: #c45c3e;
  --lc-sand: #faf6f0;
  --lc-sky: #5eb3d6;
  --lc-ink: #1c2b39;
  --lc-ink-soft: #4b5d70;
  --lc-line: #d7d9de;
  --lc-panel: #ffffff;
  --lc-sidebar-w: 260px;
  --lc-r-1: 8px;
  --lc-r-2: 14px;
  --lc-r-3: 20px;
  --lc-shadow-sm: 0 4px 16px rgba(15, 40, 71, 0.08);
  --lc-shadow-md: 0 12px 30px rgba(15, 40, 71, 0.14);
  --lc-gap-1: 0.5rem;
  --lc-gap-2: 0.75rem;
  --lc-gap-3: 1rem;
  --lc-gap-4: 1.5rem;
  --lc-gap-5: 2rem;
  --lc-pad: clamp(1rem, 2.8vw, 2rem);
  --lc-sans: "Sora", "Segoe UI", Arial, sans-serif;
  --lc-serif: "Literata", Georgia, serif;
  --lc-focus: 0 0 0 3px rgba(94, 179, 214, 0.35);
  --lc-reveal-y: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--lc-sans);
  color: var(--lc-ink);
  background: var(--lc-sand);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
video,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--lc-navy);
  text-decoration: none;
}

a:hover {
  color: var(--lc-terracotta);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--lc-focus);
}

.lc-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--lc-sidebar-w) minmax(0, 1fr);
  background: var(--lc-sand);
}

.lc-sidebar {
  background: var(--lc-navy);
  color: #fff;
  padding: 1.25rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
  z-index: 50;
}

.lc-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lc-brand-mark {
  inline-size: 2.2rem;
  block-size: 2.2rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--lc-sky), var(--lc-terracotta));
}

.lc-brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lc-nav {
  display: grid;
  gap: 0.25rem;
}

.lc-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lc-nav a:hover,
.lc-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  transform: translateX(2px);
}

.lc-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lc-main {
  min-width: 0;
  padding: var(--lc-pad);
  display: flex;
  flex-direction: column;
  gap: var(--lc-gap-4);
  flex: 1;
}

.lc-mobhead {
  display: none;
}

.lc-tabbar {
  display: none;
}

.lc-menufull {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 40, 71, 0.97);
  color: #fff;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: calc(clamp(1rem, 4vw, 2rem) + env(safe-area-inset-top)) clamp(1rem, 4vw, 2rem) clamp(1.2rem, 4.2vw, 2.2rem);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.lc-menufull a {
  color: #fff;
  padding: 0.8rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.lc-menufull.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
body.lc-menu-open .lc-menufull {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.lc-titlebar {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  padding: 0.95rem 1.1rem 0.95rem 1.25rem;
  display: block;
  width: 100%;
  min-width: 0;
  position: relative;
}

.lc-titlebar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: var(--lc-r-2) 0 0 var(--lc-r-2);
  background: var(--lc-terracotta);
}

.lc-titlebar h1,
.lc-titlebar h2,
.lc-titlebar p {
  margin: 0;
  min-width: 0;
}

.lc-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--lc-ink-soft);
}

.lc-crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.lc-crumbs li + li::before {
  content: "/";
  color: #9aa7b2;
}

.lc-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.18s ease, border-color 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lc-btn:hover {
  transform: translateY(-1px);
}

.lc-btn:active {
  transform: translateY(0);
}

.lc-btn--solid {
  background: var(--lc-terracotta);
  color: #fff;
}

.lc-btn--solid:hover {
  background: #b34d31;
}

.lc-btn--navy {
  background: var(--lc-navy);
  color: #fff;
}

.lc-btn--ghost {
  background: transparent;
  border-color: var(--lc-line);
  color: var(--lc-navy);
}

.lc-btn--sky {
  background: var(--lc-sky);
  color: #07354a;
}

.lc-card {
  background: var(--lc-panel);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  box-shadow: var(--lc-shadow-sm);
  padding: 1rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lc-dash {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--lc-gap-3);
}

.lc-widget {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.lc-widget--span-3 {
  grid-column: span 3;
}

.lc-widget--span-4 {
  grid-column: span 4;
}

.lc-widget--span-5 {
  grid-column: span 5;
}

.lc-widget--span-6 {
  grid-column: span 6;
}

.lc-widget--span-8 {
  grid-column: span 8;
}

.lc-widget--span-12 {
  grid-column: 1 / -1;
}

.lc-kpi {
  display: grid;
  gap: 0.35rem;
}

.lc-kpi b {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
  color: var(--lc-navy);
}

.lc-catalog {
  background: var(--lc-panel);
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  overflow: hidden;
}

.lc-catalog-head,
.lc-catalog-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.88rem 1rem;
  min-width: 0;
}

a.lc-catalog-row {
  text-decoration: none;
  color: inherit;
}

.lc-catalog--compact .lc-catalog-head {
  display: none;
}

.lc-catalog--compact .lc-catalog-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.lc-catalog--compact .lc-catalog-row > :nth-child(2),
.lc-catalog--compact .lc-catalog-row > :nth-child(3),
.lc-catalog--compact .lc-catalog-row > :nth-child(4) {
  display: none;
}

.lc-catalog-head {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--lc-ink-soft);
  background: #f6f8fb;
  border-bottom: 1px solid var(--lc-line);
}

.lc-catalog-row + .lc-catalog-row {
  border-top: 1px solid var(--lc-line);
}

.lc-catalog-row:hover {
  background: #fcfdff;
}

.lc-catalog-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.lc-catalog-item img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}

.lc-catalog-item span {
  min-width: 0;
}

.lc-catalog-item strong,
.lc-catalog-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lc-catalog-price {
  font-weight: 700;
  color: var(--lc-navy);
}

.lc-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.lc-pdtop {
  margin-bottom: var(--lc-gap-4);
}

.lc-pdgallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  max-width: min(920px, 100%);
  margin-inline: auto;
}

.lc-bleedhero {
  width: 100%;
  margin-inline: 0;
  max-width: 100%;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  background: #fff;
  overflow: hidden;
}

.lc-bleedhero img,
.lc-bleedhero video {
  width: 100%;
  max-height: min(52vh, 480px);
  object-fit: contain;
  background: #fff;
}

.lc-pdgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  gap: var(--lc-gap-4);
  align-items: start;
}

.lc-pdmain .lead {
  color: var(--lc-ink-soft);
  line-height: 1.65;
  margin: 0.35rem 0 0.75rem;
}

.lc-gallery-thumbs {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.lc-gallery-thumbs button {
  border: 1px solid var(--lc-line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.lc-gallery-thumbs button[aria-current="true"] {
  border-color: var(--lc-sky);
  box-shadow: 0 0 0 2px rgba(94, 179, 214, 0.3);
}

.lc-gallery-main {
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  background: #fff;
  overflow: hidden;
}

.lc-gallery-main img {
  width: 100%;
  height: min(48vw, 560px);
  object-fit: cover;
}

.lc-buydock {
  position: sticky;
  top: 1rem;
}

.lc-buydock .lc-card {
  gap: 1rem;
}

.lc-tagwall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
}

.lc-tagwall a,
.lc-tagwall span {
  border: 1px solid var(--lc-line);
  background: #fff;
  color: var(--lc-ink-soft);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.86rem;
}

.lc-tagwall a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.lc-tagwall a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.lc-tagwall a b {
  flex-shrink: 0;
}

.lc-faq {
  display: grid;
  gap: 0.7rem;
}

.lc-faq details {
  border: 1px solid var(--lc-line);
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem 0.95rem;
}

.lc-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--lc-navy);
}

.lc-faq p {
  margin: 0.6rem 0 0;
  color: var(--lc-ink-soft);
}

.lc-downloadsplit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lc-downloadsplit > * {
  min-width: 0;
}

.lc-downloadpane {
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  background: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lc-policy {
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.lc-policy section {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  padding: 1rem 1.2rem;
}

.lc-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.5rem;
}

.lc-timeline::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--lc-sky), rgba(94, 179, 214, 0.15));
}

.lc-timeline-item {
  position: relative;
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  padding: 0.95rem 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lc-timeline-item:hover {
  border-color: var(--lc-sky);
  box-shadow: var(--lc-shadow-sm);
}

.lc-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.18rem;
  top: 1.05rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--lc-terracotta);
  box-shadow: 0 0 0 4px rgba(196, 92, 62, 0.16);
}

.lc-timeline-meta {
  color: var(--lc-ink-soft);
  font-size: 0.88rem;
}

.lc-prose-wrap {
  display: flex;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.lc-prose {
  width: min(78ch, 100%);
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-r-2);
  padding: clamp(1rem, 2.8vw, 2.2rem);
}

.lc-prose h1,
.lc-prose h2,
.lc-prose h3 {
  font-family: var(--lc-serif);
  line-height: 1.25;
  color: var(--lc-navy);
}

.lc-prose p,
.lc-prose li,
.lc-prose blockquote {
  font-family: var(--lc-serif);
  color: #2b3a47;
}

.lc-prose blockquote {
  border-left: 4px solid var(--lc-sky);
  margin: 1rem 0;
  padding: 0.3rem 0 0.3rem 0.9rem;
}

.lc-rich {
  min-width: 0;
}

.lc-rich table:not(.lc-data-table):not(.lc-kv-table) {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--lc-line);
}

.lc-rich th,
.lc-rich td {
  padding: 0.62rem 0.72rem;
  border-bottom: 1px solid var(--lc-line);
  text-align: left;
  vertical-align: top;
}

.lc-rich table:not(.lc-data-table):not(.lc-kv-table) th {
  background: #f4f8fc;
  color: var(--lc-navy);
  font-weight: 700;
}

.lc-rich table.lc-data-table th {
  background: var(--lc-navy);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.lc-rich table.lc-data-table td {
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.lc-rich tr:last-child td {
  border-bottom: 0;
}

.lc-article-body table.lc-kv-table {
  width: 100%;
  border-spacing: 0 0.5rem;
  border: none;
}

.lc-article-body table.lc-kv-table tr {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid var(--lc-line);
}

.lc-article-body table.lc-data-table {
  width: max-content;
  min-width: 100%;
  font-size: 0.9rem;
  border-collapse: collapse;
  border: none;
  border-radius: 0;
}

.lc-prose .lc-tablescroll {
  border: 1px solid var(--lc-line);
  border-radius: 12px;
  overflow-x: auto;
  margin: 0.85rem 0;
  -webkit-overflow-scrolling: touch;
}

.lc-article-body table:not(.lc-data-cards):not(.lc-kv-table) {
  min-width: 520px;
}

.lc-rich code,
.lc-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: #eef3f8;
  border-radius: 6px;
  padding: 0.12em 0.35em;
}

.lc-rich pre,
.lc-prose pre {
  overflow-x: auto;
  padding: 0.8rem;
  border-radius: 10px;
  background: #0e223a;
  color: #dbe8f2;
}

.lc-vplayer {
  border-radius: var(--lc-r-2);
  overflow: hidden;
  background: #050d17;
}

.lc-vplayer iframe,
.lc-vplayer video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.lc-footbar {
  margin-top: auto;
  border-top: 1px solid var(--lc-line);
  padding: 0.9rem var(--lc-pad);
  color: var(--lc-ink-soft);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: #fff;
}

.lc-footbar nav {
  display: inline-flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

[data-lc-reveal] {
  opacity: 1;
  transform: none;
}

[data-lc-reveal].is-prehide {
  opacity: 0;
  transform: translateY(var(--lc-reveal-y));
  transition: opacity 0.42s ease, transform 0.42s ease;
}

[data-lc-reveal].is-prehide.is-visible,
[data-lc-reveal].is-prehide.lc-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .lc-widget--span-3 {
    grid-column: span 4;
  }

  .lc-widget--span-4 {
    grid-column: span 6;
  }

  .lc-widget--span-5 {
    grid-column: span 6;
  }

  .lc-pdgrid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lc-buydock {
    grid-column: 1 / -1;
    position: static;
  }
}

@media (max-width: 959px) {
  .lc-app {
    grid-template-columns: minmax(0, 1fr);
  }

  .lc-sidebar {
    display: none;
  }

  .lc-stage {
    min-height: 100vh;
  }

  .lc-mobhead {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 40;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: calc(clamp(0.75rem, 3.8vw, 1rem) + env(safe-area-inset-top)) clamp(0.9rem, 4vw, 1.1rem) 0.75rem;
    background: #fff;
    border-bottom: 1px solid var(--lc-line);
  }

  .lc-main {
    padding: clamp(0.9rem, 4vw, 1.15rem);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    gap: 1rem;
  }

  .lc-dash {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
  }

  .lc-widget--span-3,
  .lc-widget--span-4,
  .lc-widget--span-5,
  .lc-widget--span-6,
  .lc-widget--span-8,
  .lc-widget--span-12 {
    grid-column: 1 / -1;
  }

  .lc-titlebar {
    padding-left: 1rem;
    border-radius: 12px;
  }

  .lc-catalog-head {
    display: none;
  }

  .lc-catalog-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    align-items: start;
  }

  .lc-catalog-row > * {
    min-width: 0;
  }

  .lc-timeline {
    padding-left: 0;
    gap: 0.75rem;
  }

  .lc-timeline::before,
  .lc-timeline-item::before {
    display: none;
  }

  .lc-titlebar {
    padding: 0.85rem 0.95rem 0.85rem 1.1rem;
  }

  .lc-article-body table.lc-data-table.lc-data-cards {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    border: none;
  }

  .lc-article-body table.lc-data-table.lc-data-cards thead,
  .lc-article-body table.lc-data-table.lc-data-cards tr.lc-tbl-head,
  .lc-article-body table.lc-data-table.lc-data-cards tr:has(> th) {
    display: none !important;
  }

  .lc-article-body table.lc-data-table.lc-data-cards tbody {
    display: block;
  }

  .lc-article-body table.lc-data-table.lc-data-cards tr {
    display: block;
    margin-bottom: 0.75rem;
    border: 1px solid var(--lc-line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .lc-article-body table.lc-data-table.lc-data-cards td {
    display: block;
    padding: 0.65rem 0.85rem;
    border: none;
    border-bottom: 1px solid var(--lc-line);
    width: 100% !important;
  }

  .lc-article-body table.lc-data-table.lc-data-cards tr td:last-child {
    border-bottom: none;
  }

  .lc-article-body table.lc-data-table.lc-data-cards td::before {
    display: block;
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--lc-terracotta);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .lc-article-body table.lc-kv-table tr {
    grid-template-columns: 1fr;
  }

  .lc-pdgrid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lc-pdmain {
    order: 1;
  }

  .lc-buydock {
    order: 2;
  }

  .lc-pdgallery {
    max-width: 100%;
  }

  .lc-gal-th {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .lc-gal-th img {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    aspect-ratio: 1;
  }

  .lc-bleedhero img {
    max-height: min(58vw, 420px);
  }

  .lc-downloadsplit {
    grid-template-columns: minmax(0, 1fr);
  }

  .lc-tabbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.15rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    background: #fff;
    border-top: 1px solid var(--lc-line);
    padding: 0.42rem 0.4rem calc(0.42rem + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 18px rgba(15, 40, 71, 0.06);
  }

  .lc-tabbar a,
  .lc-tabbar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 100%;
    min-width: 0;
    min-height: 2.5rem;
    border-radius: 10px;
    border: 1px solid transparent;
    color: var(--lc-navy);
    background: transparent;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.1rem;
    line-height: 1.1;
    white-space: nowrap;
    cursor: pointer;
  }

  #lcTabProducts::after,
  #lcTabMenu::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.45;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .lc-footgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    padding: 1rem clamp(0.9rem, 4vw, 1.15rem) 0.75rem;
  }

  .lc-footcol:first-child {
    grid-column: 1 / -1;
  }

  .lc-footcol {
    min-width: 0;
  }

  .lc-footcol ul {
    display: grid;
    gap: 0.35rem;
  }

  .lc-footcol a {
    display: block;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .lc-copyright {
    padding-bottom: calc(4.2rem + env(safe-area-inset-bottom));
    justify-content: center;
    text-align: center;
    font-size: 0.76rem;
  }

  .lc-footbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 0;
    padding: 0.85rem clamp(0.9rem, 4vw, 1.15rem);
    font-size: 0.82rem;
  }

  .lc-footbar a {
    align-self: flex-start;
  }

  .lc-tabbar [aria-current="page"] {
    background: #ecf3f9;
    border-color: #d9e7f4;
  }
}

@media (max-width: 639px) {
  .lc-brand-name {
    font-size: 0.95rem;
  }

  .lc-pager {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
  }

  .lc-pager a {
    min-width: 34px;
    height: 34px;
    font-size: 0.8rem;
    padding: 0 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-lc-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* —— extensions: CMS shell, flyouts, components —— */
html,body{width:100%;max-width:100%;overflow-x:clip}
main{min-width:0}
ul,ol{list-style:none;margin:0;padding:0}
.lc-snav-item{position:relative;z-index:1}
.lc-snav-item.has{z-index:2}
.lc-snav-item.is-fly-open{z-index:200}
.lc-snav-item.has::before{content:"";position:absolute;left:100%;top:0;width:16px;height:100%;z-index:1}
.lc-snav-item>a{display:block;color:rgba(255,255,255,.92);border-radius:10px;padding:.58rem .7rem;font-size:.92rem;font-weight:600}
.lc-snav-item.has>a::after{content:"▸";float:right;opacity:.55;font-size:.75rem}
.lc-snav-item>a:hover,.lc-snav-item:hover>a{background:rgba(255,255,255,.12);color:#fff}
.lc-fly{position:absolute;left:100%;top:0;min-width:210px;max-height:min(360px,70vh);overflow-y:auto;background:#fff;color:var(--lc-ink);border:1px solid var(--lc-line);border-radius:12px;box-shadow:var(--lc-shadow-md);padding:6px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .18s,visibility .18s;z-index:120}
.lc-snav-item:hover .lc-fly,.lc-snav-item:focus-within .lc-fly,.lc-snav-item.is-fly-open .lc-fly{opacity:1;visibility:visible;pointer-events:auto}
.lc-fly a{display:block;padding:.5rem .65rem;border-radius:8px;color:var(--lc-ink-soft);font-weight:500}
.lc-fly a:hover{background:#f4f8fc;color:var(--lc-navy)}
.lc-logo{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem;color:#fff}
.lc-logo img{width:36px;height:36px;border-radius:8px;object-fit:contain;background:#fff}
.lc-logo b{font-weight:700;font-size:1rem}
.lc-quote-btn{display:block;text-align:center;padding:.62rem 1rem;border-radius:999px;background:var(--lc-terracotta);color:#fff;font-weight:700;font-size:.88rem}
.lc-mobbrand{display:flex;align-items:center;gap:.55rem;min-width:0;color:var(--lc-navy);font-weight:700}
.lc-mobbrand img{width:32px;height:32px;border-radius:8px;object-fit:contain}
.lc-mobbrand b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.lc-mobhead button{padding:.45rem .85rem;border:1px solid var(--lc-line);border-radius:10px;background:#fff;font-weight:600;cursor:pointer}
#lcMenuBtn{display:inline-flex;align-items:center;gap:.45rem}
#lcMenuBtn::before{content:"";width:14px;height:10px;background:linear-gradient(currentColor,currentColor) 0 0/100% 2px no-repeat,linear-gradient(currentColor,currentColor) 0 50%/100% 2px no-repeat,linear-gradient(currentColor,currentColor) 0 100%/100% 2px no-repeat}
.lc-footcol{min-width:0}
.lc-footcol ul{list-style:none;margin:0;padding:0}
.lc-footcol li{margin-bottom:.4rem}
.lc-footlogo{display:flex;align-items:center;gap:.55rem;margin-bottom:.5rem;font-weight:700;color:var(--lc-navy)}
.lc-footlogo img{width:30px;height:30px;object-fit:contain}
.lc-copyright{padding:.75rem var(--lc-pad) 1.25rem;font-size:.82rem;color:var(--lc-ink-soft);display:flex;flex-wrap:wrap;gap:.5rem 1rem;background:#fff}
.lc-menuhead{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem}
.lc-menuhead b{font-size:1.2rem}
.lc-menuhead button{width:40px;height:40px;border:1px solid rgba(255,255,255,.3);border-radius:10px;background:transparent;color:#fff;font-size:1.3rem;cursor:pointer}
.lc-mhome{display:block;padding:.75rem 0;font-size:1.1rem;font-weight:700;border-bottom:1px solid rgba(255,255,255,.12)}
.lc-mquote{display:block;margin-top:1rem;padding:.75rem;text-align:center;border-radius:999px;background:var(--lc-terracotta);color:#fff;font-weight:700}
.lc-sidenav{display:grid;gap:.2rem;flex:1;min-height:0;overflow:visible}
.lc-sidefoot{margin-top:auto;padding-top:1.2rem;border-top:1px solid rgba(255,255,255,.14);font-size:.82rem;color:rgba(255,255,255,.75);display:grid;gap:.65rem;flex-shrink:0}
.lc-eyebrow{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--lc-sky)}
.lc-widget h1,.lc-widget h2{font-family:var(--lc-serif);color:var(--lc-navy);line-height:1.15;margin:.35rem 0}
.lc-widget h1{font-size:clamp(1.65rem,3.2vw,2.35rem)}
.lc-widget h2{font-size:clamp(1.2rem,2.4vw,1.55rem)}
.lc-widget .lead{color:var(--lc-ink-soft);line-height:1.7;margin-top:.5rem}
.lc-kpigrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem}
.lc-kpigrid .lc-kpi{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:.65rem .75rem;color:#fff}
.lc-kpigrid .lc-kpi b{color:#fff}
.lc-kpigrid .lc-kpi span{font-size:.78rem;opacity:.8}
.lc-widget--hero{background:linear-gradient(145deg,var(--lc-navy),#163a61);color:#fff;border:none}
.lc-widget--hero .lc-eyebrow{color:var(--lc-sky)}
.lc-widget--hero .lead{color:rgba(255,255,255,.8)}
.lc-widget--hero h1,.lc-widget--hero h2{color:#fff}
.lc-chipgrid{display:flex;flex-wrap:wrap;gap:.45rem}
.lc-chipgrid a{padding:.4rem .75rem;border-radius:999px;border:1px solid var(--lc-line);background:#fff;font-size:.86rem;font-weight:600;color:var(--lc-navy)}
.lc-chipgrid a:hover{border-color:var(--lc-sky);background:#f4f9fd}
.lc-catfilter-wrap{margin-bottom:1rem;min-width:0}
.lc-catfilter-hd{margin-bottom:.55rem}
.lc-catfilter{display:flex;flex-wrap:wrap;gap:.5rem;padding:.8rem;background:#fff;border:1px solid var(--lc-line);border-radius:12px;box-shadow:var(--lc-shadow-sm)}
.lc-catfilter a{display:inline-flex;align-items:center;padding:.52rem .9rem;border-radius:10px;border:1px solid var(--lc-line);background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);font-size:.82rem;font-weight:600;color:var(--lc-navy);line-height:1.3;text-decoration:none;transition:border-color .18s ease,background .18s ease,box-shadow .18s ease}
.lc-catfilter a:hover{border-color:var(--lc-sky);background:#eef6fb;color:var(--lc-navy);box-shadow:0 2px 8px rgba(94,179,214,.15)}
.lc-scrollrail{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.75rem;width:100%;max-width:100%;min-width:0}
.lc-scrollrail>a{display:flex;flex-direction:column;background:#fff;border:1px solid var(--lc-line);border-radius:12px;overflow:hidden;min-width:0;height:auto;text-decoration:none;color:inherit}
.lc-scrollrail .im{aspect-ratio:4/3;background:#f2f4f7;flex-shrink:0}
.lc-scrollrail .im img{width:100%;height:100%;object-fit:cover}
.lc-scrollrail .bd{padding:.75rem;min-width:0;display:flex;flex-direction:column;gap:.35rem;flex:1}
.lc-scrollrail .tg{font-size:.68rem;font-weight:700;text-transform:uppercase;color:var(--lc-terracotta);line-height:1.45;overflow-wrap:anywhere;word-break:break-word}
.lc-scrollrail h3{font-family:var(--lc-serif);font-size:1rem;line-height:1.25;color:var(--lc-navy);margin:0;overflow-wrap:anywhere;word-break:break-word}
.lc-scrollrail p{font-size:.82rem;color:var(--lc-ink-soft);margin:0;line-height:1.5;overflow-wrap:anywhere;word-break:break-word}
@media(max-width:1100px){
  .lc-scrollrail{display:flex;gap:.75rem;overflow-x:auto;padding-bottom:.5rem;margin-inline:calc(-1 * .5rem);padding-inline:.5rem;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:thin}
  .lc-scrollrail>a{flex:0 0 min(220px,72vw);scroll-snap-align:start}
}
.lc-vreel{display:grid;gap:.65rem}
.lc-vreel a{display:grid;grid-template-columns:120px minmax(0,1fr);gap:.75rem;align-items:center;background:#fff;border:1px solid var(--lc-line);border-radius:12px;padding:.65rem;min-width:0}
.lc-vreel .thumb{aspect-ratio:16/10;border-radius:8px;overflow:hidden;position:relative;background:var(--lc-navy)}
.lc-vreel .thumb img{width:100%;height:100%;object-fit:cover}
.lc-vreel .du{position:absolute;bottom:4px;right:4px;font-size:.68rem;color:#fff;background:rgba(0,0,0,.72);padding:2px 5px;border-radius:4px}
.lc-vreel h3{font-size:.92rem;line-height:1.3}
.lc-vreel p{font-size:.8rem;color:var(--lc-ink-soft);margin-top:.2rem}
.lc-crumb{display:flex;flex-wrap:wrap;gap:.35rem .55rem;font-size:.88rem;color:var(--lc-ink-soft);min-width:0}
.lc-crumb a,.lc-crumb span:not(.s){min-width:0;overflow-wrap:anywhere;word-break:break-word}
.lc-crumb a{color:var(--lc-navy);font-weight:600}
.lc-crumb .s{opacity:.45;flex-shrink:0}
.lc-titlebar-in{display:grid;gap:.35rem;min-width:0;max-width:100%;padding-left:.35rem;overflow:hidden}
.lc-titlebar-in h1{font-family:var(--lc-serif);font-size:clamp(1.2rem,2.8vw,1.65rem);line-height:1.25;color:var(--lc-navy);margin:0;overflow-wrap:anywhere;word-break:break-word}
.lc-titlebar-in p{color:var(--lc-ink-soft);font-size:.92rem}
.lc-metarow{display:flex;flex-wrap:wrap;gap:.45rem .8rem;font-size:.84rem;color:var(--lc-ink-soft)}
.lc-metarow span{min-width:0;max-width:100%;overflow-wrap:anywhere;word-break:break-word}
.lc-metatags{flex-basis:100%}
.lc-pager{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.45rem;margin-top:1rem}
.lc-pager a{min-width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--lc-line);border-radius:10px;font-size:.86rem;font-weight:600;padding:0 .65rem;color:var(--lc-navy);text-decoration:none;background:#fff}
.lc-pager a:hover,.lc-pager a.active{background:var(--lc-navy);color:#fff;border-color:var(--lc-navy)}
.lc-catalog-row{color:inherit}
.lc-catalog-row .cell-moq{font-weight:700;color:var(--lc-terracotta)}
.lc-gal-th{display:flex;flex-direction:row;flex-wrap:nowrap;gap:.55rem;overflow-x:auto;padding-bottom:.2rem;-webkit-overflow-scrolling:touch;scrollbar-width:thin}
.lc-gal-th img{flex:0 0 80px;width:80px;height:80px;aspect-ratio:1;border-radius:10px;object-fit:cover;border:2px solid transparent;cursor:pointer}
.lc-gal-th img.on,.lc-gal-th img:hover{border-color:var(--lc-sky)}
.lc-pdmain{min-width:0;display:grid;gap:1rem}
.lc-pdmain h1{font-family:var(--lc-serif);font-size:clamp(1.35rem,2.6vw,1.85rem);color:var(--lc-navy)}
.lc-specgrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem}
.lc-specgrid>div{padding:.65rem .75rem;background:#f8fafc;border:1px solid var(--lc-line);border-radius:10px;font-size:.82rem}
.lc-specgrid .k{display:block;font-weight:700;font-size:.7rem;text-transform:uppercase;color:var(--lc-ink-soft);margin-bottom:.2rem}
.lc-specgrid .v{display:block;line-height:1.45}
.lc-pdblock{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--lc-line)}
.lc-pdblock .bt{font-family:var(--lc-serif);font-size:1.15rem;color:var(--lc-navy);margin-bottom:.75rem}
.lc-desc-card{padding:1rem 1.15rem;background:#fff;border:1px solid var(--lc-line);border-radius:12px}
.lc-pdblock-desc .lc-rich-box{overflow:visible;max-width:100%}
.lc-desc-body{color:var(--lc-ink-soft);font-size:.95rem;line-height:1.75}
.lc-desc-body p,.lc-desc-body .lc-desc-intro{margin:0 0 .85rem;color:var(--lc-ink-soft)}
.lc-desc-body p:last-child,.lc-desc-body .lc-desc-intro:last-child{margin-bottom:0}
.lc-desc-body .lc-desc-sec{font-family:var(--lc-serif);font-size:1.05rem;font-weight:600;color:var(--lc-navy);margin:1rem 0 .5rem}
.lc-desc-body .lc-desc-sec:first-child{margin-top:0}
.lc-desc-body .lc-desc-feats{margin:0 0 .85rem;padding-left:1.15rem;display:grid;gap:.35rem}
.lc-desc-body .lc-desc-feats li{line-height:1.55}
.lc-desc-body .lc-desc-offer{color:var(--lc-terracotta);font-weight:600}
.lc-desc-body table{width:100%;border:none;background:transparent;border-radius:0}
.lc-desc-body table tr{background:transparent!important}
.lc-desc-body table td,.lc-desc-body table th{border:none;padding:0 0 .65rem;background:transparent!important;vertical-align:top}
.lc-desc-body table.lc-kv-table tr{display:block;padding:0;margin:0 0 .45rem;border:none;background:transparent!important}
.lc-desc-body table.lc-kv-table td{display:block;padding:0 0 .15rem}
.lc-desc-body table.lc-kv-table td:first-child{font-weight:700;color:var(--lc-navy);font-size:.82rem}
.lc-desc-body [style*="background"]{background:transparent!important}
.lc-listchips{display:flex;flex-wrap:wrap;gap:.45rem;margin-bottom:1rem}
.lc-listchips a{padding:.35rem .7rem;border-radius:999px;border:1px solid var(--lc-line);background:#fff;font-size:.84rem;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.lc-timeline-item h3{font-family:var(--lc-serif);font-size:1.05rem;margin:.25rem 0;overflow-wrap:anywhere;word-break:break-word;line-height:1.35}
.lc-timeline-item p{color:var(--lc-ink-soft);font-size:.9rem;line-height:1.55;overflow-wrap:anywhere;word-break:break-word;margin:0}
.lc-timeline-meta{overflow-wrap:anywhere;word-break:break-word;line-height:1.45}
.lc-prose .lc-lead{font-size:1.05rem;line-height:1.75;margin-bottom:1rem}
.lc-figure{margin:0 0 1rem;border-radius:12px;overflow:hidden;border:1px solid var(--lc-line)}
.lc-prevnext{display:grid;grid-template-columns:1fr 1fr;gap:.65rem;margin:1.2rem 0}
.lc-prevnext a{padding:.75rem;border:1px solid var(--lc-line);border-radius:10px}
.lc-prevnext .l{font-size:.72rem;font-weight:700;color:var(--lc-sky)}
.lc-tagwall a b{margin-left:.35rem;color:var(--lc-terracotta)}
.lc-form label{display:block;font-size:.82rem;font-weight:600;margin-bottom:.35rem}
.lc-form input,.lc-form select,.lc-form textarea{width:100%;padding:.6rem .75rem;border:1px solid var(--lc-line);border-radius:10px;background:#fff}
.lc-form .row{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin-bottom:.75rem}
.lc-form .full{margin-bottom:.75rem}
.lc-aboutgrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
.lc-about-i{padding:1rem;background:#fff;border:1px solid var(--lc-line);border-radius:12px;border-left:4px solid var(--lc-terracotta)}
.lc-about-i blockquote{font-family:var(--lc-serif);font-size:1.05rem;line-height:1.5;color:var(--lc-navy)}
.lc-about-i cite{display:block;margin-top:.55rem;font-size:.78rem;font-weight:700;color:var(--lc-terracotta);font-style:normal}
.lc-vtabs{display:flex;flex-wrap:wrap;gap:.45rem;margin-bottom:.85rem}
.lc-vtabs a{padding:.4rem .75rem;border-radius:999px;border:1px solid var(--lc-line);background:#fff;font-weight:600;font-size:.86rem}
.lc-vrows{border:1px solid var(--lc-line);border-radius:12px;overflow:hidden;background:#fff}
.lc-vrow{display:grid;grid-template-columns:130px minmax(0,1fr);gap:.75rem;padding:.75rem 1rem;border-bottom:1px solid var(--lc-line);align-items:center}
.lc-vrow:last-child{border-bottom:none}
.lc-vrow .thumb{aspect-ratio:16/10;border-radius:8px;overflow:hidden;position:relative}
.lc-vrow .thumb img{width:100%;height:100%;object-fit:cover}
.lc-vrow .du{position:absolute;bottom:4px;right:4px;font-size:.68rem;color:#fff;background:rgba(0,0,0,.7);padding:2px 5px;border-radius:4px}
.lc-vplayer iframe,.lc-vplayer video{width:100%;aspect-ratio:16/9;border:none;display:block}
.lc-404{text-align:center;padding:3rem 1rem}
.lc-404 .code{font-size:clamp(4rem,12vw,6rem);font-family:var(--lc-serif);color:var(--lc-sky);opacity:.45;line-height:1}
.lc-policy-lead{color:var(--lc-ink-soft);line-height:1.65}
.lc-policy-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem}
.lc-policy-stats div{padding:.75rem;background:#fff;border:1px solid var(--lc-line);border-radius:10px;font-size:.84rem}
.lc-policy-stats strong{display:block;color:var(--lc-navy)}
.lc-policy-act{display:flex;flex-wrap:wrap;gap:.55rem;margin:.75rem 0}
.lc-policy-card{padding:1.2rem;background:#fff;border:1px solid var(--lc-line);border-radius:12px}
.lc-legal .upd{font-size:.86rem;color:var(--lc-ink-soft);margin-bottom:.75rem}
.lc-footgrid{display:grid;grid-template-columns:1.3fr repeat(3,minmax(0,1fr));gap:1rem;padding:1.25rem var(--lc-pad) 1rem;font-size:.84rem;background:#fff;border-top:1px solid var(--lc-line)}
.lc-footgrid h4{font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;color:var(--lc-navy);margin-bottom:.5rem}
.lc-footgrid a{color:var(--lc-ink-soft)}
.lc-footgrid a:hover{color:var(--lc-terracotta)}
.lc-menufull .lc-macc{border-bottom:1px solid rgba(255,255,255,.12)}
.lc-menufull .lc-macc-h{width:100%;display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.85rem 0;background:none;border:none;color:#fff;font-size:1rem;font-weight:700;text-align:left;cursor:pointer}
.lc-menufull .lc-macc-h::after{content:"";flex-shrink:0;width:8px;height:8px;border-right:2px solid rgba(255,255,255,.7);border-bottom:2px solid rgba(255,255,255,.7);transform:rotate(45deg);transition:transform .2s ease;margin-left:auto}
.lc-menufull .lc-macc.open .lc-macc-h::after{transform:rotate(-135deg)}
.lc-menufull .lc-macc-b{max-height:0;overflow:hidden;transition:max-height .22s ease-out}
.lc-menufull .lc-macc.open .lc-macc-b{max-height:800px}
.lc-menufull .lc-macc-b a{display:block;padding:.45rem 0 .45rem .75rem;font-size:.92rem;background:transparent}
.lc-rich-box{overflow-x:auto;max-width:100%}
.lc-rich{font-size:.95rem;line-height:1.75;overflow-wrap:anywhere;word-break:break-word}
.lc-rich img,.lc-rich video{display:block;max-width:100%;width:auto;height:auto;border-radius:10px;margin:.85rem auto}
.lc-tablescroll{overflow-x:auto;max-width:100%;margin:.85rem 0;-webkit-overflow-scrolling:touch;scrollbar-width:thin}
@media(max-width:959px){
  .lc-flyout{display:none}
  .lc-catfilter{flex-wrap:nowrap;overflow-x:auto;gap:.45rem;padding:.7rem .75rem;-webkit-overflow-scrolling:touch;scroll-snap-type:x proximity;scrollbar-width:none}
  .lc-catfilter::-webkit-scrollbar{display:none}
  .lc-catfilter a{flex:0 0 auto;scroll-snap-align:start;white-space:nowrap;border-radius:999px;padding:.45rem .95rem;font-size:.8rem;background:#fff}
  .lc-aboutgrid,.lc-policy-stats,.lc-form .row,.lc-prevnext{grid-template-columns:1fr}
  .lc-vreel a{grid-template-columns:1fr;align-items:stretch;padding:.75rem}
  .lc-vreel .thumb{width:100%}
  .lc-vreel h3{font-size:1rem;line-height:1.35;margin-top:.1rem}
  .lc-vreel p{margin-top:.35rem;line-height:1.5}
  .lc-vrow{grid-template-columns:1fr;align-items:stretch}
  .lc-vrow .thumb{width:100%}
  .lc-footgrid{display:grid;grid-template-columns:1fr 1fr;gap:1rem 1.25rem;padding:1rem clamp(.9rem,4vw,1.15rem) .75rem}
  .lc-footcol:first-child{grid-column:1/-1}
  .lc-footcol{min-width:0}
  .lc-footcol ul{display:grid;gap:.35rem}
  .lc-footcol a{display:block;line-height:1.4;overflow-wrap:anywhere;word-break:break-word}
  .lc-tabbar{display:grid}
  .lc-copyright{padding-bottom:calc(4.2rem + env(safe-area-inset-bottom));justify-content:center;text-align:center;font-size:.76rem}
  .lc-footbar{flex-direction:column;align-items:stretch;gap:.65rem;margin-bottom:0;padding:.85rem clamp(.9rem,4vw,1.15rem);font-size:.82rem;border-top:1px solid var(--lc-line)}
  .lc-footbar a{align-self:center}
  .lc-tabbar a,.lc-tabbar button{width:100%;min-width:0;white-space:nowrap}
}
@media(max-width:639px){
  .lc-footgrid{grid-template-columns:1fr}
}
