/* ==========================================================================
   From Experts to Revolutionaries — research project site
   Editorial / archival design system
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Paper / surfaces */
  --paper:      #e9e6df;   /* warm pale-grey paper (page background) */
  --paper-2:    #f3f0e9;   /* lighter raised surface (cards) */
  --paper-3:    #ded9ce;   /* deeper band (alt sections) */

  /* Ink */
  --ink:        #191512;   /* warm near-black (headings) */
  --ink-2:      #4d463e;   /* body / secondary */
  --ink-3:      #7c7368;   /* meta / muted */

  /* Accents */
  --accent:     #8c2b22;   /* oxblood — primary accent, links */
  --accent-ink: #6f2019;   /* darker oxblood for hover */
  --blue:       #0e3a57;   /* deep archival blue (ties to UT logo) */

  /* Lines */
  --line:       rgba(25,21,18,.16);
  --line-2:     rgba(25,21,18,.08);

  /* Footer (dark) */
  --footer-bg:  #161210;
  --footer-ink: #e9e6df;
  --footer-mut: #9a9085;

  /* Type */
  --serif:   "Spectral", Georgia, "Times New Roman", serif;
  --display: "Fraunces", Georgia, serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Rhythm */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 3px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--serif);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); }

/* ---- Bilingual visibility (toggle handled in JS via <html data-lang>) ---- */
:root[data-lang="en"] .l-et { display: none !important; }
:root[data-lang="et"] .l-en { display: none !important; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); border-top: 1px solid var(--line); }
.section--alt { background: var(--paper-3); }

/* ---- Type ---- */
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); font-weight: 460; line-height: 1.08; letter-spacing: -0.01em; font-optical-sizing: auto; }
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow .num { color: var(--ink-3); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); margin-top: .9rem; }
.section-head .lede { margin-top: 1.15rem; font-size: clamp(1.06rem, 1rem + 0.4vw, 1.25rem); color: var(--ink-2); }

.lede { line-height: 1.55; }
p + p { margin-top: 1rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 68px; }

.brand { display: inline-flex; align-items: baseline; gap: .5ch; font-family: var(--display); font-weight: 500; font-size: 1.12rem; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }
.brand:hover { color: var(--ink); }
.brand .arrow { color: var(--accent); font-family: var(--serif); padding-inline: .1ch; }
.brand .et-only { display: none; }

.nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.7rem); }
.nav a {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .03em;
  color: var(--ink-2);
  position: relative;
  padding-block: .35rem;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .1rem; height: 1px;
  background: var(--accent); transition: right .28s ease;
}
.nav a:hover, .nav a.is-active { color: var(--accent); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }

.lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-family: var(--mono); font-size: .72rem; letter-spacing: .05em; }
.lang-toggle button { appearance: none; border: 0; background: transparent; color: var(--ink-3); padding: .3rem .65rem; cursor: pointer; font: inherit; transition: background .2s, color .2s; }
.lang-toggle button.is-active { background: var(--ink); color: var(--paper-2); }

/* Mobile nav */
.nav-toggle { display: none; appearance: none; background: transparent; border: 1px solid var(--line); border-radius: var(--radius); width: 42px; height: 38px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: transform .25s ease, opacity .2s; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .header-tools { display: flex; align-items: center; gap: .75rem; }
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 24px 40px -28px rgba(0,0,0,.4);
  }
  .nav a { font-size: 1rem; padding-block: .85rem; width: 100%; border-bottom: 1px solid var(--line-2); }
  .nav a::after { display: none; }
  body.nav-open .nav { transform: translateY(0); }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-block: clamp(3rem, 6vw, 6rem) clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-eyebrow { margin-bottom: 1.6rem; }
.hero h1 { font-size: clamp(2.5rem, 1.3rem + 5.4vw, 5.1rem); line-height: 1.02; letter-spacing: -.02em; font-weight: 420; }
.hero h1 .em { font-style: italic; color: var(--accent); }
.hero .subtitle { margin-top: 1.6rem; font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); line-height: 1.5; color: var(--ink-2); max-width: 34ch; font-family: var(--serif); }
.hero-cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .85rem; }

.btn {
  display: inline-flex; align-items: center; gap: .6ch;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .04em;
  padding: .8rem 1.25rem; border-radius: 999px; border: 1px solid var(--ink);
  color: var(--ink); background: transparent; transition: background .22s, color .22s, border-color .22s; cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--paper-2); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; }

