/* ============================================================
   NAMENLOS — shared site header (Lab template)
   Use on every page: site-header + header-tape + header-inner
   Logo: rectangular frame on hover (white field, yellow NAMENLOS)
   ============================================================ */

/* Brand wall — site-wide page background (every page that loads this file) */
:root {
  --wall-punk: url("../images/texture/wall_punk.jpg");
  --wall-fallback: #050505;
  /* Single veil so graffiti stays readable (avoid stacking two dark layers) */
  --wall-veil: linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.8));
  --texture: var(--wall-punk);
  --bg: var(--wall-fallback);
}

html {
  min-height: 100%;
  background-color: var(--wall-fallback);
  background-image: var(--wall-veil), var(--wall-punk);
  background-position: center top;
  background-size: cover;
  /* fixed breaks / lags on iOS Safari — use scroll on touch */
  background-attachment: fixed;
  background-repeat: no-repeat;
}

@supports (-webkit-touch-callout: none) {
  html {
    background-attachment: scroll;
  }
}

@media (max-width: 900px) {
  html {
    background-attachment: scroll;
  }
}

.site-header,
.lab-header,
.shell-header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  padding-top: env(safe-area-inset-top, 0);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  overflow: visible;
}

.header-tape,
.shell-tape {
  height: 4px;
  width: 100%;
  opacity: 1;
  background: repeating-linear-gradient(
    -45deg,
    #f5c518 0 10px,
    #0a0a0a 10px 20px
  );
}

.header-inner,
.lab-header-inner,
.shell-header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem 0.55rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-height: 64px;
  overflow: visible;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-side.left {
  justify-content: flex-end;
}

.nav-side.right {
  justify-content: flex-end;
  gap: 0.4rem;
  justify-self: end;
}

/* Keep lang + Book on one line, compact Lab proportions */
.site-header .nav-side.right .lang-row,
.lab-header .nav-side.right .lang-row,
.shell-header .nav-side.right .lang-row {
  flex-wrap: nowrap;
  flex-shrink: 0;
  width: auto;
  margin: 0;
}

.site-header .btn-book,
.lab-header .btn-book,
.header-inner .btn-book {
  flex-shrink: 0;
  align-self: center;
  height: 1.9rem;
  min-height: 1.9rem;
  padding: 0 0.75rem !important;
  box-sizing: border-box;
  line-height: 1;
}

