/* ==========================================================================
   Polley Lab

   The design follows the previous site: Inter for text, Montserrat for the
   brand, navigation and buttons; a near-black header and footer; grey body
   copy on white; square corners and no drop shadows anywhere.

   Values below were measured off the archived pages -- see README.
   ========================================================================== */

/* @font-face lives in the generated assets/css/fonts.css, which inlines the
   WOFF2 files as data URIs so file:// pages render with the right type. */

:root {
  color-scheme: light dark;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  /* Measured from the archived site */
  --dark: #101010;              /* header bar and footer */
  --ink: #000000;               /* headings and links */
  --text: #6c6c77;              /* body copy */
  --text-muted: #85858f;
  --text-faint: #9a9aa3;
  --bg: #ffffff;
  --bg-subtle: #f6f6f7;
  --bg-sunken: #ededef;
  --surface: #ffffff;
  --border: #d9d9d9;            /* button and rule colour */
  --border-soft: #e7e7e9;

  --accent: var(--ink);
  --accent-contrast: #ffffff;
  --ring: #6c6c77;

  --page-max: 1140px;           /* the archive's content width */
  --prose-max: 78ch;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 72px;
}

[data-theme="dark"] {
  --dark: #101010;
  --ink: #f2f2f4;
  --text: #a9a9b4;
  --text-muted: #93939d;
  --text-faint: #7e7e88;
  --bg: #0b0b0c;
  --bg-subtle: #121213;
  --bg-sunken: #171719;
  --surface: #121213;
  --border: #333336;
  --border-soft: #262629;
  --accent: var(--ink);
  --accent-contrast: #0b0b0c;
}

/* -------------------------------------------------------------------- base */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: normal;
}

h1 { font-size: clamp(2rem, 1.5rem + 1.9vw, 3.02rem); font-weight: 500; }  /* 48px */
h2 { font-size: clamp(1.25rem, 1.14rem + .42vw, 1.5rem); }                 /* 24px */
h3 { font-size: 1.06rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); font-weight: 600; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: .18em; }

img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

::selection { background: #d9d9d9; color: #000; }

hr { border: 0; border-top: 1px solid var(--border-soft); margin: 3rem 0; }

/* ------------------------------------------------------------------ layout */

.wrap {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 860px; }

.section { padding-block: clamp(2.75rem, 5.5vw, 4.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--subtle { background: var(--bg-subtle); }

.lede { font-size: 1.06rem; color: var(--text); max-width: var(--prose-max); }
.prose { max-width: var(--prose-max); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--dark);
  color: #fff;
  padding: .75rem 1.25rem;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------------- buttons */

.btn {
  display: inline-block;
  padding: .66rem 1.32rem;
  border: 2px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .99rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, background-color .15s, color .15s;
}
.btn:hover { border-color: var(--ink); text-decoration: none; }

.btn--primary { border-color: var(--ink); }
.btn--primary:hover { background: var(--ink); color: var(--accent-contrast); }

.btn--on-dark { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--on-dark:hover { border-color: #fff; background: #fff; color: var(--dark); }

/* ------------------------------------------------------------------ header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  color: #fff;
}

/* Home page: the bar sits over the cover image until the user scrolls. */
.site-header--overlay {
  position: fixed;
  inset-inline: 0;
  background: transparent;
  transition: background-color .25s;
}
.site-header--overlay.is-stuck { background: var(--dark); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.48rem;             /* 23.7px, as measured on the archive */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: #fff; text-decoration: none; }
.brand__mark { flex: none; }
.brand__sub { display: none; }    /* the archive shows the wordmark only */

.nav { display: flex; align-items: center; }
.nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: 0;
  padding: 0;
}
/* Direct child only: a descendant selector would also match .nav__menu and,
   being more specific than .nav__menu, force the dropdowns permanently open. */
.nav__menu { list-style: none; margin: 0; }
.nav li { position: relative; }

.nav a {
  display: block;
  padding: .5rem .78rem;
  font-family: var(--font-display);
  font-size: .99rem;              /* 15.8px */
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  opacity: .88;
  transition: opacity .15s;
}
.nav a:hover { opacity: 1; text-decoration: none; }
.nav a[aria-current="page"] { opacity: 1; font-weight: 600; }

.nav__group { display: flex; align-items: center; flex-wrap: wrap; }
.nav__group > a { padding-right: .2rem; }
.nav__group > button {
  display: flex;
  align-items: center;
  padding: .5rem .4rem;
  border: 0;
  background: none;
  color: #fff;
  opacity: .88;
  cursor: pointer;
}
.nav__group > button:hover { opacity: 1; }
.nav__group > button svg { transition: transform .2s; }
.nav__group[data-open="true"] > button svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 205px;
  /* Top padding bridges the gap to the trigger so moving the pointer into the
     menu never crosses a dead zone and drops :hover. */
  padding: .5rem 0 .35rem;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.14);
  display: none;
  flex-direction: column;
}
.nav__menu a { padding: .5rem 1rem; font-size: .99rem; }

/*
 * Hover is CSS, not JS. A :hover rule is tied to where the pointer actually is,
 * so the menu cannot latch open the way a mouseenter/mouseleave state machine
 * can when a leave event goes missing. JS only drives [data-open] for clicks.
 */
@media (hover: hover) and (min-width: 900px) {
  .nav__group:hover .nav__menu { display: flex; }
  .nav__group:hover > button svg { transform: rotate(180deg); }
}
/* Scoped to a:focus-visible on purpose: matching the toggle button would leave
   it focused after a mouse click and stop the next click from closing. */
.nav__group:has(a:focus-visible) .nav__menu { display: flex; }
.nav__group[data-open="true"] .nav__menu { display: flex; }

.nav-actions { display: flex; align-items: center; gap: .4rem; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
}
.icon-btn:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle { display: none; }

@media (max-width: 899px) {
  .nav-toggle { display: inline-grid; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: block;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: .5rem var(--gutter) 1.5rem;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,.14);
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }

  .nav > ul { display: block; }
  .nav a, .nav__group > button { width: 100%; padding: .7rem .2rem; font-size: .95rem; }
  .nav__group > a { flex: 1; width: auto; }
  .nav__group > button { width: auto; margin-left: auto; }
  .nav__menu {
    position: static;
    flex-basis: 100%;
    display: flex;
    border: 0;
    padding: 0 0 .3rem .9rem;
    border-left: 1px solid rgba(255,255,255,.2);
    margin-left: .3rem;
  }
  .nav__menu a { padding: .55rem .2rem; }
}

/* -------------------------------------------------------------------- hero */

/* Matches the archived cover block: full viewport, flat 40% black dim,
   content centred on both axes, no buttons or scroll cue. */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

.hero__scrim { position: absolute; inset: 0; z-index: -1; background: rgba(0,0,0,.4); }

.hero__inner { padding-block: calc(var(--header-h) + 2rem) 3rem; }

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 1.2rem + 4.3vw, 4.32rem);   /* up to 69px */
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: normal;
  color: #fff;
  margin: 0 0 .35em;
}

