/* =========================================================================
   Anirban Sarkar — portfolio (draft rebuild)
   Aesthetic: editorial "wet-lab luminescence" — ink canvas, paper text,
   bioluminescent-lime accent, Fraunces display + IBM Plex Sans/Mono.
   ========================================================================= */

:root {
  --ink:      #0a0c0a;
  --ink-1:    #0f120e;
  --ink-2:    #151a13;
  --line:     rgba(236, 234, 225, 0.12);
  --line-2:   rgba(236, 234, 225, 0.22);
  --paper:    #ecebe2;
  --muted:    #9aa597;
  --muted-2:  #6f7a6c;
  --lime:     #c9f24e;
  --lime-dim: #a7c93f;
  --cyan:     #5ee3ce;
  --coral:    #ff8a6b;

  --maxw: 1180px;
  --gut: clamp(1.25rem, 4vw, 4rem);

  --f-display: "Fraunces", Georgia, serif;
  --f-body:    "IBM Plex Sans", system-ui, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-padding-top: 84px; }

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 350;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* atmosphere: gradient mesh + grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(60rem 50rem at 82% -8%, rgba(201, 242, 78, 0.10), transparent 60%),
    radial-gradient(50rem 40rem at -8% 18%, rgba(94, 227, 206, 0.07), transparent 55%),
    radial-gradient(70rem 60rem at 50% 120%, rgba(201, 242, 78, 0.05), transparent 60%),
    var(--ink);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------- layout */
.wrap { width: min(var(--maxw), 100% - calc(var(--gut) * 2)); margin-inline: auto; }
section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.divider { border-top: 1px solid var(--line); }

a { color: inherit; text-decoration: none; }

/* section eyebrow / index label */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime-dim);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 1px; background: var(--lime); opacity: 0.7;
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
.sec-title {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 2.6rem;
  font-optical-sizing: auto;
}
.sec-title em { font-style: italic; color: var(--lime); }

/* ----------------------------------------------------------------- nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gut);
  background: rgba(10, 12, 10, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(10, 12, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding-block: 0.7rem;
}
.brand {
  font-family: var(--f-mono); font-weight: 600; letter-spacing: 0.04em;
  font-size: 0.95rem; display: flex; align-items: center; gap: 0.55rem;
}
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 rgba(201,242,78,0.6); animation: pulse 3.2s var(--ease) infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,242,78,0.45); }
  50%     { box-shadow: 0 0 0 6px rgba(201,242,78,0); }
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); position: relative; padding: 0.2rem 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--lime); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.cv {
  color: var(--ink); background: var(--lime); padding: 0.5rem 0.95rem; border-radius: 999px;
  font-weight: 600; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-links a.cv:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,242,78,0.25); }
.nav-links a.cv::after { display: none; }
.nav-toggle { display: none; background: none; border: 0; color: var(--paper); cursor: pointer;
  font-family: var(--f-mono); font-size: 0.85rem; letter-spacing: 0.1em; }

/* ----------------------------------------------------------------- hero */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 6rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 0.9fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero .tag {
  font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.5rem; display: inline-flex; gap: 0.6rem; align-items: center;
}
.hero .tag .seq { color: var(--muted-2); letter-spacing: 0.35em; }
.hero h1 {
  font-size: clamp(1.5rem, 3.4vw, 2.8rem);
  line-height: 1.1; font-weight: 400; margin-bottom: 1.6rem; font-optical-sizing: auto;
}
.hero h1 .name { display: block; font-size: clamp(2.7rem, 7vw, 5.6rem); font-weight: 600;
  line-height: 0.98; margin-bottom: 0.7rem; }
.hero h1 em { font-style: italic; color: var(--lime); }
.hero .lead { color: var(--muted); max-width: 46ch; font-size: 1.08rem; margin-bottom: 2.2rem; }
.hero .lead strong { color: var(--paper); font-weight: 500; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.btn {
  font-family: var(--f-mono); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 1.4rem; border-radius: 999px; border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; gap: 0.6rem; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lime); color: var(--ink); border-color: var(--lime); font-weight: 600; }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(201,242,78,0.28); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

/* hero portrait */
.portrait-wrap { position: relative; justify-self: center; }
.portrait {
  position: relative; width: clamp(220px, 26vw, 340px); aspect-ratio: 4 / 5;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(18%) contrast(1.03);
  transition: filter 0.6s var(--ease), transform 6s var(--ease); }
.portrait:hover img { filter: grayscale(0%) contrast(1.05); transform: scale(1.04); }
.portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,12,10,0.55));
  mix-blend-mode: multiply;
}
.portrait-frame {
  position: absolute; inset: -14px -14px auto auto; width: 100%; height: 100%;
  border: 1px solid var(--lime); border-radius: 14px; opacity: 0.35; z-index: -1;
}
.helix {
  position: absolute; left: -2.4rem; top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; font-family: var(--f-mono); font-size: 0.72rem;
  letter-spacing: 0.5em; color: var(--muted-2); user-select: none;
}
.helix b { color: var(--lime); }

