/* ==========================================================================
   Sloan Investments — shared stylesheet
   Light institutional theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #0b2949;
  --navy-800: #14385f;
  --navy-700: #1f4a76;
  --navy-600: #35618f;
  --sky-300: #9acbfc;
  --sky-200: #eaf3fd;
  --sky-100: #f6faff;
  --white: #ffffff;
  --ink: #16283c;
  --ink-muted: #55677c;
  --ink-faint: #8494a5;
  --line: rgba(20, 56, 95, 0.14);
  --line-strong: rgba(20, 56, 95, 0.26);
  --gain: #1f7a4d;
  --loss: #ab4038;

  --serif: 'PT Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; color: var(--navy-800); line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
}

.brand__word {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-800);
  white-space: nowrap;
}

.brand__tag {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  text-transform: uppercase;
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
}

.nav__links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav__links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--sky-300);
  transition: right 0.3s cubic-bezier(.2,.8,.2,1);
}

.nav__links a:hover::after,
.nav__links a.is-active::after { right: 0; }
.nav__links a.is-active { color: var(--navy-900); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--navy-800);
  width: 38px;
  height: 38px;
  border-radius: 3px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Buttons / links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 24px;
  background: var(--navy-800);
  color: var(--white);
  border: 1px solid var(--navy-800);
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn:hover { background: var(--navy-900); }

.btn--outline {
  background: transparent;
  color: var(--navy-800);
}

.btn--outline:hover { background: var(--sky-200); }

.btn--light {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}

.btn--light:hover { background: var(--sky-200); }

.btn svg { flex-shrink: 0; width: 15px; height: 11px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-800);
}

.link-arrow svg { transition: transform 0.25s ease; width: 15px; height: 10px; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--tint { background: var(--sky-100); }
.section--divider { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 16px;
}

.eyebrow--onnavy { color: var(--sky-300); }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.section__head h2 { font-size: clamp(28px, 3.2vw, 38px); }
.section__lede { color: var(--ink-muted); font-size: 15.5px; max-width: 46ch; margin-top: 10px; line-height: 1.7; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--navy-800);
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 64px),
    linear-gradient(150deg, var(--navy-800) 40%, var(--navy-900) 100%);
  padding: 76px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero__inner { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.08;
  color: var(--white);
  font-weight: 700;
  max-width: 16ch;
}

.hero__lede {
  margin-top: 22px;
  font-size: 17px;
  color: var(--sky-300);
  max-width: 56ch;
  line-height: 1.7;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Sky banner (callout strip)
   ========================================================================== */

.banner {
  background: var(--sky-300);
  padding: 32px 0;
}

.banner__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.banner__text .date {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  letter-spacing: 0.03em;
}

.banner__text h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy-900);
  margin-top: 4px;
}

/* ==========================================================================
   Stat band (dark, big serif numbers)
   ========================================================================== */

.stat-band { background: var(--navy-800); padding: 64px 0 56px; }

.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-band__item .n {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-band__item .n.up { color: #b7e0c8; }
.stat-band__item .n.down { color: #e6b3ac; }

.stat-band__item .l {
  font-size: 12.5px;
  color: var(--sky-300);
  margin-top: 12px;
  display: block;
  letter-spacing: 0.02em;
}

.stat-band__foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--sky-300);
}

.stat-band__foot a { text-decoration: underline; color: var(--sky-300); }

/* light variant, for interior pages */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.stat-card {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.stat-card:last-child { border-right: none; }

.stat-card .label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  font-weight: 600;
}

.stat-card .value {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--navy-800);
  margin-top: 10px;
  display: block;
}

.stat-card .value.up { color: var(--gain); }
.stat-card .value.down { color: var(--loss); }
.stat-card .sub { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; display: block; }

/* ==========================================================================
   Cards (research / updates teasers)
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover { border-color: var(--sky-300); box-shadow: 0 16px 32px -20px rgba(11,41,73,0.28); transform: translateY(-2px); }

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.badge {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  color: var(--ink-muted);
}

.badge--buy { color: var(--gain); border-color: rgba(31, 122, 77, 0.3); background: rgba(31, 122, 77, 0.07); }
.badge--hold { color: var(--navy-700); border-color: rgba(20, 56, 95, 0.28); background: var(--sky-200); }
.badge--trim { color: var(--loss); border-color: rgba(171, 64, 56, 0.3); background: rgba(171, 64, 56, 0.07); }

.card .ticker-tag { font-size: 12px; color: var(--ink-faint); font-weight: 600; }

.card h3 { font-size: 21px; margin-bottom: 12px; line-height: 1.3; }
.card p { color: var(--ink-muted); font-size: 14px; line-height: 1.65; flex-grow: 1; }

.card__foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  font-weight: 600;
}

/* ==========================================================================
   Holdings table
   ========================================================================== */