.hero__sub {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.23rem);    /* 19.7px */
  font-weight: 400;
  line-height: 1.75;
  color: #fff;
  max-width: 46ch;
  margin: 0 auto;
}

/* ------------------------------------------------------- interior page top */

.page-head {
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--bg);
}
.page-head h1 { margin-bottom: .35rem; color: var(--text); font-weight: 500; }
.page-head .lede { margin-top: .75rem; }

/* ------------------------------------------------------------------- cards */

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  transition: border-color .15s;
}
.card--link:hover { border-color: var(--ink); text-decoration: none; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--text); font-size: .95rem; }

.card__num {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .7rem;
}

.card__more {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}

/* -------------------------------------------------------- research feature */

.feature {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  grid-template-columns: 1fr;
  padding-block: clamp(2rem, 4vw, 3rem);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
@media (min-width: 860px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__media { order: -1; }
}
.feature + .feature { border-top: 1px solid var(--border-soft); }

.feature__media img { width: 100%; }
.feature__body h2 { margin-bottom: .6rem; }

/* -------------------------------------------------------- section headings */

.rule-heading {
  margin: 0 0 1.5rem;
  font-size: clamp(1.25rem, 1.14rem + .42vw, 1.5rem);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

/* -------------------------------------------------------------- techniques */

.technique-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.technique {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
}

/*
 * These figures are white line art and white labels on transparency -- drawn
 * for a dark canvas. On white almost every label disappears, so the panel stays
 * dark in BOTH themes. Deliberate; do not change it to follow the theme.
 */
.technique__figure {
  display: grid;
  place-items: center;
  padding: 1rem;
  height: clamp(190px, 20vw, 250px);
  flex: none;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.technique__figure img { width: auto; height: auto; max-width: 100%; max-height: 100%; }

.technique__body { padding: 1.1rem 1.25rem 1.35rem; }
.technique__body h3 { margin-bottom: .35rem; }
.technique__body p { color: var(--text); font-size: .95rem; margin: 0; }

/* ------------------------------------------------------------------ alumni */

.alum-list { list-style: none; margin: 0; padding: 0; }

.alum {
  display: grid;
  gap: .1rem 1.5rem;
  align-items: baseline;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 780px) {
  .alum { grid-template-columns: minmax(150px, 1fr) minmax(200px, 1.5fr) minmax(200px, 1.8fr); }
}
.alum:last-child { border-bottom: 0; }
.alum__name { font-weight: 600; color: var(--ink); }
.alum__tenure { font-size: .95rem; }
.alum__next { font-size: .95rem; color: var(--text-muted); }

/* --------------------------------------------------- toolbar: search/filter */

.toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  padding-block: .85rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}

.search { position: relative; flex: 1 1 240px; min-width: 0; max-width: 340px; }
.search svg { position: absolute; left: .7rem; top: 50%; translate: 0 -50%; color: var(--text-faint); pointer-events: none; }
.search input {
  width: 100%;
  padding: .5rem .7rem .5rem 2.2rem;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
}
.search input::placeholder { color: var(--text-faint); }
.search input:focus { outline: none; border-color: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.chip {
  padding: .34rem .7rem;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color .15s, background-color .15s, color .15s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--accent-contrast); }

.result-count { font-size: .85rem; color: var(--text-faint); margin-left: auto; white-space: nowrap; }

.empty-state { padding: 3rem 1rem; text-align: center; color: var(--text-muted); }

/* ------------------------------------------------------------ publications */

.pub-year {
  margin: 2.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink);
  scroll-margin-top: calc(var(--header-h) * 2 + 1rem);
}
.pub-list:first-of-type .pub-year { margin-top: .5rem; }

.pub { padding: 1rem 0; border-bottom: 1px solid var(--border-soft); }

.pub__title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: .3rem;
}

