.trending-up-card {
  flex: 1;
  border-radius: 8px;
  background: var(--color-primary);
  padding: 32px;
}

.trending-up-card .black-box-top-flex {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.trending-up-card .black-box-top-flex h5 {
  margin: 0;
}

.trending-up-card .black-box-top-flex img {
  max-height: 55px;
  max-width: 55px;
  object-fit: cover;
  width: 100%;
  height: auto;
  filter: grayscale(1);
  position: relative;
  top:-15px;
}

.trending-up-card .black-box-bottom-flex {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 16px;
}

.trending-up-card .black-box-bottom-flex li {
  flex: 1;
  text-align: center;
}

.trending-up-card .black-box-bottom-flex h6{
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.trending-up-card .black-box-bottom-flex p {
  margin: 0;
  font-size: 12px;
  color: var(--color-white);
}

@media (width < 1024px) {
  .trending-up-card {
    padding: 16px;
  }

  .trending-up-card .black-box-top-flex {
    align-items: center;
  }

  .trending-up-card .black-box-bottom-flex {
    flex-direction: column;
  }

  .trending-up-card .black-box-bottom-flex li {
    display: flex;
    gap: 16px;
    align-items: center;
    text-align: left;
  }

  @media (width <= 768px){
    .trending-up-card .black-box-bottom-flex h6 {
      font-size: 20px;     
    }
  }
}
