/* ==========================================================================
   How to Teach Love
   A talk turned into one long scroll. Dark full-viewport "stages" carry the
   deck's statements and quotes; white editorial "chapters" carry the story
   between them. Theme shared with learn.avi.nyc.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Light surface */
    --paper: #ffffff;
    --panel: #f7f7f5;
    --parchment: #f4f1e8;
    --ink: #1c1c1b;
    --text: #333332;
    --text-soft: #4a4a47;
    --muted: #6b6b68;
    --rule: #efefef;
    --border: #dfdfdf;

    /* Dark surface */
    --black: #0b0b0c;
    --black-rule: #2a2a2c;
    --on-black: #f2f1ec;
    --on-black-soft: #c9c8c2;
    --on-black-muted: #9a9a97;

    /* Accents */
    --cyan: #00bce1;
    --cyan-dark: #009cbb;
    --cyan-stage: #14b0d8;
    --navy: #1a3a5c;
    --red: #ff5b5b;
    --heart: #ff2e2e;

    /* Love gradient */
    --grad-a: #ff5b5b;
    --grad-b: #c2185b;
    --grad-c: #7b4fb0;

    /* Type */
    --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Newsreader', Georgia, 'Times New Roman', serif;
    --font-mono: 'IBM Plex Mono', Menlo, monospace;
    --font-ui: 'Helvetica Neue', Arial, sans-serif;

    /* Layout */
    --container: 1160px;
    --gutter: 40px;
    --nav-height: 64px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 16px); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.55;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }
strong { font-weight: 500; color: var(--ink); }
em { font-style: italic; color: var(--ink); }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    color: var(--ink);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.kicker {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.kicker--ink { color: var(--ink); }
.kicker--on-dark { color: var(--on-black-muted); }

.lead { font-size: 24px; line-height: 1.45; color: var(--text); }
.measure { max-width: 640px; }
.note { font-size: 16px; color: var(--muted); }
.note strong { color: var(--text-soft); }

.caption {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted);
    line-height: 1.5;
}