.pub__authors { font-size: .93rem; color: var(--text); margin-bottom: .25rem; font-weight: 400; }
.pub__authors .self { color: var(--ink); font-weight: 600; }

.pub__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-muted); }
.pub__venue { font-style: italic; }

.tag {
  display: inline-block;
  padding: .08rem .45rem;
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tag--preprint { color: var(--ink); border-color: var(--text-faint); }

.pub__links { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.pub__links a {
  padding: .16rem .55rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  text-decoration: none;
}
.pub__links a:hover { border-color: var(--ink); color: var(--ink); text-decoration: none; }

/* -------------------------------------------------------------------- team */

.pi-card {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .pi-card { grid-template-columns: minmax(200px, 280px) 1fr; } }

.pi-card__photo { aspect-ratio: 4 / 5; }
.pi-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.pi-card__roles {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: .2rem;
  font-size: .95rem;
}

.person {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .15s;
}
.person:hover { border-color: var(--ink); }

.person__photo { aspect-ratio: 3 / 4; background: var(--bg-sunken); overflow: hidden; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

.person__body { padding: .95rem 1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.person__name { font-size: 1rem; font-weight: 600; line-height: 1.3; margin-bottom: .1rem; }
.person__role {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .5rem;
}
.person__bio { font-size: .9rem; line-height: 1.6; color: var(--text); margin: 0; }

/* --------------------------------------------------------------- linkcards */

.linkcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color .15s;
}
.linkcard:hover { border-color: var(--ink); text-decoration: none; }
.linkcard__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-sunken); }
.linkcard__media img { width: 100%; height: 100%; object-fit: cover; }
.linkcard__body { padding: 1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.linkcard__title { font-weight: 600; font-size: 1rem; line-height: 1.4; color: var(--ink); }
.linkcard__desc { font-size: .9rem; color: var(--text); }
.linkcard__cta {
  margin-top: auto;
  padding-top: .75rem;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}

/* ----------------------------------------------------------------- callout */

.callout {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--border);
  background: var(--bg-subtle);
}
.callout h2, .callout h3 { margin-bottom: .3rem; }
.callout p { max-width: 62ch; }
@media (min-width: 760px) {
  .callout--split { grid-template-columns: 1fr auto; align-items: center; }
}

/* ------------------------------------------------------------------ footer */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.72);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
}
.site-footer h2, .site-footer h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.24rem;             /* 23.7px, as on the archived footer */
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: .75rem;
}
.site-footer a { color: #fff; font-weight: 400; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: .18em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-size: .95rem; }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.75; }

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .5rem;
}
.footer-brand + p { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 34ch; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ----------------------------------------------------------------- reveals */

/* Visible by default; only JS-enabled pages animate, so a script failure can
   never leave the page blank. */
.js .reveal { opacity: 0; transition: opacity .35s ease; }
.js .reveal.is-visible { opacity: 1; }

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

/* ------------------------------------------------------------------- print */

@media print {
  .site-header, .site-footer, .toolbar { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .pub { break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #555; word-break: break-all; }
}