/* ----------------------------------------------------------------- about */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.about-body p { color: var(--muted); margin-bottom: 1.1rem; }
.about-body p strong { color: var(--paper); font-weight: 500; }
.about-body a { color: var(--paper); border-bottom: 1px solid var(--line-2); transition: border-color 0.25s, color 0.25s; }
.about-body a:hover { color: var(--lime); border-color: var(--lime); }
.about-lead { font-family: var(--f-display); font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.35;
  font-weight: 400; color: var(--paper); margin-bottom: 1.6rem; }
.interests { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--muted);
  transition: border-color 0.25s, color 0.25s;
}
.chip:hover { border-color: var(--lime); color: var(--lime); }

/* ----------------------------------------------------------------- research */
.research-intro {
  font-family: var(--f-display); font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.4;
  font-weight: 400; color: var(--paper); max-width: 58ch; margin-bottom: 3rem;
}
.research-intro em { font-style: italic; color: var(--lime); }

/* journey stepper — horizontal on desktop, vertical timeline on mobile */
.journey { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  position: relative; margin-bottom: 3.2rem; }
.journey::before { content: ""; position: absolute; top: 6px; left: 4px; right: 4px; height: 1px;
  background: linear-gradient(90deg, var(--line), var(--lime-dim) 92%); }
.step { position: relative; padding-top: 1.7rem; }
.step::before { content: ""; position: absolute; top: 2px; left: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--ink); border: 1px solid var(--lime-dim); }
.step-current::before { background: var(--lime); border-color: var(--lime);
  box-shadow: 0 0 0 5px rgba(201,242,78,0.14); }
.step-when { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan); }
.step h3 { font-size: 1.1rem; font-weight: 500; line-height: 1.2; margin: 0.5rem 0 0.45rem; }
.step p { color: var(--muted); font-size: 0.9rem; }
.step .rlinks { margin-top: 0.85rem; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.step .rlinks a, .vision .rlinks a {
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem; border: 1px solid var(--line-2); border-radius: 6px; color: var(--muted);
  transition: color 0.2s, border-color 0.2s; }
.step .rlinks a:hover, .vision .rlinks a:hover { color: var(--lime); border-color: var(--lime); }

/* forward-looking vision panel */
.vision { position: relative; overflow: hidden; border: 1px solid rgba(94,227,206,0.3);
  border-radius: 22px; padding: clamp(1.8rem, 4vw, 3.2rem);
  background: linear-gradient(150deg, rgba(94,227,206,0.09), rgba(201,242,78,0.035) 55%, transparent 85%);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.vision-main { min-width: 0; padding-right: clamp(1.4rem, 2.5vw, 2.2rem); }
.vision-side { position: relative; z-index: 1; border-left: 1px solid rgba(94,227,206,0.22);
  padding-left: clamp(1.4rem, 2.5vw, 2.2rem); }
.side-label { display: inline-block; font-family: var(--f-mono); font-size: 0.64rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid rgba(94,227,206,0.45); border-radius: 999px; padding: 0.2rem 0.65rem; }
.vision-side h4 { font-family: var(--f-display); font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; margin: 0.9rem 0 1.1rem; max-width: 22ch; color: var(--paper); }
.vision-side > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.1rem; }
.side-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.side-list li { color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
.side-list li span { display: inline-block; font-family: var(--f-mono); font-size: 0.62rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid rgba(94,227,206,0.4); border-radius: 5px; padding: 0.12rem 0.5rem; margin-right: 0.55rem; }
.vision::after { content: ""; position: absolute; width: 28rem; height: 28rem; right: -8rem; top: -10rem;
  background: radial-gradient(circle, rgba(94,227,206,0.16), transparent 65%); pointer-events: none; }
.vision > * { position: relative; z-index: 1; }
.vision h3 { font-family: var(--f-display); font-size: clamp(1.6rem, 3.4vw, 2.5rem); font-weight: 400;
  line-height: 1.12; margin: 0.9rem 0 1.1rem; max-width: 22ch; }
.vision h3 em { font-style: italic; color: var(--cyan); }
.vision p { color: var(--muted); max-width: 68ch; font-size: 1.03rem; margin-bottom: 0.9rem; }
.vision p em { color: var(--paper); font-style: italic; }
.vision-note { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.02em;
  color: var(--cyan); margin-bottom: 0 !important; }

.emerging { display: inline-block; font-family: var(--f-mono); font-size: 0.64rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid rgba(94,227,206,0.45); border-radius: 999px; padding: 0.2rem 0.65rem; }

/* ----------------------------------------------------------------- news + updates */
.feed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.card-h { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime-dim); margin-bottom: 1.4rem; }
.news-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.news-list li { color: var(--muted); padding-left: 1.4rem; position: relative; }
.news-list li::before { content: "▹"; position: absolute; left: 0; color: var(--lime); }
.news-list a { color: var(--paper); border-bottom: 1px solid var(--line-2); }
.news-list a:hover { color: var(--lime); border-color: var(--lime); }

.timeline { list-style: none; position: relative; border-left: 1px solid var(--line); padding-left: 1.6rem; }
.timeline li { position: relative; padding-bottom: 1.6rem; }
.timeline li::before {
  content: ""; position: absolute; left: calc(-1.6rem - 5px); top: 0.45rem;
  width: 9px; height: 9px; border-radius: 50%; background: var(--ink); border: 1px solid var(--lime);
}
.timeline .when { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--cyan); }
.timeline p { color: var(--muted); font-size: 0.96rem; margin-top: 0.25rem; }

