/* Licensing-show 2026 landing page styles.
   Standalone — does not inherit from app's style.css. Designed for cold
   first-time visitors on conference wifi, mobile-first.

   Visual language: black + bone + crimson accent. Generous whitespace.
   Big confident type. No CRM chrome. */

:root {
    /* Equipe brand navy = #374051 (base_color in scripts/branding/render_equipe_3d.py).
       Used as the hero/team background — pure black was strong but brand-neutral; the
       brand navy reads as "Equipe" the moment the page loads.

       The CTA accent steps brighter into the same hue family so buttons + focus rings
       pop on the navy without breaking brand continuity. */
    --ls-ink: #1e2530;            /* near-black, but warmed toward the brand navy */
    --ls-navy: #374051;           /* exact Equipe brand navy */
    --ls-bone: #f6f3ee;
    --ls-paper: #ffffff;
    --ls-accent: #3d6db2;         /* brighter Equipe-family blue — visible on navy */
    --ls-accent-hover: #2c5897;
    --ls-muted: #6c6f73;
    --ls-rule: #e4dfd6;
    --ls-shadow: 0 8px 28px -6px rgba(30, 37, 48, 0.18);
    --ls-shadow-sm: 0 2px 8px rgba(30, 37, 48, 0.08);

    /* Alias kept so older selectors don't break mid-refactor — same value as accent. */
    --ls-crimson: var(--ls-accent);
}

* { -webkit-text-size-adjust: 100%; }

html, body { background: var(--ls-bone); }

.license-body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
    color: var(--ls-ink);
    line-height: 1.55;
    margin: 0;
    padding: 0;
}

/* ─── Top bar ─────────────────────────────────────────────────────────── */

.ls-topbar {
    background: var(--ls-ink);
    color: var(--ls-bone);
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.02em;
    gap: 12px;
}

.ls-topbar-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;       /* prevent extra inline-block descender space */
}

/* The Equipe brand logo is dark navy on transparent. On the dark topbar it
   would vanish — invert to bone-white. The `brightness(0)` collapses to pure
   black first, then `invert(1)` flips to white, regardless of the source RGB.
   This works because the logo is single-color; if it ever gets multi-color
   treatment, we'll ship a white PNG instead. */
.ls-topbar-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.ls-topbar .ls-show-badge {
    background: var(--ls-crimson);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* ─── Hero ────────────────────────────────────────────────────────────── */

.ls-hero {
    background: var(--ls-ink);
    color: var(--ls-bone);
    padding: 80px 24px 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ls-hero::after {
    /* subtle radial vignette */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.04), transparent 60%);
    pointer-events: none;
}

.ls-hero .ls-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    color: var(--ls-crimson);
    font-weight: 700;
    margin-bottom: 16px;
}

.ls-hero h1 {
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 auto 24px;
    max-width: 900px;
}

.ls-hero h1 em {
    font-style: normal;
    color: var(--ls-crimson);
}

.ls-hero .ls-sub {
    color: rgba(246, 243, 238, 0.78);
    font-size: clamp(16px, 1.5vw, 19px);
    max-width: 680px;
    margin: 0 auto 36px;
}

/* Hero brand strip — Patrick wanted all 3 brand logos in the top-of-fold so
   licensors see brand-stewardship credibility before they scroll. Logos
   sit between the subhead and the CTA row. */
.ls-hero-brands {
    margin: 36px auto 40px;
    max-width: 920px;
}

.ls-brand-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 600;
    color: rgba(246, 243, 238, 0.5);
    margin-bottom: 22px;
}

/* Each brand sits in its own fixed-height cell so the row aligns even when
   the actual rendered logo height differs per brand. The cell defines the
   alignment box; the per-brand image height tweaks compensate for each
   logo's visual density (wordmarks read smaller than mark+wordmark lockups). */
.ls-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 56px;
    flex-wrap: wrap;
}
.ls-brand-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex: 0 0 auto;
}

.ls-hero-brand-logo {
    width: auto;
    object-fit: contain;
    opacity: 0.95;
    display: block;
}

/* Per-brand size tuning — tweaked after measuring the actual rendered boxes
   on prod. MBS source was just cropped to remove whitespace, so its natural
   aspect is now ~9.2:1 (very wide + short). At equal HEIGHT the row reads
   unevenly because MBS would be enormous-wide; at equal WIDTH it'd be tiny-
   short. The values below balance visual weight (heart icon ~matches CVXCA
   C-mark size, equipe-shield ~matches MBS heart). */
