.vers[data-version$="V3"] {
  --space-1: var(--s1); --space-2: var(--s2); --space-3: var(--s3);
  --space-4: var(--s4); --space-5: var(--s5); --space-6: var(--s6);
  --hairline: 1px solid var(--grey-3);
}
.chart {
  margin: var(--space-4) 0 0;
}
.chart-footnote {
  margin: var(--space-3) 0 0;
  font-size: 0.8rem;
  color: var(--grey-1);
  max-width: 70ch;
}
.module--dark .chart-footnote {
  color: var(--grey-2);
}
.treemap {
  position: relative;
  height: 520px;
  background: var(--black);
  overflow: visible;
}
.treemap__block {
  position: absolute;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  cursor: default;
  transform-origin: center center;
  transition: transform 0.24s var(--ease, cubic-bezier(0.22, 0.61, 0.36, 1)),
              box-shadow 0.24s var(--ease, cubic-bezier(0.22, 0.61, 0.36, 1));
}
.treemap__block:hover,
.treemap__block:focus-visible {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  z-index: 3;
  overflow: visible;
}
.treemap__block:focus { outline: none; }
.treemap__block:focus-visible { outline: 2px solid var(--white); outline-offset: -4px; }
.treemap__companies {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.18s var(--ease, ease);
  pointer-events: none;
}
.treemap__block:hover .treemap__companies,
.treemap__block:focus-visible .treemap__companies { opacity: 1; }
.treemap__company {
  font-size: 0.72rem;
  line-height: 1.28;
  font-weight: 400;
}
.treemap__name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
.treemap__share {
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.treemap__name[hidden],
.treemap__share[hidden] {
  display: none;
}
.pie .table-wrap {
  margin-top: auto;
  padding-top: var(--space-2);
}
.pie .table-wrap > summary {
  font-size: 0.68rem;
}
.table-wrap {
  margin-top: var(--space-4);
  border-top: var(--hairline);
  padding-top: var(--space-3);
}
.module--dark .table-wrap {
  border-top-color: var(--grey-1);
}
.table-wrap > summary {
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-1);
}
.module--dark .table-wrap > summary {
  color: var(--grey-2);
}
.table-wrap > summary:hover {
  color: var(--black);
}
.module--dark .table-wrap > summary:hover {
  color: var(--yellow);
}
.table-scroll {
  overflow-x: auto;
  margin-top: var(--space-3);
}
.table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.85rem;
}
.table,
.table thead,
.table tbody,
.table tfoot,
.table tr {
  border-color: var(--grey-3);
}
.module--dark .table,
.module--dark .table thead,
.module--dark .table tbody,
.module--dark .table tfoot,
.module--dark .table tr {
  border-color: var(--grey-1);
}
.table caption {
  text-align: left;
  color: var(--grey-1);
  font-size: 0.8rem;
  padding-bottom: var(--space-2);
  max-width: 80ch;
}
.module--dark .table caption {
  color: var(--grey-2);
}
.table th,
.table td {
  text-align: left;
  padding: var(--space-1) var(--space-2) var(--space-1) 0;
  border-bottom: var(--hairline);
  vertical-align: top;
}
.module--dark .table th,
.module--dark .table td {
  border-bottom-color: var(--grey-1);
}
.table thead th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-1);
  font-weight: 700;
}
.module--dark .table thead th {
  color: var(--grey-2);
}
.module--dark .table td {
  color: var(--white);
}
.table tfoot th,
.table tfoot td {
  font-weight: 700;
  border-bottom: none;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
}
.module--dark .table tfoot th,
.module--dark .table tfoot td {
  color: var(--white);
}