/* ===== Investments overview page ===== */

.invest-card-link{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}

.invest-more{
  display:inline-block;
  margin-top:16px;
  color:var(--gold-400);
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.04em;
  transition:transform .3s ease, color .3s ease;
}

.invest-card-link:hover .invest-more{
  color:var(--gold-200);
  transform:translateX(4px);
}