.ls-brand-cvxca  { height: 56px;  max-width: 240px; }
.ls-brand-equipe { height: 70px;  max-width: 320px; }
.ls-brand-mbs    { height: 50px;  max-width: 480px; }

/* `ls-invert` flips a dark-on-transparent logo to white. Used on the Equipe
   master logo and the dark CVXCA wordmark. MBS stays sage green. */
.ls-invert {
    filter: brightness(0) invert(1);
}

@media (max-width: 640px) {
    .ls-brand-cell { height: 56px; }
    .ls-brand-cvxca  { height: 38px; }
    .ls-brand-equipe { height: 48px; }
    .ls-brand-mbs    { height: 44px; }
    .ls-brand-row { gap: 28px; }
    .ls-hero-brand-logo { max-width: 180px; }
}

.ls-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ls-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform 0.12s ease, background 0.18s ease;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
}

.ls-btn:active { transform: translateY(1px); }

.ls-btn-primary {
    background: var(--ls-crimson);
    color: white;
    border-color: var(--ls-crimson);
}
.ls-btn-primary:hover { background: #a83121; border-color: #a83121; color: white; }

.ls-btn-ghost {
    background: transparent;
    color: var(--ls-bone);
    border-color: rgba(246, 243, 238, 0.35);
}
.ls-btn-ghost:hover { background: rgba(246, 243, 238, 0.08); color: var(--ls-bone); }

.ls-btn-dark {
    background: var(--ls-ink);
    color: var(--ls-bone);
}
.ls-btn-dark:hover { background: #25262a; color: var(--ls-bone); }

.ls-btn-block {
    width: 100%;
    justify-content: center;
}

/* ─── Scroll-fade-in (used on stats, capabilities, pillars, team cards) ── */

.ls-fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.ls-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .ls-fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ─── Stats strip ─────────────────────────────────────────────────────── */

.ls-stats {
    background: var(--ls-bone);
    padding: 64px 24px;
    border-bottom: 1px solid var(--ls-rule);
}

.ls-stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    text-align: center;
}

.ls-stat-value {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--ls-accent);
    line-height: 1;
    letter-spacing: -0.03em;
    font-feature-settings: "tnum";
    margin-bottom: 8px;
}

.ls-stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ls-muted);
}

@media (max-width: 820px) {
    .ls-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 32px;
    }
    .ls-stats-grid .ls-stat:nth-child(4),
    .ls-stats-grid .ls-stat:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .ls-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── Customer marquee ────────────────────────────────────────────────── */

.ls-marquee {
    background: var(--ls-paper);
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--ls-rule);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}
.ls-marquee-label {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--ls-muted);
    white-space: nowrap;
}
/* Seamless infinite scroll. Two requirements for it to not "jolt":
   1. The track's children are duplicated (two identical halves).
   2. The animation translates exactly the width of ONE half — which is 50% of
      the total flex track width AS LONG AS the gap between items is the same
      as the gap between halves. Flex's `gap` property doesn't add extra space
      between the last item of half A and the first of half B, so this works.
   3. We need `width: max-content` so the flex container's width is the actual
      content width (not constrained by parent), otherwise translate(-50%) is
      computed against a clipped width and the loop visibly jumps.

   Patrick caught a non-continuous reset + faded items mid-marquee. Reduced
   edge mask fade from 6% → 2% so items don't look perpetually faded as they
   cross. */
.ls-marquee-track {
    display: flex;
    gap: 48px;
    padding-right: 48px;          /* matches the gap so the seam between halves is uniform */
    white-space: nowrap;
    width: max-content;
    animation: ls-marquee 50s linear infinite;
    mask-image: linear-gradient(to right, transparent 0%, #000 2%, #000 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 2%, #000 98%, transparent 100%);
}
.ls-marquee-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--ls-ink);
    letter-spacing: -0.005em;
    opacity: 0.7;
    flex: 0 0 auto;
    align-self: center;
}

/* Brand logos in the marquee. Native colors (Supreme red, UCLA gold/blue, etc.)
   pop on the bone background. Uniform height keeps the row visually even
   despite very different aspect ratios. */
.ls-marquee-logo {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    flex: 0 0 auto;
    align-self: center;
    opacity: 0.92;
}
@keyframes ls-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ls-marquee-track { animation: none; }
}