/* Legacy shell actions map into right side flex */
.shell-header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.nav-a {
  position: relative;
  font-family: var(--font-nav, "Montserrat", "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none !important;
  padding: 0.42rem 0.5rem;
  background: none;
  border: 1px solid transparent;
  transition: color 0.12s, letter-spacing 0.12s;
}

.nav-a::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.28rem;
  height: 3px;
  background: var(--yellow, #f5c518);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-a:hover {
  color: var(--yellow, #f5c518);
  letter-spacing: 0.05em;
}

.nav-a:hover::after {
  transform: scaleX(1);
}

/* Current page in the product map (Site · Lab · Book) */
.nav-a.is-current,
.nav-a[aria-current="page"] {
  color: var(--yellow, #f5c518) !important;
}

.nav-a.is-current::after,
.nav-a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header .btn-book.is-current,
.lab-header .btn-book.is-current,
.header-inner .btn-book.is-current,
a.btn-book.is-current {
  box-shadow: 0 0 0 1px #000, 0 0 0 3px rgba(245, 197, 24, 0.45);
  pointer-events: none;
}

/* ---------- Logo (rectangular hover frame) ---------- */
a.logo-center,
.logo-center,
a.logo-stack {
  justify-self: center;
  text-decoration: none !important;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 0.28rem 0.65rem 0.32rem;
  border: 1px solid transparent;
  background: transparent;
  min-width: 0;
  max-width: max-content;
  width: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    padding 0.28s ease,
    min-height 0.28s ease;
}

/* Compact one-line mark (shown when header is sticky-scrolled) */
.logo-compact {
  display: none;
  font-family: var(--font-logo, var(--font-impact, "Oswald", "Montserrat", system-ui, sans-serif));
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

.logo-compact .logo-compact-tattoo {
  color: var(--yellow, #f5c518);
  margin-left: 0.28em;
  font-size: 0.85em;
  letter-spacing: 0.14em;
}

.logo-stack-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
  animation: logo-stack-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logo-stack-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

a.logo-center:visited,
a.logo-center:active,
a.logo-center:focus,
a.logo-stack:visited,
a.logo-stack:active,
a.logo-stack:focus {
  color: #fff !important;
  text-decoration: none !important;
}

a.logo-center:focus-visible,
a.logo-stack:focus-visible {
  outline: none;
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.25);
}

/* No spray layers */
a.logo-center::before,
a.logo-center::after,
.logo-center::before,
.logo-center::after,
a.logo-stack::before,
a.logo-stack::after {
  content: none !important;
  display: none !important;
}

/* Hover = rectangular frame (negative) */
a.logo-center:hover,
.logo-center:hover,
a.logo-stack:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
  text-decoration: none !important;
  box-shadow:
    0 0 0 1px #000,
    0 8px 22px rgba(0, 0, 0, 0.45);
}

a.logo-center:hover .logo-namenlos,
.logo-center:hover .logo-namenlos,
a.logo-stack:hover .logo-namenlos {
  color: var(--yellow, #f5c518) !important;
  text-shadow: none !important;
}

a.logo-center:hover .logo-tattoo,
.logo-center:hover .logo-tattoo,
a.logo-stack:hover .logo-tattoo,
a.logo-center:hover .logo-viktoriia,
.logo-center:hover .logo-viktoriia,
a.logo-stack:hover .logo-viktoriia {
  color: #000 !important;
  opacity: 1;
  text-shadow: none !important;
}

a.logo-center:hover .logo-bar,
.logo-center:hover .logo-bar,
a.logo-stack:hover .logo-bar {
  background: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent) !important;
  box-shadow: none !important;
  animation: none !important;
}

.logo-namenlos {
  font-family: var(--font-logo, var(--font-impact, "Oswald", "Montserrat", system-ui, sans-serif));
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.logo-tattoo {
  display: inline-block;
  font-family: var(--font-nav, "Montserrat", "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.42em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow, #f5c518) !important;
  text-decoration: none !important;
  vertical-align: middle;
  margin-left: 0.35em;
  opacity: 0.95;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.logo-bar {
  display: block;
  height: 1.5px;
  width: 78%;
  margin: 0.34em auto 0.3em;
  background: linear-gradient(90deg, transparent, var(--yellow, #f5c518) 15%, var(--yellow, #f5c518) 85%, transparent);
  box-shadow: 0 0 3px rgba(255, 225, 74, 0.8), 0 0 9px rgba(245, 197, 24, 0.5);
  animation: header-bar-glow 2.8s ease-in-out infinite;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.logo-viktoriia {
  font-family: var(--font-nav, "Montserrat", "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: clamp(0.58rem, 1vw, 0.72rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow, #f5c518) !important;
  text-decoration: none !important;
  line-height: 1.1;
  transition: color 0.18s ease;
}

@keyframes header-bar-glow {
  0%,
  100% {
    box-shadow: 0 0 2px rgba(255, 225, 74, 0.55), 0 0 6px rgba(245, 197, 24, 0.35);
  }
  50% {
    box-shadow: 0 0 4px rgba(255, 225, 74, 1), 0 0 13px rgba(245, 197, 24, 0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-bar {
    animation: none;
  }

  .logo-stack-full {
    animation: none;
  }
}

/* ---------- Lang chips ---------- */
.lang-row,
.shell-lang {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.28rem;
  padding: 0;
  border: none;
  background: transparent;
}

/* Header lang chips — compact, solid yellow (Lab size) */
.site-header button.lang-chip,
.site-header button.lang-btn,
.lab-header button.lang-chip,
.lab-header button.lang-btn,
.shell-header button.lang-chip,
.shell-header button.lang-btn,
.site-header .lang-row button,
.lab-header .lang-row button,
.shell-header .lang-row button,
.shell-header .shell-lang button {
  -webkit-appearance: none !important;
  appearance: none !important;
  font-family: var(--font-nav, "Montserrat", "Inter", system-ui, sans-serif) !important;
  font-weight: 700 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #000 !important;
  background: var(--yellow, #f5c518) !important;
  background-color: var(--yellow, #f5c518) !important;
  border: 2px solid var(--yellow, #f5c518) !important;
  border-radius: 0 !important;
  padding: 0 0.48rem !important;
  min-width: 2.05rem !important;
  width: auto !important;
  height: 1.9rem !important;
  min-height: 1.9rem !important;
  max-height: 1.9rem !important;
  cursor: pointer !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transform: none !important;
  margin: 0 !important;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s !important;
}

.site-header button.lang-chip:hover,
.site-header button.lang-btn:hover,
.lab-header button.lang-chip:hover,
.lab-header button.lang-btn:hover,
.shell-header button.lang-chip:hover,
.shell-header button.lang-btn:hover,
.site-header .lang-row button:hover,
.lab-header .lang-row button:hover {
  background: var(--yellow-hot, #ffe14a) !important;
  border-color: var(--yellow-hot, #ffe14a) !important;
  color: #000 !important;
  box-shadow: 0 0 14px rgba(245, 197, 24, 0.35) !important;
  transform: none !important;
}

.site-header button.lang-chip.active,
.site-header button.lang-btn.active,
.lab-header button.lang-chip.active,
.lab-header button.lang-btn.active,
.shell-header button.lang-chip.active,
.shell-header button.lang-btn.active,
.site-header .lang-row button.active,
.lab-header .lang-row button.active {
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
  box-shadow: 0 0 0 1px #000 !important;
}

/* ---------- Book button (Lab style) ---------- */
.site-header .btn,
.lab-header .btn,
.header-inner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: 0.15s;
}

.site-header .btn-yellow,
.lab-header .btn-yellow,
.shell-header .btn-yellow,
.header-inner .btn-yellow,
.btn-book,
.shell-btn.solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav, "Montserrat", "Inter", system-ui, sans-serif) !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  padding: 0.5rem 0.85rem !important;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none !important;
  background: var(--yellow, #f5c518);
  border: 2px solid var(--yellow, #f5c518);
  color: #000;
  border-radius: 0;
  cursor: pointer;
  transition: 0.15s;
}

.site-header .btn-yellow:hover,
.lab-header .btn-yellow:hover,
.btn-book:hover,
.shell-btn.solid:hover {
  background: var(--yellow-hot, #ffe14a);
  border-color: var(--yellow-hot, #ffe14a);
  color: #000;
}

/* Ghost shell buttons → nav-a style if still used */
.shell-btn:not(.solid) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.55rem;
  font-family: var(--font-nav, "Montserrat", "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  transition: color 0.12s;
}

.shell-btn:not(.solid):hover {
  color: var(--yellow, #f5c518);
}

.shell-meta {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Mobile header: ONE row, no wrap ----------
   [Logo] [Site Lab Designs] [RU EN…] [Book]
*/
@media (max-width: 900px) {
  .header-inner,
  .lab-header-inner,
  .shell-header-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.35rem 0.45rem;
    min-height: 0;
    gap: 0.25rem;
  }

  .nav-side.left {
    display: flex !important;
    order: 2;
    width: auto;
    max-width: none;
    justify-content: flex-start !important;
    gap: 0;
    flex-wrap: nowrap !important;
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav-side.left .nav-a {
    font-size: 0.58rem;
    padding: 0.35rem 0.32rem;
    min-height: 2.25rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }

  a.logo-center,
  .logo-center,
  a.logo-stack {
    order: 1;
    position: relative;
    z-index: 1;
    min-width: 0 !important;
    max-width: max-content;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 0.2rem 0.4rem;
    justify-self: start;
    /* avoid stretched “long strip” */
    align-self: center;
  }

  .nav-side.right,
  .shell-header-actions {
    order: 3;
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    max-width: none !important;
    width: auto !important;
    justify-content: flex-end !important;
    justify-self: end;
    flex-wrap: nowrap !important;
    gap: 0.2rem;
    z-index: 1;
    flex: 0 0 auto;
  }

  .logo-namenlos {
    font-size: 0.72rem;
  }

  .logo-viktoriia {
    font-size: 0.46rem;
    letter-spacing: 0.12em;
  }

  .logo-bar {
    margin: 0.12em auto 0.1em;
    width: 78%;
    max-width: 5.5rem;
  }

  /* Sticky scrolled: collapse to NAMENLOS TATTOO */
  .site-header.is-solid a.logo-center,
  .lab-header.is-solid a.logo-center,
  .shell-header.is-solid a.logo-center,
  .site-header.is-solid .logo-center,
  .lab-header.is-solid .logo-center {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    min-width: 9.5rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(245, 197, 24, 0.35);
  }

  .site-header.is-solid .logo-stack-full,
  .lab-header.is-solid .logo-stack-full,
  .shell-header.is-solid .logo-stack-full {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  /* Fallback if markup has no .logo-stack-full wrapper */
  .site-header.is-solid .logo-bar,
  .lab-header.is-solid .logo-bar,
  .shell-header.is-solid .logo-bar,
  .site-header.is-solid .logo-viktoriia,
  .lab-header.is-solid .logo-viktoriia,
  .shell-header.is-solid .logo-viktoriia {
    display: none !important;
  }

  .site-header.is-solid .logo-namenlos,
  .lab-header.is-solid .logo-namenlos,
  .shell-header.is-solid .logo-namenlos {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .site-header.is-solid .logo-tattoo,
  .lab-header.is-solid .logo-tattoo,
  .shell-header.is-solid .logo-tattoo {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-left: 0.3em;
    vertical-align: baseline;
  }

  .site-header.is-solid .logo-compact,
  .lab-header.is-solid .logo-compact,
  .shell-header.is-solid .logo-compact {
    display: inline-flex;
    align-items: center;
    animation: logo-compact-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes logo-compact-in {
    from {
      opacity: 0;
      transform: translateY(6px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .site-header .lang-row,
  .lab-header .lang-row,
  .shell-header .lang-row {
    gap: 0.12rem;
    justify-content: flex-end;
    flex-wrap: nowrap !important;
    flex-shrink: 0;
  }

  .site-header button.lang-chip,
  .site-header button.lang-btn,
  .lab-header button.lang-chip,
  .lab-header button.lang-btn,
  .shell-header button.lang-chip,
  .shell-header button.lang-btn,
  .site-header .lang-row button,
  .lab-header .lang-row button {
    font-size: 0.55rem !important;
    padding: 0 0.28rem !important;
    min-width: 1.7rem !important;
    height: 2.25rem !important;
    min-height: 2.25rem !important;
    max-height: none !important;
  }

  .site-header .btn-book,
  .lab-header .btn-book,
  .header-inner .btn-book,
  .shell-btn.solid {
    font-size: 0.58rem !important;
    height: 2.25rem !important;
    min-height: 2.25rem !important;
    padding: 0 0.5rem !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* Very narrow phones — keep single row, tighter */
@media (max-width: 380px) {
  .site-header button.lang-chip,
  .site-header button.lang-btn,
  .lab-header button.lang-btn,
  .site-header .lang-row button {
    min-width: 1.55rem !important;
    font-size: 0.5rem !important;
    padding: 0 0.2rem !important;
  }

  .nav-side.left .nav-a {
    font-size: 0.52rem;
    padding: 0.3rem 0.22rem;
  }

  .logo-namenlos {
    font-size: 0.64rem;
  }

  .logo-viktoriia {
    font-size: 0.4rem;
  }

  .site-header.is-solid .logo-compact {
    font-size: 0.68rem;
  }

  .site-header .btn-book,
  .lab-header .btn-book,
  .header-inner .btn-book {
    font-size: 0.52rem !important;
    padding: 0 0.4rem !important;
  }
}

/* ============================================================
   Shared footer — same on every page (Lab template)
   Classes: site-foot | lab-foot | shell-foot (aliases)
   ============================================================ */
.site-foot,
.lab-foot,
.shell-foot {
  margin-top: auto;
  width: 100%;
  max-width: none;
  padding: 0.85rem clamp(0.85rem, 2.5vw, 1.5rem) max(1rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(245, 197, 24, 0.22);
  background: rgba(5, 5, 5, 0.9);
  font-family: var(--font-nav, "Montserrat", "Inter", system-ui, sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.site-foot-brand,
.site-foot > span:first-child,
.lab-foot > span:first-child,
.shell-foot > span:first-child {
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.48);
  white-space: nowrap;
}

.site-foot-links,
.lab-foot-links,
.shell-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.site-foot a,
.lab-foot a,
.shell-foot a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.site-foot a:hover,
.lab-foot a:hover,
.shell-foot a:hover {
  color: var(--yellow, #f5c518);
}

.site-foot a.is-current,
.lab-foot a.is-current,
.shell-foot a.is-current,
.site-foot a[aria-current="page"],
.lab-foot a[aria-current="page"],
.shell-foot a[aria-current="page"] {
  color: var(--yellow, #f5c518);
}

@media (max-width: 560px) {
  .site-foot,
  .lab-foot,
  .shell-foot {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 0.75rem 0.75rem 0.9rem;
  }

  .site-foot-links,
  .lab-foot-links,
  .shell-foot-links {
    justify-content: center;
    gap: 0.45rem 0.75rem;
  }

  .site-foot-brand,
  .site-foot > span:first-child,
  .lab-foot > span:first-child,
  .shell-foot > span:first-child {
    white-space: normal;
    font-size: 0.62rem;
  }
}