/* ----------------------------------------------------------------- experience / education */
.xp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.role { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.role:first-of-type { border-top: 0; }
.role .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line-2); color: var(--lime); font-family: var(--f-mono); font-size: 0.9rem; }
.role h3 { font-size: 1.18rem; font-weight: 500; display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: baseline; }
.role h3 span { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted-2); font-weight: 400; }
.role p { color: var(--muted); font-size: 0.95rem; margin-top: 0.2rem; }

/* ----------------------------------------------------------------- publications */
.pub-list { list-style: none; }
.pub {
  display: grid; grid-template-columns: 7.5rem 1fr; gap: 1.6rem;
  padding: 1.7rem 0; border-top: 1px solid var(--line); transition: border-color 0.3s;
}
.pub:hover { border-color: var(--line-2); }
.pub-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.pub-year { font-family: var(--f-display); font-size: 1.5rem; color: var(--paper); line-height: 1; }
.venue {
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); background: var(--lime); padding: 0.25rem 0.55rem; border-radius: 5px; width: fit-content;
}
.venue.alt { background: transparent; color: var(--cyan); border: 1px solid var(--cyan); }
.pub-title { font-family: var(--f-display); font-size: 1.22rem; font-weight: 500; line-height: 1.25; margin-bottom: 0.4rem; }
.pub-authors { color: var(--muted); font-size: 0.93rem; margin-bottom: 0.7rem; }
.pub-authors .me { color: var(--paper); font-weight: 600; }
.pub-tag { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.05em; color: var(--coral);
  text-transform: uppercase; margin-left: 0.4rem; }
.pub-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pub-links a {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem; border: 1px solid var(--line-2); border-radius: 6px; color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pub-links a:hover { color: var(--lime); border-color: var(--lime); }

/* workshops */
.ws-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.ws-list li { padding-left: 1.5rem; position: relative; color: var(--muted); }
.ws-list li::before { content: "//"; position: absolute; left: 0; color: var(--lime-dim); font-family: var(--f-mono); font-size: 0.8rem; }
.ws-list .t { color: var(--paper); font-weight: 500; }
.ws-list .v { font-family: var(--f-mono); font-size: 0.78rem; color: var(--cyan); }
.ws-list .pub-links { margin-top: 0.55rem; }
.rcard p em { font-style: italic; color: var(--paper); }
.rcard-accent p em { color: var(--cyan); }

/* ----------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-h { font-family: var(--f-display); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 400; line-height: 1.05; }
.contact-h em { font-style: italic; color: var(--lime); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1rem; }
.contact-list .k { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.contact-list .v { font-size: 1.05rem; }
.contact-list a:hover { color: var(--lime); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--muted);
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), color 0.25s, border-color 0.25s, background 0.25s;
}
.socials a:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); transform: translateY(-3px); }

/* ----------------------------------------------------------------- footer */
footer { padding: 2.4rem var(--gut); border-top: 1px solid var(--line); display: flex;
  flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; color: var(--muted-2); }
footer .c { font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.04em; }
footer .seq { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.4em; color: var(--line-2); }

/* ----------------------------------------------------------------- reveal */
/* progressive enhancement: hidden state only applies once JS confirms support;
   without JS, all content is visible (accessibility + SEO safe). */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ----------------------------------------------------------------- responsive */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .feed-grid, .xp-grid, .contact-grid, .vision { grid-template-columns: 1fr; }
  .vision-side { margin-top: 0; border-left: 0; padding-left: 0; border-top: 1px solid rgba(94,227,206,0.22); padding-top: 1.6rem; }
  .journey { grid-template-columns: 1fr; gap: 1.7rem; border-left: 1px solid var(--line); padding-left: 1.6rem; }
  .journey::before { display: none; }
  .step { padding-top: 0; }
  .step::before { top: 4px; left: calc(-1.6rem - 6px); }
  .portrait-wrap { order: -1; }
  .helix { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: var(--gut);
    background: var(--ink-1); border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem 1.5rem; gap: 1rem;
  }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .pub { grid-template-columns: 1fr; gap: 0.8rem; }
  .pub-meta { flex-direction: row; align-items: center; gap: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