.heart-mark { display: inline-block; flex-shrink: 0; color: var(--red); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    background: var(--cyan);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.btn:hover { background: var(--cyan-dark); color: #fff; transform: translateY(-1px); }

/* Screenshots open in the lightbox; plates are art and stay put. */
.shot {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    cursor: zoom-in;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.shot:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(28, 28, 27, 0.12); }
.shot--on-dark { border-color: var(--black-rule); }

.plate { width: 100%; }
.plate--framed { border: 1px solid var(--border); }

/* Layout primitives */
.stack { display: flex; flex-direction: column; gap: 20px; }
.stack--tight { gap: 12px; }
.captioned { display: flex; flex-direction: column; gap: 10px; }

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
}
.split > *, .stack > * { min-width: 0; }
.split--center { align-items: center; }
.split--wide-right { grid-template-columns: 1fr 1.5fr; }
.split--ruled {
    padding: 40px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.pull-quote {
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--ink);
    text-wrap: balance;
}
.pull-quote--sm { font-size: 30px; }
.pull-quote--lg { font-size: clamp(28px, 3.2vw, 38px); }

/* Ruby snippet */
.code {
    font-family: var(--font-mono);
    font-size: 15px;
    line-height: 1.6;
    background: #fdf9e8;
    border: 1px solid #efe6c2;
    border-radius: 4px;
    padding: 24px 28px;
    color: #3b3b39;
    overflow-x: auto;
    tab-size: 2;
}
.code--quiet { background: var(--panel); border-color: var(--border); }
.tok-kw { color: #a3571a; }
.tok-const { color: #1f6fb2; }
.tok-sym { color: #2f8f5b; }
.tok-num { color: #2f8f5b; }
.tok-str { color: #b0452b; }
.tok-fn { color: #1f6fb2; }
.tok-var { color: #1f6fb2; }
.tok-cmt { color: #8a8a86; }

/* Repo list (Tic Tac Toe) */
.repo { display: flex; flex-direction: column; font-family: var(--font-mono); font-size: 14px; }
.repo__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
}
.repo__row:last-child { border-bottom: none; }
.repo__name { color: var(--cyan-dark); font-weight: 500; overflow-wrap: anywhere; }
.repo__meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Navigation
   Light-on-black over the hero; flips to dark-on-white once scrolled past it.
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: var(--black);
    color: var(--on-black);
    border-bottom: 1px solid var(--black-rule);
    transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}
.nav--light {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: var(--ink);
    border-bottom-color: var(--rule);
}

.nav__container {
    height: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nav__logo { display: flex; align-items: center; gap: 12px; color: inherit; }
.nav__logo:hover { color: var(--red); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { position: relative; color: inherit; opacity: 0.85; }
.nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: currentColor;
    transition: width var(--transition-base);
}
.nav__link:hover, .nav__link.active { color: inherit; opacity: 1; }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__byline { opacity: 0.7; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: inherit;
}
.nav__toggle span {
    display: block;
    width: 24px; height: 2px;
    background: currentColor;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

@media (max-width: 900px) {
    .nav__container { padding: 0 24px; }
    .nav__byline { display: none; }
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: var(--nav-height); left: 0; right: 0; bottom: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 28px;
        padding: 40px 24px;
        background: var(--black);
        color: var(--on-black);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }
    .nav--light .nav__links { background: var(--paper); color: var(--ink); }
    .nav__links.open { transform: translateX(0); }
    .nav__link { font-size: 18px; }
    .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* --------------------------------------------------------------------------
   Hero: the poster
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--nav-height) + 68px) 48px 56px;
    background: var(--black);
    color: var(--on-black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 64px;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
    animation: fadeInUp 0.8s ease both;
}

.hero__title {
    font-size: clamp(64px, 13.6vw, 196px);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--on-black);
    max-width: 1100px;
    display: flex;
    flex-direction: column;
}
.hero__title-gradient {
    background: linear-gradient(90deg, var(--grad-a), var(--grad-b), var(--grad-c));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 0.06em;
}

.hero__subtitle {
    max-width: 620px;
    font-size: 24px;
    line-height: 1.4;
    color: var(--on-black-soft);
}

.hero__heart {
    position: absolute;
    right: -40px;
    top: 60px;
    width: 620px;
    height: 620px;
    z-index: 1;
    opacity: 0.9;
    animation: fadeIn 1.4s ease 0.3s both;
    will-change: transform;
}

.hero__agenda {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--on-black);
    animation: fadeInUp 0.8s ease 0.2s both;
}
.agenda {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 24px 20px 0;
    border-right: 1px solid var(--black-rule);
    color: inherit;
}
.agenda:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.agenda:hover { color: inherit; }
.agenda:hover .agenda__title { color: var(--red); }
.agenda__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--on-black);
    transition: color var(--transition-fast);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero { padding: calc(var(--nav-height) + 40px) 24px 40px; gap: 48px; }
    .hero__heart { width: 320px; height: 320px; right: -80px; top: 40px; opacity: 0.7; }
    .hero__subtitle { font-size: 20px; }
    .hero__agenda { grid-template-columns: 1fr; }
    .agenda { border-right: none; border-bottom: 1px solid var(--black-rule); padding: 20px 0; }
    .agenda:last-child { padding-left: 0; border-bottom: none; }
    .agenda__title { font-size: 24px; }
}

/* --------------------------------------------------------------------------
   Stages: the slides
   Full-viewport, centered, dark by default. Images sit taller than the frame
   and drift at a fraction of scroll speed (see main.js).
   -------------------------------------------------------------------------- */
.stage {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px var(--gutter);
    background: var(--black);
    color: var(--on-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.stage--short { min-height: 70vh; min-height: 70svh; }
.stage--tall { min-height: 100vh; min-height: 100svh; }
.stage--navy { background: var(--navy); }
.stage--cyan { background: var(--cyan-stage); }
.stage--paper { background: var(--parchment); color: var(--ink); }
.stage--image { padding: 0; }

.stage__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 980px;
}
.stage__inner--tight { gap: 20px; }
.stage__inner--wide { max-width: var(--container); width: 100%; gap: 64px; }
.stage__inner--left { align-items: flex-start; text-align: left; }
.stage__inner--pad { margin-right: auto; max-width: 720px; padding: 96px 120px; }
.stage__inner--right {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
    max-width: 760px;
    padding: 96px 120px;
}

.stage__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: inherit;
    text-wrap: balance;
}
.stage__title--md { font-size: clamp(36px, 4.4vw, 64px); }
.stage__title--sm { font-size: clamp(32px, 3.9vw, 56px); }
.stage__title--mono {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: -0.02em;
    font-size: clamp(32px, 5.5vw, 80px);
}
.stage--cyan .stage__title { color: #fff; }

.stage__lead {
    font-family: var(--font-body);
    font-size: 26px;
    color: var(--on-black-soft);
    max-width: 620px;
}
.stage__lead em { color: var(--on-black); }

.stage__quote {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.25;
    color: var(--on-black);
    max-width: 900px;
    text-wrap: pretty;
}
.stage__quote--sm { font-size: clamp(22px, 2.3vw, 32px); }
.stage__cite {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--on-black-muted);
}

.stage__heart { width: 220px; height: 220px; }

.stage__bg {
    position: absolute;
    left: 0;
    top: -12%;
    width: 100%;
    height: 124%;
    object-fit: cover;
    opacity: 0.55;
    will-change: transform;
}
.stage__bg--bright { opacity: 0.9; }
.stage__bg--contain { object-fit: contain; padding: 80px 0; opacity: 1; }
.stage--paper .stage__bg { opacity: 1; }
.stage__bg--rogers { opacity: 0.6; object-position: right center; }

.stage__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.35), rgba(11, 11, 12, 0.75));
}
.stage__scrim--side { background: linear-gradient(90deg, rgba(11, 11, 12, 0.9) 35%, rgba(11, 11, 12, 0.25)); }

