/* 退休金/养老金计算器页面样式 */

.tax-section {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
}

.tax-section-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border-light);
}

/* 高亮结果卡片 */
.result-card-highlight {
  background: linear-gradient(135deg, var(--color-primary-bg), #EEF2FF);
  border-color: var(--color-primary);
  grid-column: 1 / -1;
}

.result-card-highlight .result-card-value {
  font-size: var(--text-4xl);
}

@media (max-width: 768px) {
  .result-card-highlight .result-card-value {
    font-size: var(--text-3xl);
  }
}
