/* 首页 GA 数据看板 */
.ga-board {
  background: var(--board-bg-color, #fff);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.4rem 1.6rem 1rem;
  margin: 0 auto 1.2rem;
}
.ga-board-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ga-col {
  flex: 1 1 260px;
  min-width: 0;
}
.ga-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(127, 127, 127, 0.18);
}
.ga-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ga-row {
  margin-bottom: 0.7rem;
}
.ga-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  gap: 0.5rem;
}
.ga-row-head span,
.ga-row-head a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ga-num {
  flex: none;
  color: #1f8dd6;
  font-variant-numeric: tabular-nums;
}
.ga-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(127, 127, 127, 0.15);
  overflow: hidden;
}
.ga-bar > span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #36c, #1f8dd6);
  transition: width 0.6s ease;
}
.ga-note {
  text-align: right;
  font-size: 0.78rem;
  color: #999;
  margin-top: 0.6rem;
}
.ga-empty {
  color: #999;
  font-size: 0.88rem;
}
.ga-collecting {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  padding: 0.6rem 0 0.2rem;
}

/* 暗色模式 */
[data-user-color-scheme='dark'] .ga-board {
  background: var(--board-bg-color, #252d38);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
[data-user-color-scheme='dark'] .ga-num {
  color: #4ea8e6;
}

@media (max-width: 576px) {
  .ga-board {
    padding: 1rem 1.1rem 0.8rem;
  }
  .ga-board-inner {
    gap: 1rem;
  }
}