/* Hero figure / placeholder */
.hero-figure { position: relative; }
.ph {
  position: relative; width: 100%; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(25,21,18,.025) 22px 23px);
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: auto 0 0 0; padding: .6rem .8rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); background: linear-gradient(transparent, color-mix(in srgb, var(--paper-2) 80%, transparent));
}
:root[data-lang="et"] .ph[data-label-et]::after { content: attr(data-label-et); }
.ph--hero { aspect-ratio: 4 / 5; }
.ph-mark { position: absolute; inset: 0; display: grid; place-items: center; }
.ph-mark svg { width: clamp(72px, 26%, 130px); height: auto; opacity: .5; color: var(--ink-3); }

/* Hero photo */
.hero-photo { margin: 0; }
.hero-photo img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-3);
  box-shadow: 0 34px 64px -46px rgba(25,21,18,.75);
}
.hero-photo figcaption {
  margin-top: .75rem; font-family: var(--mono); font-size: .67rem; letter-spacing: .03em;
  line-height: 1.45; color: var(--ink-3); max-width: 38ch;
}

.hero-meta { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); padding-top: 1.75rem; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem 2rem; }
.fact .k { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.fact .v { margin-top: .35rem; font-family: var(--display); font-size: 1.08rem; color: var(--ink); line-height: 1.25; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 360px; }
  .ph--hero { aspect-ratio: 16 / 11; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.prose p { margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

.objectives { list-style: none; padding: 0; margin: 0; counter-reset: obj; }
.objectives li { position: relative; padding: 1.1rem 0 1.1rem 3.2rem; border-top: 1px solid var(--line-2); }
.objectives li:first-child { border-top: 0; }
.objectives li::before {
  counter-increment: obj; content: counter(obj, decimal-leading-zero);
  position: absolute; left: 0; top: 1.15rem;
  font-family: var(--mono); font-size: .8rem; color: var(--accent); letter-spacing: .05em;
}
.objectives li b { color: var(--ink); font-weight: 600; font-family: var(--serif); }

.aside-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); position: sticky; top: 90px; }
.aside-card h3 { font-size: 1.05rem; font-family: var(--mono); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; }
.case-list { list-style: none; padding: 0; margin: 0; }
.case-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-top: 1px solid var(--line-2); font-family: var(--display); color: var(--ink); }
.case-list li:first-child { border-top: 0; }
.case-list .yr { font-family: var(--mono); font-size: .76rem; color: var(--ink-3); align-self: center; }

.keywords { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: clamp(2.25rem, 4vw, 3rem); }
.kw { font-family: var(--mono); font-size: .74rem; letter-spacing: .03em; color: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .8rem; background: var(--paper-2); }

/* Archival image gallery */
.gallery { margin: clamp(3rem, 6vw, 4.5rem) 0 0; padding: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.gallery-item { margin: 0; }
.gallery-item img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-3);
}
.gallery-item figcaption { margin-top: .65rem; font-size: .85rem; line-height: 1.4; color: var(--ink-2); }
.gallery-item .cred { display: block; margin-top: .3rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); }
.gallery-note { margin-top: 1.5rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .03em; color: var(--ink-3); }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.member figure { margin: 0 0 1rem; }
.portrait {
  aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--paper-3); border: 1px solid var(--line);
  display: grid; place-items: center;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait .monogram { font-family: var(--display); font-size: clamp(2.4rem, 7vw, 3.4rem); color: var(--ink-3); font-weight: 420; letter-spacing: .02em; }
