/* ============================================================
   Template: CHARACTER (신규 — characterProposal Family)
   04/06 캐릭터 페이지. 단일 대표 이미지(hero) 또는 카드형 그리드.
   ============================================================ */
.tpl-character {
  flex: 1;
  display: flex;
  min-height: 0;
  z-index: var(--z-content);
  position: relative;
}

.tpl-character__hero {
  width: 100%;
  height: 100%;
}

.tpl-character__grid {
  display: grid;
  grid-template-columns: repeat(var(--card-count, 3), 1fr);
  gap: var(--space-4);
  width: 100%;
}

.tpl-character__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tpl-character__label {
  font-size: 14px;
  color: var(--color-ink-muted);
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .tpl-character__grid { grid-template-columns: 1fr; }
}
