.card-footer {
  display: grid;
  align-items: stretch;
  gap: 11px;
  width: 100%;
}

.card-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  width: 100%;
  text-align: center;
}

.card-metrics > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-like-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  transition: color .2s, transform .2s;
}

.card-like-button:hover,
.card-like-button.active {
  color: #fb7185;
}

.card-like-button:active {
  transform: scale(.92);
}

.metric-icon {
  color: #7dd3fc;
}

[data-favorite-icon],
.metric-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(84px, 112px));
  justify-content: center;
  gap: 8px;
}

.card-actions.card-actions-single {
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.card-actions.card-actions-single .btn-card-more {
  width: 100%;
}

.btn-card-more,
.card-actions .btn-card-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
}

.btn-card-more {
  border: 1px solid rgba(96, 165, 250, .24);
  background: rgba(37, 99, 235, .1);
  color: #93c5fd;
}

.btn-card-more:hover {
  border-color: rgba(96, 165, 250, .5);
  background: rgba(37, 99, 235, .2);
  color: #fff;
}