.portrait::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(25,21,18,.03) 18px 19px);
}
.member.lead .portrait { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.member h3 { font-size: 1.2rem; line-height: 1.2; }
.member .role { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin-top: .35rem; }
.member .role.lead-tag { color: var(--accent); font-weight: 600; }
.member .bio { font-size: .94rem; margin-top: .7rem; color: var(--ink-2); line-height: 1.55; }
.member .links { margin-top: .7rem; display: flex; flex-wrap: wrap; gap: .15rem .9rem; }
.member .links a { font-family: var(--mono); font-size: .72rem; letter-spacing: .03em; }
.member .links a:hover { text-decoration: underline; }

/* ==========================================================================
   Partners
   ========================================================================== */
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.subhead { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.4rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.partner-list { list-style: none; padding: 0; margin: 0; }
.partner-list li { padding: 1rem 0; border-top: 1px solid var(--line-2); }
.partner-list li:first-child { border-top: 0; }
.partner-list .name { font-family: var(--display); font-size: 1.18rem; color: var(--ink); }
.partner-list .name a:hover { text-decoration: underline; }
.partner-list .aff { font-size: .92rem; color: var(--ink-2); margin-top: .2rem; }
.partner-list .tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.inst-list { list-style: none; padding: 0; margin: 0; }
.inst-list li { padding: .85rem 0; border-top: 1px solid var(--line-2); font-size: .98rem; color: var(--ink); }
.inst-list li:first-child { border-top: 0; }
.inst-list .place { color: var(--ink-3); font-family: var(--mono); font-size: .72rem; letter-spacing: .03em; display: block; margin-top: .15rem; }

@media (max-width: 760px) { .partners-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Publications
   ========================================================================== */
.pub-list { list-style: none; padding: 0; margin: 0; counter-reset: pub; }
.pub-list li { position: relative; display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.pub-list li:first-child { border-top: 0; }
.pub-list .idx { counter-increment: pub; font-family: var(--mono); font-size: .8rem; color: var(--ink-3); padding-top: .25rem; }
.pub-list .idx::before { content: counter(pub, decimal-leading-zero); }
.pub-cite { font-size: 1rem; line-height: 1.55; color: var(--ink-2); }
.pub-cite .title { color: var(--ink); font-weight: 500; }
.pub-cite em { color: var(--ink); }
.pub-meta { margin-top: .5rem; display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; }
.pub-meta a { font-family: var(--mono); font-size: .73rem; letter-spacing: .02em; }
.badge { font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .5rem; border-radius: 999px; }
.badge--oa { background: color-mix(in srgb, var(--blue) 12%, transparent); color: var(--blue); border: 1px solid color-mix(in srgb, var(--blue) 30%, transparent); }
.badge--print { background: var(--paper-3); color: var(--ink-3); border: 1px solid var(--line); }
.scholar-link { margin-top: 2rem; }

@media (max-width: 560px) {
  .pub-list li { grid-template-columns: 1fr; gap: .3rem; }
  .pub-list .idx { padding-top: 0; }
}

/* ==========================================================================
   Events & News
   ========================================================================== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1.5rem, 3vw, 2.25rem); }
.card { display: flex; flex-direction: column; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -30px rgba(25,21,18,.55); }
.card .ph { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; aspect-ratio: 16 / 10; }
.card-body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card .date { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--accent); text-transform: uppercase; }
.card h3 { font-size: 1.3rem; line-height: 1.18; margin-top: .55rem; }
.card p { font-size: .93rem; margin-top: .65rem; color: var(--ink-2); }
.card .more { margin-top: auto; padding-top: 1rem; font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; }
.card .more a { display: inline-flex; gap: .4ch; }
.card .more a:hover { text-decoration: underline; }
.note-inline { font-family: var(--mono); font-size: .72rem; color: var(--ink-3); margin-top: 1.5rem; padding: .8rem 1rem; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--paper-2); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-block .k { font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.contact-block .v { font-family: var(--display); font-size: clamp(1.4rem, 1rem + 1.4vw, 1.9rem); color: var(--ink); margin-top: .4rem; line-height: 1.25; }
.contact-block .v a { color: var(--ink); }
.contact-block .v a:hover { color: var(--accent); }
.contact-rows { margin-top: 2rem; }
.contact-rows .row { padding: 1rem 0; border-top: 1px solid var(--line-2); }
.contact-rows .row:first-child { border-top: 0; }
.addr { font-style: normal; line-height: 1.6; color: var(--ink-2); }

@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--footer-bg); color: var(--footer-ink); padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.footer-brand { font-family: var(--display); font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem); color: var(--footer-ink); line-height: 1.1; max-width: 18ch; }
.footer-brand .arrow { color: var(--accent); }
.footer-tagline { margin-top: 1rem; color: var(--footer-mut); font-size: .95rem; max-width: 38ch; }

.funders { }
.funders .subhead { color: var(--footer-mut); border-color: rgba(255,255,255,.14); }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.logo-plate { background: #fff; border-radius: var(--radius); padding: .85rem 1.1rem; display: inline-flex; align-items: center; }
.logo-plate img { height: 40px; width: auto; }
.logo-plate.etag { color: var(--ink); }      /* ETAG svg uses currentColor */
.logo-plate.etag svg { height: 40px; width: auto; }

.footer-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer-bottom, .footer-bottom a { font-family: var(--mono); font-size: .73rem; letter-spacing: .03em; color: var(--footer-mut); }
.footer-bottom a:hover { color: var(--footer-ink); }
.grant-line { color: var(--footer-mut); }
.grant-line b { color: var(--footer-ink); font-weight: 500; }

@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Progressive enhancement: content is hidden only when JS is active (html.js).
   Without JS the .reveal elements stay fully visible. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Skip link ---- */
.skip { position: absolute; left: -999px; top: .5rem; background: var(--ink); color: var(--paper-2); padding: .6rem 1rem; border-radius: var(--radius); z-index: 100; font-family: var(--mono); font-size: .8rem; }
.skip:focus { left: .5rem; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
