/* ========================================
 * [about_now] — 当前状态卡片
 * 配对短代码: shortcodes/about_now.php
 * ======================================== */

.about-now-text {
  margin: 0;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.about-now-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  margin-right: var(--space-2);
  animation: about-pulse 2s ease-in-out infinite;
}

@keyframes about-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
