.manifestation-board {
  margin: var(--sp-4) 0;
}

.manifestation-board__title {
  font-size: var(--v-type-sm, 13px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--sp-3);
}

.manifestation-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

@media (min-width: 768px) {
  .manifestation-board__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.board-widget {
  min-height: 120px;
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--s1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  text-decoration: none;
  color: inherit;
  transition: transform var(--v-ease-ui, 160ms ease);
}

a.board-widget:active {
  transform: scale(0.98);
}

.board-widget--empty {
  border-style: dashed;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-3);
}

.board-widget--loading .board-widget__sk {
  height: 12px;
  border-radius: var(--r-sm);
  background: var(--s2);
  animation: boardSkPulse 1.2s ease-in-out infinite;
}

@keyframes boardSkPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.board-widget__head {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.board-widget__icon {
  font-size: 22px;
  line-height: 1;
}

.board-widget__title {
  font-size: var(--v-type-sm, 13px);
  font-weight: 700;
  color: var(--text-1);
}

.board-widget__sub {
  font-size: 11px;
  color: var(--text-3);
}

.board-widget__ring-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}

.board-widget__ring {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.board-widget__ring-label {
  font-size: 11px;
  color: var(--text-2);
}

.board-widget__dots {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.board-widget__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--s2);
  border: 1px solid var(--border);
}

@media (prefers-reduced-motion: reduce) {
  .board-widget { transition: none; }
  .board-widget--loading .board-widget__sk { animation: none; }
}