.table-wrap { overflow-x: auto; }

.holdings { min-width: 760px; }

.holdings th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 0 20px 14px 0;
  border-bottom: 1px solid var(--line-strong);
}

.holdings td {
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: top;
}

.holdings tbody tr:last-child td { border-bottom: none; }

.holdings .co { font-family: var(--serif); font-size: 18px; color: var(--navy-800); font-weight: 700; }
.holdings .tk { font-size: 12px; color: var(--ink-faint); display: block; margin-top: 3px; font-weight: 600; }
.holdings .num { font-variant-numeric: tabular-nums; text-align: right; }
.holdings th.num { text-align: right; }
.holdings .thesis { color: var(--ink-muted); max-width: 34ch; font-size: 13.5px; line-height: 1.6; }

.weight-bar {
  width: 90px;
  height: 4px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
  margin-left: auto;
}
.weight-bar > span { display: block; height: 100%; background: var(--navy-700); border-radius: 3px; }

/* ==========================================================================
   Allocation chart
   ========================================================================== */

.allocation {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
}

.donut {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donut::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--donut-stops));
  mask: radial-gradient(farthest-side, transparent calc(100% - 42px), #000 calc(100% - 41px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 42px), #000 calc(100% - 41px));
}

.donut__center { position: relative; text-align: center; }
.donut__center .n { font-family: var(--serif); font-size: 24px; color: var(--navy-800); display: block; }
.donut__center .l { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }

.legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.legend__item { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.legend__swatch { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.legend__item .pct { font-variant-numeric: tabular-nums; color: var(--ink-muted); margin-left: auto; font-weight: 600; }

/* ==========================================================================
   Pull quote / tenets
   ========================================================================== */

.pull {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.5;
  color: var(--navy-800);
  font-weight: 400;
  font-style: italic;
  max-width: 22ch;
}

.pull span { color: var(--navy-600); font-style: normal; font-weight: 700; }

.list-rows { border-top: 1px solid var(--line); }
.list-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.list-row__title { font-family: var(--serif); font-size: 19px; color: var(--navy-800); font-weight: 700; }
.list-row__body { color: var(--ink-muted); font-size: 14px; line-height: 1.65; margin-top: 6px; max-width: 60ch; }
.list-row__idx { font-size: 12.5px; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.04em; margin-bottom: 6px; display: block; }
.list-row svg { flex-shrink: 0; margin-top: 6px; width: 15px; height: 11px; color: var(--navy-700); }

/* ==========================================================================
   Report / letter page
   ========================================================================== */

.doc-header { padding: 52px 0 40px; border-bottom: 1px solid var(--line); }

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.doc-meta__item .label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); display: block; }
.doc-meta__item .val { font-family: var(--serif); font-size: 18px; color: var(--navy-800); margin-top: 6px; display: block; }
.doc-meta__item .val.up { color: var(--gain); }
.doc-meta__item .val.down { color: var(--loss); }

.doc-body { display: grid; grid-template-columns: 200px 1fr; gap: 64px; padding: 60px 0; }

.doc-toc { position: sticky; top: 96px; align-self: start; }
.doc-toc .eyebrow { margin-bottom: 18px; }
.doc-toc a { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-muted); padding: 8px 0 8px 14px; border-left: 2px solid var(--line); transition: all 0.2s ease; }
.doc-toc a:hover { color: var(--navy-800); border-left-color: var(--navy-700); }

.prose { max-width: 68ch; }
.prose h3 { font-size: 23px; margin: 46px 0 18px; }
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-muted); font-size: 15.5px; line-height: 1.8; margin-bottom: 18px; }
.prose strong { color: var(--navy-800); font-weight: 700; }
.prose ul { margin: 18px 0; }
.prose ul li { color: var(--ink-muted); font-size: 15px; line-height: 1.8; padding-left: 22px; position: relative; margin-bottom: 8px; }
.prose ul li::before { content: "—"; position: absolute; left: 0; color: var(--navy-600); }

.callout {
  border-left: 3px solid var(--navy-700);
  background: var(--sky-100);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 14.5px;
  color: var(--ink-muted);
  border-radius: 0 4px 4px 0;
}

