.streak-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 19, 22, 0.07);
  border-radius: var(--r-md);
  box-shadow: 0 1px 3px rgba(18, 19, 22, 0.04), 0 14px 34px rgba(18, 19, 22, 0.05);
  padding: 12px 14px 14px;
  margin-bottom: 0;
}

.streak-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #8f1632, #f97316 58%, #f2e820);
}

.streak-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 18px;
  width: 82px;
  height: 22px;
  pointer-events: none;
  opacity: 0.42;
  background: linear-gradient(120deg, transparent 0 18%, rgba(143, 22, 50, 0.18) 18% 31%, transparent 31% 46%, rgba(249, 115, 22, 0.18) 46% 59%, transparent 59%);
  transform: skewX(-18deg);
}

.streak-card__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(18, 19, 22, 0.06);
}

.streak-card__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.streak-card__value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.streak-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #8f1632;
  margin-top: 2px;
}

.streak-card__week-title {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-ink-faint);
  margin-bottom: 10px;
}

.streak-card .week-path {
  position: relative;
  z-index: 1;
}
