/*
 * CV theme — "terminal / dev" art direction (Ubuntu skin), layered on planks tokens/styles.
 * Dark-first: the iconic Ubuntu aubergine terminal + orange accent + Ubuntu Mono, with bash
 * prompt colors (green user@host, blue path). Light = a warm Yaru paper variant; print is
 * decluttered to an ink-on-white, ATS-safe document.
 */

/* ---- tokens: DARK (default) — Ubuntu terminal (aubergine + orange) -------------------------- */
:root {
  --cv-bg: #1b0416;      /* page, deep aubergine */
  --cv-window: #300a24;  /* the iconic Ubuntu terminal aubergine */
  --cv-bar: #2c001e;     /* Yaru dark headerbar */
  --cv-panel: #3a1030;   /* sidebar / cards */
  --cv-ink: #eeeeec;     /* Tango white */
  --cv-bright: #ffffff;
  --cv-muted: #c9b3c1;
  --cv-faint: #9a7f92;
  --cv-line: #4d213f;

  --cv-neon: #e95420;    /* Ubuntu orange (primary accent) */
  --cv-neon-2: #729fcf;  /* bash prompt blue (path) */
  --cv-green: #8ae234;   /* bash prompt green (user@host / present) */
  --cv-amber: #fce94f;   /* Tango yellow */
  --cv-red: #ef2929;     /* Tango red */
  --cv-neon-soft: rgba(233, 84, 32, 0.16);

  --font-mono: "Ubuntu Mono", ui-monospace, "DejaVu Sans Mono", Menlo, Consolas, monospace;
  --cv-display: "Ubuntu", var(--font-mono);
  --font-family: var(--font-mono);
  --font-size-base: 15.5px;
  --ratio: 1.42;
  --measure: 74ch;

  color: var(--cv-ink);
  background: var(--cv-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { max-inline-size: none; }

body {
  margin: 0;
  color: var(--cv-ink);
  font-family: var(--font-mono);
  line-height: 1.6;
  background:
    radial-gradient(48rem 30rem at 82% -8%, var(--cv-neon-soft), transparent 60%),
    radial-gradient(40rem 26rem at 0% 8%, rgba(173, 127, 168, 0.1), transparent 60%),
    repeating-linear-gradient(0deg, rgba(233, 84, 32, 0.03) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(233, 84, 32, 0.03) 0 1px, transparent 1px 24px),
    var(--cv-bg);
}

/* ---- page / sheet --------------------------------------------------------------------------- */
.cv-page { padding: clamp(0.75rem, 3vw, 2.75rem) 1rem; }
.cv-sheet { max-width: 960px; margin: 0 auto; }
.cv-content { margin-top: 1.6rem; }

/* ---- site header (top navigation) ----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--cv-bar) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cv-line);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: 960px; margin: 0 auto; padding: 0.6rem 1rem;
}
.site-brand {
  display: inline-flex; align-items: baseline; gap: 0.45ch;
  font-weight: 700; text-decoration: none; color: var(--cv-ink); font-size: 0.95rem;
}
.site-brand-name { color: var(--cv-bright); }
.site-brand:hover .site-brand-name { color: var(--cv-neon); }
.site-nav { display: inline-flex; align-items: center; gap: 0.35rem; }
.site-nav-link {
  text-decoration: none; color: var(--cv-muted); font-size: 0.82rem;
  padding: 0.3rem 0.7rem; border-radius: 6px; border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.site-nav-link:hover { color: var(--cv-neon); border-color: var(--cv-line); }
.site-nav-link.is-active {
  color: var(--cv-neon); border-color: var(--cv-line);
  background: var(--cv-neon-soft);
}

/* ---- site footer ---------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--cv-line); margin-top: 1rem; }
.site-footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.4rem 1rem;
  max-width: 960px; margin: 0 auto; padding: 1.1rem 1rem 1.6rem;
  font-size: 0.8rem;
}
.site-copy { color: var(--cv-faint); }
.site-built .tok-comment { opacity: 0.85; }

/* ---- terminal hero -------------------------------------------------------------------------- */
.term {
  border: 1px solid var(--cv-line);
  border-radius: 12px;
  background: var(--cv-window);
  box-shadow: 0 0 0 1px rgba(56, 225, 255, 0.05), 0 30px 70px -34px rgba(0, 0, 0, 0.8),
    0 0 60px -30px var(--cv-neon);
  overflow: clip;
}
.term-bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  background: var(--cv-bar);
  border-bottom: 1px solid var(--cv-line);
}
/* GNOME/Yaru window controls: glyphed circular buttons, close-first (Ubuntu Ambiance) */
.term-btns { display: inline-flex; gap: 0.5rem; flex: 0 0 auto; }
.term-btn {
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--cv-ink) 14%, transparent); color: var(--cv-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.term-btn svg { width: 0.6rem; height: 0.6rem; }
.term-btn:hover { color: var(--cv-bright); background: color-mix(in srgb, var(--cv-ink) 26%, transparent); }
.term-btn-close:hover { background: var(--cv-neon); color: #fff; }
.term-title { flex: 1; text-align: center; color: var(--cv-faint); font-size: 0.8rem; letter-spacing: 0.02em; }

.term-body { padding: 1.3rem 1.4rem 1.5rem; }
.term-cmd { color: var(--cv-muted); font-size: 0.9rem; margin-top: 0.7rem; }
.term-cmd:first-child { margin-top: 0; }
.term-out { padding-left: 1.2rem; margin: 0.25rem 0 0.2rem; }

.tok-p { color: var(--cv-green); font-weight: 700; }
.tok-path { color: var(--cv-neon-2); }
.tok-cmd { color: var(--cv-neon); font-weight: 700; }
.tok-file { color: var(--cv-amber); }
.tok-ext { color: var(--cv-faint); }
.tok-flag { color: var(--cv-muted); }
.tok-dim { color: var(--cv-muted); }
.tok-comment { color: var(--cv-green); opacity: 0.85; }

.cv-name {
  margin: 0; /* it's the page <h1>; drop the UA heading margin */
  font-family: var(--cv-display); font-size: clamp(1.75rem, 4.3vw, 2.7rem); font-weight: 700;
  letter-spacing: -0.01em; color: var(--cv-bright); line-height: 1.05;
  text-shadow: 0 0 26px rgba(233, 84, 32, 0.35);
}
.cursor {
  display: inline-block; width: 0.55ch; height: 1.05em; margin-left: 0.18em;
  background: var(--cv-neon); vertical-align: -0.16em; box-shadow: 0 0 10px var(--cv-neon);
  animation: cv-blink 1.05s steps(1) infinite;
}
@keyframes cv-blink { 50% { opacity: 0; } }
.cv-headline { font-size: 0.98rem; margin-top: 0.35rem; }

/* contact + stats live in the terminal output */
.cv-contact { margin-top: 0.1rem; }
.cv-chip {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; text-decoration: none;
  color: var(--cv-ink); padding: 0.28rem 0.55rem; border-radius: 6px;
  background: #0e1626; border: 1px solid var(--cv-line);
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.cv-chip:hover { border-color: var(--cv-neon); color: var(--cv-neon); box-shadow: 0 0 0 1px var(--cv-neon-soft); }
.cv-chip .cv-ico { width: 0.9rem; height: 0.9rem; color: var(--cv-neon); }

.cv-stats { align-items: baseline; }
.cv-stat-n { color: var(--cv-neon); font-weight: 700; font-size: 1.05rem; }
.cv-stat-l { color: var(--cv-muted); font-size: 0.78rem; }
.cv-stat-sep { color: var(--cv-line); }

/* ---- icons ---------------------------------------------------------------------------------- */
.cv-ico { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }

/* ---- tmux split (two panes + status bar) ---------------------------------------------------- */
.tmux-cmd { margin-top: 1.2rem; }
.tmux {
  margin-top: 0.5rem; border: 1px solid var(--cv-line); border-radius: 8px; overflow: clip;
  background: color-mix(in srgb, var(--cv-window) 60%, transparent);
}
.tmux-panes { align-items: stretch; }
.pane { padding: 1.2rem 1.3rem; }
.cv-col-main.pane { border-left: 2px solid var(--cv-green); } /* tmux "active pane" spine */
.cv-col-side.pane { border-left: 1px solid var(--cv-line); background: color-mix(in srgb, var(--cv-panel) 55%, transparent); }

.tmux-status {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--cv-green); color: #10250a; font-weight: 700; font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
}
.tmux-left { display: inline-flex; align-items: baseline; gap: 0.7rem; min-width: 0; overflow: hidden; }
.tmux-session { background: rgba(0, 0, 0, 0.22); padding: 0 0.4rem; border-radius: 2px; }
.tmux-tab { opacity: 0.75; white-space: nowrap; }
.tmux-tab.is-active { opacity: 1; }
.tmux-right { opacity: 0.85; white-space: nowrap; }
@media (max-width: 620px) { .tmux-right { display: none; } }

/* ---- section headers ------------------------------------------------------------------------ */
.cv-h {
  display: flex; align-items: baseline; gap: 0.5ch; margin: 0 0 1rem;
  font-size: 0.92rem; font-weight: 700;
}
.cv-h .tok-file { color: var(--cv-neon); }
.cv-h::after {
  content: ""; flex: 1; align-self: center; margin-left: 0.7rem;
  border-top: 1px dashed var(--cv-line);
}

/* ---- summary -------------------------------------------------------------------------------- */
.cv-lead { margin-top: 1.6rem; }
.cv-summary { font-size: 0.94rem; color: var(--cv-ink); }
.cv-context { color: var(--cv-muted); margin: 0; }

/* ---- experience: `ls ~/experience` → collapsible <details> ---------------------------------- */
.cv-exp-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.cv-exp-head .cv-h { flex: 1 1 auto; margin: 0; min-width: 0; }
/* "expand all / collapse all" — a ghost pill that matches the window toolbar buttons */
.cv-exp-all {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 0.4rem;
  font: inherit; font-size: 0.75rem; line-height: 1; cursor: pointer;
  color: var(--cv-muted); background: transparent; border: 1px solid var(--cv-line);
  padding: 0.3rem 0.66rem; border-radius: 7px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.cv-exp-all:hover { color: var(--cv-neon); border-color: var(--cv-neon); background: var(--cv-neon-soft); }
.cv-exp-all .cv-chevron { width: 0.85rem; height: 0.85rem; transition: transform 0.18s ease; }
.cv-exp-all[aria-expanded="true"] .cv-chevron { transform: rotate(180deg); }

.cv-exp-list { border: 1px solid var(--cv-line); border-radius: 8px; overflow: clip; }
.cv-exp { border-bottom: 1px solid var(--cv-line); }
.cv-exp:last-child { border-bottom: 0; }
.cv-exp-sum {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.2rem 0.6ch;
  padding: 0.62rem 0.8rem; cursor: pointer; list-style: none; user-select: none;
  transition: background 0.15s ease;
}
.cv-exp-sum::-webkit-details-marker { display: none; }
.cv-exp-sum:hover { background: color-mix(in srgb, var(--cv-neon) 9%, transparent); }
.cv-exp[open] > .cv-exp-sum { background: color-mix(in srgb, var(--cv-neon) 6%, transparent); }

/* the disclosure caret: a boxed chevron button — the clear "this row opens" affordance */
.cv-exp-caret {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 1.4rem; height: 1.4rem; border-radius: 6px; color: var(--cv-neon);
  border: 1px solid color-mix(in srgb, var(--cv-neon) 45%, var(--cv-line));
  background: color-mix(in srgb, var(--cv-neon) 13%, transparent);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.cv-exp-caret .cv-chevron { transition: transform 0.18s ease; }
.cv-exp[open] > .cv-exp-sum .cv-exp-caret {
  color: var(--cv-window); background: var(--cv-neon); border-color: var(--cv-neon);
}
.cv-exp[open] > .cv-exp-sum .cv-exp-caret .cv-chevron { transform: rotate(180deg); }
.cv-exp-sum:hover .cv-exp-caret {
  color: var(--cv-window); background: var(--cv-neon); border-color: var(--cv-neon);
  box-shadow: 0 0 0 3px var(--cv-neon-soft);
}

.cv-exp-perms { color: var(--cv-faint); font-size: 0.76rem; }
.cv-exp-name { flex: 1 1 auto; }
.cv-role-title { color: var(--cv-bright); font-weight: 700; }
.cv-exp-sum:hover .cv-role-title { color: var(--cv-neon); }
.cv-at { color: var(--cv-faint); }
.cv-role-org { color: var(--cv-neon); font-weight: 700; }
.cv-exp-date { margin-left: auto; color: var(--cv-neon-2); font-size: 0.82rem; white-space: nowrap; }
.cv-range { color: var(--cv-neon-2); }
.cv-dot { opacity: 0.5; }
.cv-badge {
  color: #10250a; background: var(--cv-green); font-weight: 700; font-size: 0.68rem;
  padding: 0.04rem 0.4rem; border-radius: 4px;
}
.cv-exp-body { padding: 0.1rem 0.9rem 0.95rem 1.65rem; }
.cv-exp[open] > .cv-exp-body { animation: cv-reveal 0.18s ease; }
.cv-exp-loc { margin-bottom: 0.35rem; }
@keyframes cv-reveal { from { opacity: 0; transform: translateY(-3px); } }
@media (max-width: 560px) { .cv-exp-perms { display: none; } }

.cv-highlights { list-style: none; margin: 0.5rem 0 0; padding: 0; color: var(--cv-ink); }
.cv-highlights li { position: relative; padding-left: 1.1rem; margin: 0.34rem 0; }
.cv-highlights li::before { content: "›"; position: absolute; left: 0; color: var(--cv-neon); font-weight: 700; }
.cv-highlights-sm { font-size: 0.86rem; }

/* ---- project cards -------------------------------------------------------------------------- */
.cv-card {
  border: 1px solid var(--cv-line); border-radius: 10px; padding: 1rem 1.1rem; background: var(--cv-panel);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.cv-card:hover { border-color: var(--cv-neon); transform: translateY(-2px); box-shadow: 0 12px 28px -18px var(--cv-neon); }
.cv-proj-name { font-weight: 700; margin-bottom: 0.25rem; }
.cv-proj-name a { color: #ff7043; text-decoration: none; } /* brighter than --cv-neon for AA on the card panel */
.cv-proj-name a:hover { text-decoration: underline; }
.cv-tags { margin-top: 0.55rem; }
.cv-tag { font-size: 0.72rem; color: var(--cv-muted); padding: 0.1rem 0.45rem; border-radius: 5px; background: #0e1626; border: 1px solid var(--cv-line); }

/* ---- skills / aside ------------------------------------------------------------------------- */
.cv-skill-label { font-size: 0.74rem; color: var(--cv-neon-2); margin-bottom: 0.55rem; }
.cv-skill-label::before { content: "// "; color: var(--cv-faint); }
.cv-skill {
  display: inline-flex; align-items: center; gap: 0.4rem; line-height: 1.3; font-size: 0.78rem;
  padding: 0.3rem 0.6rem; border-radius: 7px; background: #0e1626; border: 1px solid var(--cv-line); color: var(--cv-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cv-skill:hover { border-color: var(--cv-neon); box-shadow: 0 0 0 1px var(--cv-neon-soft), 0 0 14px -6px var(--cv-neon); }
.cv-skill.has-logo { padding-left: 0.48rem; }

.cv-edu-degree { color: var(--cv-bright); font-weight: 700; }
.cv-edu-loc { color: var(--cv-faint); font-size: 0.8rem; }
.cv-lang { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 0.88rem; }
.cv-lang-level { color: var(--cv-neon-2); font-size: 0.8rem; }

/* ---- toolbar (in the window bar) ------------------------------------------------------------ */
.cv-toolbar { margin-left: auto; display: inline-flex; align-items: center; gap: 0.7rem; flex: 0 0 auto; }
.cv-langs { font-size: 0.8rem; }
.cv-langs a { color: var(--cv-faint); text-decoration: none; }
.cv-langs a:hover { color: var(--cv-neon); }
.cv-lang-cur { color: var(--cv-neon); }
.cv-lang-sep { color: var(--cv-line); margin: 0 0.35rem; }
.cv-download {
  display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; text-decoration: none;
  color: var(--cv-green); padding: 0.15rem 0.55rem; border-radius: 6px; border: 1px solid var(--cv-line);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.cv-download:hover { border-color: var(--cv-green); box-shadow: 0 0 12px -4px var(--cv-green); }
.cv-download .cv-ico { width: 0.9rem; height: 0.9rem; }

a { color: var(--cv-neon); }

/* ---- tech logos ----------------------------------------------------------------------------- */
.cv-logo {
  display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center;
  width: 1rem; height: 1rem; color: var(--logo, currentColor);
}
.cv-logo svg { width: 100%; height: 100%; max-width: 1rem; max-height: 1rem; display: block; }
.cv-logo-mid { color: var(--logo); }
/* On dark (default): near-black brand logos would vanish → use ink; light logos keep brand. */
.cv-logo-dark { color: var(--cv-ink); }
.cv-logo-light { color: var(--logo); }

@media (prefers-reduced-motion: reduce) {
  .cursor { animation: none; }
  .cv-card, .cv-skill, .cv-chip { transition: none; }
  .cv-exp[open] > .cv-exp-body { animation: none; }
}

/* ---- LIGHT variant (Yaru-light: warm paper + Ubuntu orange) --------------------------------- */
@media (prefers-color-scheme: light) {
  :root {
    --cv-bg: #f7f3f4; --cv-window: #ffffff; --cv-bar: #f3ebef; --cv-panel: #fbf6f8;
    --cv-ink: #2b2226; --cv-bright: #1a1013; --cv-muted: #6a5b63; --cv-faint: #6f6069;
    --cv-line: #eadfe4;
    /* All accents darkened so text hits WCAG AA (>=4.5:1) on the paper backgrounds. */
    --cv-neon: #ba3a0d;   /* Ubuntu orange, darkened for contrast on paper */
    --cv-neon-2: #2f6bb0; /* prompt blue */
    --cv-green: #2c6e14;  /* prompt green */
    --cv-amber: #8a5a00;  /* Tango yellow has no legible form on white — use a dark amber for text */
    --cv-neon-soft: rgba(210, 74, 23, 0.12);
  }
  body {
    background:
      radial-gradient(48rem 30rem at 82% -8%, var(--cv-neon-soft), transparent 60%),
      repeating-linear-gradient(0deg, rgba(120, 60, 40, 0.03) 0 1px, transparent 1px 24px),
      repeating-linear-gradient(90deg, rgba(120, 60, 40, 0.03) 0 1px, transparent 1px 24px),
      var(--cv-bg);
  }
  .cv-chip, .cv-skill, .cv-tag { background: #f6eff1; }
  .cv-name { text-shadow: none; }
  /* light bg: near-black logos keep brand; near-white logos use ink */
  .cv-logo-dark { color: var(--logo); }
  .cv-logo-light { color: var(--cv-ink); }
  /* The green tmux bar + "present" badge carry dark text in dark mode; on the lighter green of
     the paper theme, flip that text to near-white so it stays legible. */
  .tmux-status, .cv-badge { color: #f4fbee; }
  .tmux-tab { opacity: 0.9; }
  /* Project links live on the near-white card; use the darkened paper orange (not the bright
     dark-mode value) so they meet AA. */
  .cv-proj-name a { color: var(--cv-neon); }
}

/* ---- PRINT: decluttered ink-on-white, ATS-safe ---------------------------------------------- */
@media print {
  :root {
    --cv-bg: #fff; --cv-window: #fff; --cv-panel: #fff; --cv-ink: #221a1e; --cv-bright: #140c0f;
    --cv-muted: #443b40; --cv-faint: #6a5f65; --cv-line: #d8ccd2;
    --cv-neon: #b5401a; --cv-neon-2: #b5401a; --cv-green: #2f6b1a; --cv-amber: #b5401a;
    font-size: 10.3pt;
  }
  body { background: #fff; }
  .cv-page { padding: 0; } .cv-sheet { max-width: none; }
  .cv-content { margin-top: 0; }

  /* site chrome is screen-only — the printed CV is content, not a web page */
  .site-header, .site-footer, .cv-exp-all, .cv-exp-caret { display: none !important; }

  /* strip the terminal + tmux chrome — print shows content only */
  .term { border: 0; border-radius: 0; box-shadow: none; background: none; }
  .term-bar, .term-cmd, .cursor, .tmux-status { display: none !important; }
  .term-body { padding: 0 0 0.5rem; border-bottom: 2px solid var(--cv-neon); }
  .term-out { padding-left: 0; }
  .cv-headline .tok-comment::before { content: ""; } /* keep "# headline" readable */

  /* headings read as normal titles (drop the shell decoration) */
  .cv-h .tok-p, .cv-h .tok-dim, .cv-h .tok-ext, .cv-h .tok-flag, .cv-h .tok-path { display: none; }
  .cv-h .tok-file { text-transform: uppercase; letter-spacing: 0.08em; color: var(--cv-neon); }

  /* flatten tmux panes → single column */
  .tmux { border: 0; border-radius: 0; background: none; margin-top: 0; }
  .cv-body { display: block !important; }
  .pane { padding: 0 !important; }
  .cv-col-main.pane { border-left: 0; }
  .cv-col-side.pane { margin-top: 1rem; background: #fff; border: 0; }
  .cv-col-side .cv-section { margin-top: 0.8rem; }

  /* experience: force-open, drop the collapsible affordances */
  .cv-exp-list { border: 0; }
  .cv-exp { break-inside: avoid; }
  /* higher-specificity than .cv-exp[open] > .cv-exp-body so the reveal fade can't leave it hidden */
  .cv-exp[open] > .cv-exp-body,
  .cv-exp-body { display: block !important; padding: 0.1rem 0 0.6rem 1.1rem; animation: none !important; opacity: 1 !important; }
  .cv-exp-sum { padding: 0.35rem 0; }
  .cv-exp-sum::before, .cv-exp-perms { display: none; }
  .cv-exp-sum:hover { background: none; }

  .cv-card, .cv-edu-entry, .cv-skillgroup, .cv-lang { break-inside: avoid; }
  .cv-h { break-after: avoid; }
  .cv-card:hover, .cv-skill:hover, .cv-chip:hover { box-shadow: none; transform: none; }
  a { color: var(--cv-ink); text-decoration: none; }

  .cv-logo-dark { color: var(--logo); }
  .cv-logo-light { color: var(--cv-ink); }
}

@page { size: A4; margin: 13mm 12mm; }