/* ─── Capabilities strip ──────────────────────────────────────────────── */

.ls-cap-strip {
    background: var(--ls-paper);
    padding: 40px 24px;
    border-bottom: 1px solid var(--ls-rule);
}

.ls-cap-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.ls-cap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ls-cap i {
    font-size: 24px;
    color: var(--ls-crimson);
    flex: 0 0 24px;
    line-height: 1;
}

.ls-cap-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ls-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.ls-cap-value {
    font-weight: 600;
    color: var(--ls-ink);
    font-size: 15px;
    line-height: 1.3;
}

@media (max-width: 720px) {
    .ls-cap-strip .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .ls-cap-strip .container {
        grid-template-columns: 1fr;
    }
}

/* ─── Pillars ─────────────────────────────────────────────────────────── */

.ls-pillars {
    padding: 80px 24px;
}

.ls-section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.ls-section-title .ls-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: var(--ls-crimson);
    font-weight: 700;
    margin-bottom: 12px;
}

.ls-section-title h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
}

.ls-section-title p {
    color: var(--ls-muted);
    margin: 0;
    font-size: 17px;
}

/* Stacked pillar layout: hero image full-width on top, content below.
   Replaced the side-by-side grid because heroes of different aspect ratios
   (4:1 MBS, 2.3:1 aquatics, 2.3:1 medical-collage) were getting badly cropped
   in a fixed 1fr 1fr cell. Stacking lets each source breathe at its natural
   aspect. Patrick called the cropping out 2026-05-18 evening. */
.ls-pillar {
    background: var(--ls-paper);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--ls-shadow);
    margin: 0 auto 36px;
    max-width: 1100px;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ls-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -12px rgba(30, 37, 48, 0.25);
}

/* Aspect-ratio is set inline per-pillar from the source image's natural ratio
   (services/licensing_show.py PILLARS[].hero_aspect). The default below is a
   fallback only; inline always wins. Patrick caught mobile cropping when a
   one-size fits-all 16:9 was forced on a 4:1 source. Letting each hero show
   at its native ratio kills the cropping. */
.ls-pillar-media {
    background: #ece8df;
    width: 100%;
    aspect-ratio: 21 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ls-pillar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ls-pillar-media .ls-placeholder {
    color: var(--ls-muted);
    text-align: center;
    padding: 24px;
    font-size: 14px;
}

.ls-pillar-body {
    padding: 44px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ls-pillar-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    color: var(--ls-crimson);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Patrick wanted brand logos more prominent — Gamma reference. Bumped from 38px
   to 64px tall, more aggressive max-width, more breathing room above/below. */
.ls-pillar-brand-logo {
    height: 64px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin: 4px 0 22px;
}

.ls-pillar h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    line-height: 1.15;
}

.ls-pillar-subtitle {
    color: var(--ls-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.ls-pillar ul {
    margin: 0 0 22px;
    padding-left: 0;
    list-style: none;
}

.ls-pillar ul li {
    position: relative;
    padding-left: 26px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.ls-pillar ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.12);
    border: 2px solid var(--ls-crimson);
}

.ls-pillar-pitch {
    padding: 16px 18px;
    background: var(--ls-bone);
    border-left: 3px solid var(--ls-crimson);
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    color: var(--ls-ink);
    line-height: 1.55;
    font-style: italic;
}

@media (max-width: 820px) {
    /* Don't force a mobile aspect-ratio override — let the per-pillar inline
       aspect-ratio win so wide heroes (4:1 MBS, 2.3:1 collages) keep their
       native shape on phone. Without this carve-out, a 4:1 source forced
       into 16:9 lost ~60% of its content to side-crop. */
    .ls-pillar-body {
        padding: 28px 22px 32px;
    }
}

/* ─── Team / VCF cards ────────────────────────────────────────────────── */

.ls-team {
    background: var(--ls-ink);
    color: var(--ls-bone);
    padding: 80px 24px;
}

.ls-team .ls-section-title h2 { color: var(--ls-bone); }
.ls-team .ls-section-title p { color: rgba(246, 243, 238, 0.75); }

.ls-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.ls-card {
    background: rgba(246, 243, 238, 0.05);
    border: 1px solid rgba(246, 243, 238, 0.12);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ls-card:hover {
    border-color: var(--ls-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px -16px rgba(0, 0, 0, 0.5);
}

.ls-card-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    background: rgba(246, 243, 238, 0.08);
    display: block;
    border: 3px solid rgba(246, 243, 238, 0.15);
}

.ls-card-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    color: rgba(246, 243, 238, 0.55);
    background: rgba(246, 243, 238, 0.08);
    border: 3px solid rgba(246, 243, 238, 0.15);
    letter-spacing: -0.02em;
}

.ls-card-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ls-card-title {
    color: rgba(246, 243, 238, 0.78);
    font-size: 14px;
    margin-bottom: 16px;
    min-height: 1.2em;
}

/* Plain-text contact block under the title — Patrick asked for the info to
   live on the page (not just behind the VCF download) so brand reps who don't
   use vcards can still copy/tap-to-call/tap-to-email. mailto: + tel: links
   open the right app on tap. */
.ls-card-contact {
    list-style: none;
    margin: 0 0 18px;
    padding: 12px 14px;
    text-align: left;
    background: rgba(246, 243, 238, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(246, 243, 238, 0.08);
}
.ls-card-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(246, 243, 238, 0.92);
    padding: 5px 0;
    line-height: 1.35;
}
.ls-card-contact li + li {
    border-top: 1px solid rgba(246, 243, 238, 0.06);
}
.ls-card-contact i {
    color: var(--ls-accent);
    font-size: 13px;
    flex: 0 0 16px;
    text-align: center;
}
.ls-card-contact a {
    color: rgba(246, 243, 238, 0.92);
    text-decoration: none;
    word-break: break-word;
}
.ls-card-contact a:hover {
    color: var(--ls-bone);
    text-decoration: underline;
}
.ls-card-contact span {
    word-break: break-word;
}
.ls-contact-label {
    margin-left: auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(246, 243, 238, 0.5);
    flex: 0 0 auto;
    word-break: normal;
}

.ls-card .ls-btn {
    width: 100%;
    justify-content: center;
}

/* ─── Inquiry form ────────────────────────────────────────────────────── */

.ls-inquire {
    padding: 80px 24px;
    background: var(--ls-bone);
}

.ls-inquire-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--ls-paper);
    border-radius: 14px;
    padding: 40px 36px;
    box-shadow: var(--ls-shadow);
}

