:root{
  --font-heading: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  /* Technical / research UI */
  --border-radius: 0px;
  --border-width: 1px;

  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --bg-header: #f6f8fa;

  --text-main: #111827;
  --text-muted: #1f2937;

  --border-color: #d0d7de;
  --accent-color: #0969da;
  --accent-hover: #054da0;

  --good: #1B7F5A;
  --warn: #A87400;
  --bad: #B3261E;

  --shadow: none;
  --header-shadow: none;

  /* Back-compat aliases used by some inline styles */
  --text: var(--text-main);
  --muted: var(--text-muted);
  --border: var(--border-color);
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: var(--accent-color); text-decoration: none; }
a:hover{ text-decoration: underline; }
.link--plain{ color: inherit; text-decoration: none; }
.link--plain:hover{ text-decoration: none; }
.state-link{ font-weight: 700; }

.container{ max-width: 1000px; margin: 0 auto; padding: 18px 18px 34px; }

.site-header{
  position: static;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-bottom: var(--border-width) solid var(--border-color);
  box-shadow: var(--header-shadow);
}

.site-header__top{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content: space-between;
  padding: 2px 0 0;
  margin-bottom: -20px;
}

.site-header__logo{
  display: flex;
  justify-content: center;
  padding: 0 0 18px;
  margin-top: -18px;
}
.caspr-logotype{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.caspr-logotype img{
  height: 92px;
  width: auto;
  display: block;
  max-width: 100%;
}

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

.caspr-logo{
  display:inline-flex;
  align-items:center;
  border: 1px solid transparent;
}
.caspr-logo:hover{ opacity: .85; }
.caspr-logo img{
  height: 22px;
  width: auto;
  display:block;
}

.brand{
  display:flex;
  gap: 10px;
  align-items: baseline;
  color: var(--text-main);
}
.brand__title{ font-weight: 700; letter-spacing: 0; font-size: 20px; }
.brand__tag{
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 0;
  border: var(--border-width) solid var(--border-color);
  color: var(--text-muted);
  background: var(--bg-header);
}

.nav{ display:flex; gap: 10px; }
.nav__link{
  padding: 8px 10px;
  border-radius: 0;
  border: 1px solid transparent;
  color: var(--text-muted);
}
.nav__link--active{
  color: var(--text-main);
  border-color: var(--border-color);
  background: var(--bg-header);
}

.hero{
  margin-top: 10px;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
/* Page-specific hero sizing */
.hero h1{ margin: 0 0 6px; font-size: 32px; letter-spacing: 0; }
.hero--state-detail h1{ font-size: 56px; margin-top: 10px; }
.hero--state-detail .badge{
  font-size: 37px;
  padding: 4px 10px;
}
.hero p{ margin: 8px 0 0; color: var(--text-main); line-height: 1.55; }
.hero__meta{ margin-top: 12px; display:flex; gap: 10px; flex-wrap: wrap; }
.pill{
  display:inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 0;
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-header);
  color: var(--text-muted);
  font-size: 13px;
}
.pill strong{ color: var(--text-main); font-weight: 650; }

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 940px){
  .grid{ grid-template-columns: 1.25fr .75fr; }
}

.card{
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card__header{
  padding: 14px 14px 12px;
  border-bottom: var(--border-width) solid var(--border-color);
  background: var(--bg-header);
}
.card__header h2{ margin: 0; font-size: 16px; }
.card__body{ padding: 14px; }
.card__body--flush{ padding: 0; }

.controls{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.control{
  flex: 1 1 220px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}
.control label{ font-size: 12px; color: var(--text-muted); }
.control input, .control select{
  padding: 10px 12px;
  border-radius: var(--border-radius);
  border: var(--border-width) solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-main);
}
.control input::placeholder{ color: #9AA6AD; }
.control--nolabel{ margin-top: 6px; }

table{
  width: 100%;
  border-collapse: collapse;
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-card);
}
.table-wrap{
  width: 100%;
}
.table-wrap--bleed{
  margin-left: -14px;
  margin-right: -14px;
}
th, td{
  text-align:left;
  padding: 10px 10px;
  border: var(--border-width) solid var(--border-color);
  vertical-align: top;
}
th{ font-size: 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
tbody tr:hover td{ background: rgba(9, 105, 218, 0.06); }

#summary-table thead tr:first-child > *{
  border-top: none;
}
#summary-table tbody tr:last-child > *{
  border-bottom: none;
}
#summary-table tr > *:first-child{
  border-left: none;
}
#summary-table tr > *:last-child{
  border-right: none;
}
.table__why{
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 6px;
}
td .citations__list{
  font-size: 12px;
  color: var(--text-muted);
  margin: 6px 0 0;
  padding-left: 16px;
}