.stage__corner {
    position: absolute;
    left: 48px;
    bottom: 32px;
    z-index: 2;
    text-align: left;
    color: var(--text);
    background: rgba(244, 241, 232, 0.85);
    padding: 6px 10px;
    border-radius: 3px;
}
.stage__figure { width: 520px; max-width: 100%; }

/* The pivot: Stories / Context / Abstraction */
.stage__pivot { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.stage__premise {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 30px;
    color: var(--on-black-soft);
    text-wrap: balance;
}
.three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
}
.three__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--black-rule);
    padding-top: 20px;
    text-align: left;
    color: inherit;
    transition: border-color var(--transition-base);
}
.three__item:hover { color: inherit; border-top-color: var(--on-black); }
.three__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; color: var(--cyan); }
.three__title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--on-black);
}
.three__text { font-size: 17px; color: var(--on-black-soft); line-height: 1.5; }

@media (max-width: 900px) {
    .stage { padding: 72px 24px; }
    .stage--image { padding: 0; }
    .stage__inner--right, .stage__inner--pad { padding: 72px 24px; margin-left: 0; align-items: flex-start; text-align: left; }
    .stage__scrim--side { background: linear-gradient(180deg, rgba(11, 11, 12, 0.3), rgba(11, 11, 12, 0.9)); }
    .stage__quote { font-size: 28px; }
    .stage__heart { width: 140px; height: 140px; }
    .stage__corner { left: 24px; bottom: 20px; }
    .stage__bg--contain { padding: 40px 0; }
    .stage__premise { font-size: 22px; }
    .three { grid-template-columns: 1fr; gap: 20px; }
    .three__title { font-size: 28px; }
}

/* --------------------------------------------------------------------------
   Chapters: the white narrative
   -------------------------------------------------------------------------- */
.chapter { padding: 120px var(--gutter); background: var(--paper); }
.chapter--panel { background: var(--panel); }
.chapter--quiet { padding: 96px var(--gutter); }

.chapter__container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
    border-top: 1px solid var(--ink);
    padding-top: 28px;
}
.chapter__container--open { border-top: none; padding-top: 0; }
.chapter__wide { max-width: var(--container); margin: 0 auto; }
.chapter__aside { grid-column: span 3; }
.chapter__body {
    grid-column: span 9;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.chapter__header { display: flex; flex-direction: column; gap: 20px; }
.chapter__title {
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1.02;
    text-wrap: balance;
}
.chapter__title--xl { font-size: clamp(40px, 5vw, 60px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .chapter__container { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .chapter__aside, .chapter__body { grid-column: auto; }
}

@media (max-width: 768px) {
    body { font-size: 18px; }
    :root { --gutter: 24px; }
    .chapter { padding: 80px var(--gutter); }
    .chapter--quiet { padding: 64px var(--gutter); }
    .lead { font-size: 21px; }
    .split, .split--wide-right { grid-template-columns: 1fr; gap: 28px; }
    .pull-quote { font-size: 28px; }
    .pull-quote--sm { font-size: 26px; }
    .code { font-size: 14px; padding: 20px; }
    .repo__row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--rule); padding: 0 48px; }
.footer__container {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer__content { display: flex; align-items: center; gap: 24px; }
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
}
.footer__text { font-size: 16px; color: var(--muted); }
.footer__meta { display: flex; align-items: center; gap: 24px; font-size: 16px; }

@media (max-width: 640px) {
    .footer { padding: 0 24px; }
    .footer__container { height: auto; padding: 24px 0; flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer__content { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 11, 12, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__content {
    max-width: 92vw;
    max-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__image {
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.96);
    transition: transform 0.3s ease;
}
.lightbox.active .lightbox__image { transform: scale(1); }

.lightbox__close, .lightbox__prev, .lightbox__next {
    position: absolute;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--on-black);
    font-family: var(--font-ui);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}
.lightbox__close { top: 20px; right: 20px; font-size: 30px; line-height: 1; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); font-size: 26px; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__close:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.06); }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-50%) scale(1.06); }
.lightbox__prev:disabled, .lightbox__next:disabled { opacity: 0.3; cursor: not-allowed; }
.lightbox__prev:disabled:hover, .lightbox__next:disabled:hover { transform: translateY(-50%); background: rgba(255, 255, 255, 0.08); }

.lightbox__caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--on-black-soft);
    white-space: nowrap;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}
