.wgt-home-metrics {
  position: relative;
  padding-top: 48px;
  padding-bottom: 66px;
}

.wgt-home-metrics .home-inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.wgt-home-metrics .home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wgt-home-metrics .home-metric-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
}

.wgt-home-metrics .home-metric-head {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  justify-content: space-between;
}

.wgt-home-metrics .home-metric-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.wgt-home-metrics .home-metric-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  background: var(--home-text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wgt-home-metrics .home-metric-value {
  color: var(--home-title);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.wgt-home-metrics .home-metric-trend {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50px;
}

.wgt-home-metrics .home-metric-trend img {
  display: block;
  width: 11px;
  height: 13px;
}

.wgt-home-metrics .trend-up {
  background: #e2fbea;
}

.wgt-home-metrics .trend-down {
  background: #fdeaea;
}

.wgt-home-metrics .trend-down img {
  transform: rotate(180deg);
}

.wgt-home-metrics .home-metric-description,
.wgt-home-metrics .home-metric-description p {
  margin: 0;
  color: var(--home-subtitle);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .wgt-home-metrics .home-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .wgt-home-metrics .home-metrics-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .wgt-home-metrics .home-metric-value {
    font-size: 28px;
  }
}
