@import url(../../../../assets/css/base.css);
@import url(./huetten_base.css);
@import url(./navbar.css);

/*HERO*/

.hero-balance {
  padding: 1.8rem 0;
  background: linear-gradient(
    145deg,
    var(--bg-surface),
    var(--bg-surface-hover)
  );
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);

  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-align: center;

  width: 100%;
}

/* Überschrift */
.hero-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Betrag */
.hero-amount {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.hero-amount.loading {
  color: var(--text-muted);
}

/* Farben je nach Status */
.hero-amount.positive {
  color: var(--green-main);
}

.hero-amount.negative {
  color: var(--negative);
}

/* Subtext */
.hero-sub {
  font-size: .7rem;
  color: var(--text-muted);
  opacity: .6;
}