.fin-table { margin: 24px 0 36px; }
.fin-table th { text-align: right; font-size: 11px; font-weight: 700; color: var(--ink-faint); padding: 10px 16px; border-bottom: 1px solid var(--line-strong); text-transform: uppercase; letter-spacing: 0.05em; }
.fin-table th:first-child { text-align: left; }
.fin-table td { text-align: right; font-variant-numeric: tabular-nums; font-size: 14px; padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--navy-800); font-weight: 600; }
.fin-table td:first-child { text-align: left; font-family: var(--sans); font-weight: 400; color: var(--ink-muted); }

.risk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 32px; }
.risk { border: 1px solid var(--line); padding: 18px 20px; border-radius: 4px; }
.risk .sev { font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.risk .sev.high { color: var(--loss); }
.risk .sev.med { color: var(--navy-600); }
.risk .sev.low { color: var(--gain); }
.risk h5 { font-family: var(--sans); font-size: 14px; color: var(--navy-800); margin: 8px 0 6px; font-weight: 700; }
.risk p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

/* callout, dark variant — for emphasis boxes inside prose */
.callout--dark {
  border-left: 3px solid var(--sky-300);
  background: var(--navy-800);
  color: var(--sky-300);
}
.callout--dark strong { color: var(--white); }

/* compact stat grid — inline valuation-style figures within a report */
.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 26px 0;
  border-radius: 4px;
  overflow: hidden;
}
.mini-stat { background: var(--navy-800); padding: 20px 18px; }
.mini-stat span { display: block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky-300); margin-bottom: 7px; }
.mini-stat b { font-family: var(--serif); font-size: 24px; color: var(--white); font-weight: 700; }

/* driver cards — numbered stat cards within a report */
.driver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; }
.driver-card { border: 1px solid var(--line); border-radius: 4px; padding: 22px 20px; }
.driver-card .cn { font-family: var(--serif); font-size: 12px; color: var(--navy-600); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 10px; }
.driver-card h4 { font-family: var(--serif); font-size: 18px; color: var(--navy-800); margin: 0 0 10px; }
.driver-card .stat { font-family: var(--serif); font-size: 22px; color: var(--navy-700); font-weight: 700; display: block; margin-bottom: 2px; }
.driver-card .stat-l { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 12px; }
.driver-card p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 10px; }
.driver-card p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .mini-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .driver-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy-900); color: var(--sky-300); padding: 72px 0 32px; }

.footer__accordion { max-width: 640px; margin: 0 auto 48px; display: flex; flex-direction: column; gap: 10px; }
.footer__accordion a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--white);
  transition: background 0.2s ease;
}
.footer__accordion a:hover { background: rgba(255,255,255,0.06); }
.footer__accordion svg { width: 15px; height: 11px; flex-shrink: 0; }

.footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
  font-size: 12px;
  color: rgba(154, 203, 252, 0.75);
  line-height: 1.7;
  max-width: 80ch;
  margin: 0 auto;
}

.footer__disclaimer strong { color: var(--sky-300); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(154, 203, 252, 0.75);
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Page intro
   ========================================================================== */

.page-intro { padding: 60px 0 44px; border-bottom: 1px solid var(--line); }
.page-intro h1 { font-size: clamp(32px, 4.2vw, 46px); }
.page-intro__lede { color: var(--ink-muted); font-size: 16px; max-width: 58ch; margin-top: 16px; line-height: 1.7; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 920px) {
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr; }
  .allocation { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .legend { grid-template-columns: 1fr; width: 100%; max-width: 380px; }
  .legend__item { justify-content: space-between; }
  .doc-body { grid-template-columns: 1fr; }
  .doc-toc { position: static; display: flex; flex-wrap: wrap; gap: 8px 20px; }
  .doc-toc a { border-left: none; padding: 4px 0; }
  .risk-grid { grid-template-columns: 1fr; }
  .banner__row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed; top: 71px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column; padding: 32px; gap: 6px; align-items: flex-start;
    transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 19px; font-family: var(--serif); font-weight: 700; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: flex; }
  .brand__tag { display: none; }
  .wrap { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .section { padding: 60px 0; }
  .stat-band__grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-card { border-right: none; }
  .footer__accordion { padding: 0 4px; }
}

@media (max-width: 400px) {
  .brand__word { font-size: 17px; }
  .brand__mark { width: 32px; height: 32px; }
}
