/* AMTI tax-account 카드 — finance 디자인 표준 (수치 우선, 일러스트 0) */

.tax-card { background: var(--bg-card); }
.tax-meta { color: var(--text-mute); font-size: 12px; margin: 4px 0 14px; }

.tax-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 12px 0;
}
@media (min-width: 760px) {
  .tax-grid { grid-template-columns: repeat(4, 1fr); }
}

.tax-box {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tax-box.tax-isa     { border-left: 3px solid var(--gold, #C9A227); }
.tax-box.tax-pension { border-left: 3px solid var(--info, #4F8FE0); }
.tax-box.tax-irp     { border-left: 3px solid var(--good, #4DA86E); }
.tax-box.tax-taxable { border-left: 3px solid var(--text-mute, #6E7686); }

.tax-head {
  display: flex; justify-content: space-between; align-items: center;
}
.tax-name {
  font-size: 12px; letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.tax-tag {
  background: var(--gold, #C9A227); color: #1A1F26;
  font-size: 10px; padding: 2px 6px; border-radius: 3px;
  letter-spacing: 0.5px;
}
.tax-amount {
  font-family: var(--mono);
  font-size: 22px; font-weight: 600;
  color: var(--text);
}
.tax-reason {
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.35;
  min-height: 28px;
}
.tax-saving {
  color: var(--good, #4DA86E);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}
.tax-saving.muted { color: var(--text-mute); font-weight: 400; }
.tax-products {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  font-size: 11px;
  color: var(--text-dim);
}
.tax-products li {
  padding: 2px 0;
  border-bottom: 1px dashed var(--line);
}
.tax-products li:last-child { border-bottom: 0; }

.tax-total {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tax-total .lbl {
  font-size: 12px; letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.tax-total .val {
  font-family: var(--mono);
  font-size: 26px; font-weight: 700;
  color: var(--gold, #C9A227);
}

.tax-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.5;
}