.ls-inquire-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.015em;
}
.ls-inquire-card p.lead {
    color: var(--ls-muted);
    margin-bottom: 28px;
}

.ls-field {
    margin-bottom: 16px;
}
.ls-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ls-ink);
    margin-bottom: 6px;
}
.ls-field input,
.ls-field textarea {
    width: 100%;
    border: 1.5px solid var(--ls-rule);
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 15px;
    color: var(--ls-ink);
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background: var(--ls-paper);
}
.ls-field input:focus,
.ls-field textarea:focus {
    outline: none;
    border-color: var(--ls-crimson);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.ls-field textarea {
    resize: vertical;
    min-height: 90px;
}
.ls-field-error {
    color: var(--ls-crimson);
    font-size: 13px;
    margin-top: 4px;
}
.ls-honey {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ls-form-status {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}
.ls-form-status.ok {
    background: #e7f8ec;
    color: #155724;
    display: block;
}
.ls-form-status.err {
    background: #fde9e9;
    color: #a8281a;
    display: block;
}

/* ─── Footer ──────────────────────────────────────────────────────────── */

.ls-footer {
    background: var(--ls-ink);
    color: rgba(246, 243, 238, 0.6);
    padding: 36px 24px;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
}
.ls-footer a {
    color: rgba(246, 243, 238, 0.85);
    text-decoration: none;
}
.ls-footer a:hover { color: var(--ls-bone); }

/* ─── Booth tracker ───────────────────────────────────────────────────── */

.ls-booth-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 18px 80px;
}
.ls-booth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.ls-booth-header h1 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}
.ls-recent {
    background: var(--ls-paper);
    border: 1px solid var(--ls-rule);
    border-radius: 10px;
    padding: 12px;
}
.ls-recent-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 6px;
    border-bottom: 1px solid var(--ls-rule);
}
.ls-recent-item:last-child { border-bottom: none; }
.ls-recent-name {
    font-weight: 600;
    color: var(--ls-ink);
}
.ls-recent-company {
    color: var(--ls-muted);
    font-size: 13px;
    margin-left: 8px;
}
.ls-recent-time {
    font-size: 12px;
    color: var(--ls-muted);
}
