.account-summary {
  margin-top: 20px;
}

.account-row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
}

.account-row__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid #e5e7eb;
}

.account-row__item:first-of-type {
  padding-left: 0;
}

.account-row__item:last-of-type {
  border-right: none;
  padding-right: 0;
}

.account-row__label {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
}

.account-row__value {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.account-row__value--up {
  color: #16a34a;
}

.account-row__value--down {
  color: #dc2626;
}

.account-row__value--safe {
  color: #16a34a;
}

.account-row__value--warning {
  color: #d97706;
}

.account-row__value--danger {
  color: #dc2626;
}

@media (max-width: 560px) {
  .account-row {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .account-row__item {
    flex: 1 1 45%;
    border-right: none;
  }
}
