.summary-metrics-section {
  background: #fff;
  box-sizing: border-box;
  contain: strict;
  height: 45px;
  padding: 4px 18px 1px;
  width: 100%;
}

.summary-metrics-grid {
  align-items: center;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 100%;
  width: 100%;
}

.summary-metrics-item {
  box-sizing: border-box;
  color: inherit;
  display: grid;
  grid-template-rows: 16px 16px;
  height: 36px;
  min-width: 0;
  padding: 0 6px;
  position: relative;
  row-gap: 4px;
  text-align: center;
  text-decoration: none;
}

.summary-metrics-item:not(:last-child):after {
  background: #e8e8e8;
  content: "";
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.summary-metrics-item strong,
.summary-metrics-item span {
  align-items: center;
  display: flex;
  font-family: inherit;
  font-size: 13px;
  height: 16px;
  justify-content: center;
  letter-spacing: -0.24px;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.summary-metrics-item strong {
  color: #1d1d1f;
  font-variant-numeric: tabular-nums;
  font-weight: 550;
}

.summary-metrics-item span {
  color: #6e6e73;
  font-weight: 400;
}

.summary-metrics-item strong.summary-metrics-loading {
  animation: summary-metrics-skeleton-pulse 1.1s ease-in-out infinite;
  background: #ececec;
  border-radius: 6px;
  color: transparent;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
}

@keyframes summary-metrics-skeleton-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@media (max-width: 380px) {
  .summary-metrics-section {
    padding-bottom: 1px;
  }
}