#ranking .rank,
#ranking .rank-header{
  width: 56px;
  text-align: right;
  font-family: var(--mono);
  color: var(--text-muted);
  white-space: nowrap;
}

.score{
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: .2px;
}
.score--100{ color: var(--good); }
.score--low{ color: var(--bad); }
.score--mid{ color: var(--warn); }

.badge{
  display:inline-flex;
  align-items:center;
  padding: 2px 8px;
  border-radius: 0;
  font-size: 12px;
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-header);
  color: var(--text-muted);
}

.risk-badge{
  display:inline-flex;
  align-items:center;
  padding: 2px 10px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: var(--border-width) solid transparent;
}
.risk-badge--high{
  color: var(--bad);
  border-color: rgba(183,58,50,.55);
  background: rgba(183,58,50,.08);
}
.risk-badge--medium{
  color: var(--warn);
  border-color: rgba(192,106,43,.5);
  background: rgba(192,106,43,.12);
}
.risk-badge--unclear{
  color: #6b7280;
  border-color: #cfd4dc;
  background: #f3f4f6;
}

.at-risk-grid{
  display: grid;
  gap: 14px;
}
.at-risk-card{
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-card);
  padding: 14px;
}
.at-risk-card__header{
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.at-risk-card__title{
  margin: 0;
  font-size: 20px;
}
.at-risk-card__summary{
  margin: 6px 0 10px;
  color: var(--text-muted);
}
.at-risk-card__status{
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.at-risk-card .list{
  margin: 0;
  padding-left: 18px;
}
.at-risk-meta{
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.card__body--flush{
  padding: 0;
}
.card__body--flush .table-wrap{
  margin: 0;
}
.card__body--flush .table-wrap table{
  border: none;
}

.card__body > div[style*="overflow:auto"]{
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 720px){
  .site-header__top{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .nav{
    width: 100%;
    flex-wrap: wrap;
    gap: 6px;
  }
  .nav__link{
    padding: 6px 8px;
    font-size: 13px;
  }
  .brand__title{
    font-size: 18px;
  }
  .site-header__logo{
    padding: 0 0 12px;
    margin-top: 0;
  }
  .caspr-logotype img{
    height: 72px;
  }
}

.status-text{
  font-size: inherit;
  color: var(--text-main);
  line-height: 1.55;
}

.score-map{
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #e6f0f7;
  padding: 12px;
}
.score-map__svg{
  width: 100%;
  height: auto;
  display: block;
}
.map-state-link{
  cursor: pointer;
}
.map-state-shape{
  fill: var(--bg-header);
  stroke: #ffffff;
  stroke-width: 1;
  transition: opacity 0.15s ease;
}
.map-state-shape.score--100{ fill: var(--good); }
.map-state-shape.score--mid{ fill: var(--warn); }
.map-state-shape.score--low{ fill: var(--bad); }
.map-state-shape.map-grade--a{ fill: #4A9E4E; }
.map-state-shape.map-grade--b{ fill: #5294D6; }
.map-state-shape.map-grade--c{ fill: #ECCB79; }
.map-state-shape.map-grade--d{ fill: #E99A4A; }
.map-state-shape.map-grade--f{ fill: #CC5F5F; }
.map-state-shape.map-grade--fminus{ fill: #9F283C; }
.map-state-link:hover .map-state-shape{
  opacity: 0.85;
}
.map-tooltip{
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
  color: #fff;
  padding: 8px 10px;
  border: 1px solid #111;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translate(-9999px, -9999px);
  transition: opacity 0.12s ease;
  white-space: nowrap;
}
.map-tooltip.is-active{
  opacity: 1;
}
.map-tooltip__title{
  font-weight: 700;
  letter-spacing: 0.01em;
}
.map-tooltip__meta{
  font-family: var(--mono);
  margin-top: 2px;
}
.state-link__arrow{
  color: var(--accent-color);
  font-weight: 700;
}

.share-links{
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
}
.share-links__link{
  font-weight: 800;
}
.share-links__arrow{
  color: var(--accent-color);
  font-weight: 800;
}

.card__header--row{
  display:flex;
  align-items:center;
  gap: 12px;
}
.inline-check{
  margin-left: auto;
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.inline-check input{
  margin: 0;
}
.tax-sort{
  margin-left: auto;
  padding: 8px 10px;
  border-radius: var(--border-radius);
  border: var(--border-width) solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-main);
  font-size: 13px;
}

/* Report card */
.report-card__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 820px){
  .report-card__grid{
    grid-template-columns: 240px 240px 1fr;
    align-items: stretch;
  }
}
.report-card__tile{
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-header);
  padding: 12px;
  border-radius: var(--border-radius);
}
.report-card__kicker{
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.report-card__value{
  margin-top: 6px;
  color: var(--text-main);
  font-weight: 900;
  letter-spacing: .2px;
}
.report-card__value--grade{
  font-family: var(--mono);
  font-size: 52px;
  line-height: 1.0;
}
.report-card__value--score{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--mono);
  font-size: 38px;
  line-height: 1.0;
}
.report-card__outof{
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
}
.report-card__sub{
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}
.grade--a{ color: var(--good); }
.grade--b{ color: var(--good); }
.grade--c{ color: var(--warn); }
.grade--d{ color: var(--warn); }
.grade--f{ color: var(--bad); }

.kpi{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.kpi__item{
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 10px;
  background: var(--bg-header);
}
.kpi__label{ font-size: 12px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.kpi__value{ font-size: 20px; font-weight: 800; }
.kpi__value small{ font-size: 12px; color: var(--text-muted); font-weight: 600; }
.kpi__value small.score--100{ color: var(--good); }
.kpi__value small.score--mid{ color: var(--warn); }
.kpi__value small.score--low{ color: var(--bad); }

.section-title{
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: .2px;
  text-transform: uppercase;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sources{
  margin-top: 10px;
  padding: 10px;
  border-radius: var(--border-radius);
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-header);
}
.sources summary{ cursor: pointer; color: var(--text-main); font-weight: 700; }
.sources ul{ margin: 10px 0 0; padding-left: 18px; color: var(--text-muted); }
.sources li{ margin: 6px 0; word-break: break-word; }

.site-footer{
  margin-top: 26px;
  border-top: var(--border-width) solid var(--border-color);
  background: var(--bg-header);
}
.site-footer__inner{
  display:flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--text-muted);
  padding: 12px 0;
  font-size: 13px;
}

/* Academic-ish citations */
.citations{
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 6px;
  border-top: 1px dashed var(--border-color);
}
.citations__label{
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}
.citations__list{
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 13px;
}
.citation{ margin: 6px 0; }
.citation__author{ color: var(--text-muted); }
.citation__title{ color: var(--accent-color); font-weight: 650; }
.citation__meta{ color: var(--text-muted); }

/* Shareable report-card pages (standalone) */
.page--minimal{
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px 28px;
  background: #ffffff;
  overflow-x: hidden;
}

.share-report-card__share{
  font-size: 13px;
  color: #111111;
  text-decoration: underline;
  font-weight: 700;
  letter-spacing: .08em;
}
.share-report-card__share:hover{
  opacity: .8;
}
.share-report-card{
  width: 500px;
  height: 750px;
  min-width: 500px;
  max-width: 500px;
  min-height: 750px;
  max-height: 750px;
  flex: 0 0 auto;
  border: 1.5px solid #9aa3af;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  --card-font-heading: var(--font-heading);
  --card-font-body: var(--font-body);
  --card-bad: var(--bad);
  font-family: var(--card-font-body);
  transform: scale(var(--card-scale, 1));
  transform-origin: top center;
}

.share-report-card__outline{
  position: absolute;
  left: 50%;
  top: calc(50% + 80px);
  width: 120%;
  height: 120%;
  opacity: 0.12;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-8deg);
}
.share-report-card__outline path{
  fill: none;
  stroke: #0b1220;
  stroke-width: 3;
}

.share-report-card__footer-logo{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  z-index: 2;
}
.share-report-card__footer-logo img{
  height: 96px;
  width: 100%;
  max-width: none;
  display: block;
  object-fit: contain;
}

.share-report-card__header{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: -22px -22px 0;
}

.share-report-card__brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  width: 100%;
  padding: 18px 22px;
  background: #eef2f6;
  color: #0f172a;
}

.share-report-card__org{
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
  font-family: var(--card-font-heading);
}
.share-report-card__product{
  font-size: 18px;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--card-font-heading);
}

.share-report-card__body{
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}

.share-report-card__left,
.share-report-card__right{
  position: relative;
  z-index: 1;
}

.share-report-card__left{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.share-report-card__details{
  padding-left: 8px;
}

.share-report-card__title{
  margin-top: 0;
  margin-bottom: -5px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: .2px;
  font-family: var(--card-font-heading);
}
.share-report-card__subtitle{
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.share-report-card__bullets{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.32;
}
.share-report-card__section{
  margin: 12px 0 2px;
  padding: 0;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-family: var(--card-font-heading);
}
.share-report-card__section:first-child{
  margin-top: 0;
}
.share-report-card__bullet{
  margin: 7px 0;
  padding-left: 18px;
  position: relative;
  font-weight: 800;
}
.share-report-card__bullet--good{ color: var(--good); }
.share-report-card__bullet--bad{ color: var(--card-bad); }
.share-report-card__bullet--tax{ color: var(--warn); }
.share-report-card__bullet--neutral{
  color: var(--text-main);
  font-weight: 500;
}
.share-report-card__bullet::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: currentColor;
  opacity: .85;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.share-report-card__bullet--neutral::before{
  font-weight: 500;
}

.share-report-card__net-flow{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #111111;
}
.share-report-card__net-flow-kicker{
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-family: var(--card-font-heading);
}
.share-report-card__net-flow-value{
  margin-top: 6px;
  font-family: var(--card-font-heading);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}
.share-report-card__net-flow-value--neutral{ color: var(--text-main); }
.share-report-card__net-flow-value--neg{ color: var(--card-bad); }
.share-report-card__net-flow-value--pos{ color: var(--good); }

.share-report-card__meta{
  margin-top: 6px;
  padding-top: 10px;
  padding-bottom: 2px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
  width: 100%;
  position: relative;
  z-index: 2;
}
.share-report-card__meta a{
  color: inherit;
  text-decoration: none;
}
.share-report-card__meta a:hover{
  text-decoration: none;
  opacity: .85;
}

.share-report-card__right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
  padding-top: 26px;
}

.share-report-card .grade--f{
  color: var(--card-bad);
}

.share-report-card__grade-kicker{
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-family: var(--card-font-heading);
}
.share-report-card__grade{
  margin-top: 2px;
  font-family: var(--card-font-heading);
  font-size: 161px;
  line-height: 1;
  font-weight: 900;
}
.share-report-card__score-kicker{
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-family: var(--card-font-heading);
}
.share-report-card__score{
  margin-top: 6px;
  font-family: var(--card-font-heading);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-main);
}
.share-report-card__score small{
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
}

.share-report-card.scorecard-font--inconsolata .share-report-card__org{
  font-size: 14px;
  line-height: 1.1;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__product{
  font-size: 15px;
  line-height: 1.1;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__title{
  font-size: 36px;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__subtitle{
  font-size: 14px;
  line-height: 1.35;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__bullets{
  font-size: 15px;
  line-height: 1.45;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__section{
  font-size: 12px;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__net-flow-kicker{
  font-size: 12px;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__net-flow-value{
  font-size: 19px;
  line-height: 1.1;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__meta{
  font-size: 13px;
  line-height: 1.3;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__grade-kicker{
  font-size: 13px;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__grade{
  font-size: 168px;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__score-kicker{
  font-size: 13px;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__score{
  font-size: 38px;
}
.share-report-card.scorecard-font--inconsolata .share-report-card__score small{
  font-size: 15px;
}
