/* [project]/components/primitives/Card.css [app-client] (css) */
.card, .char-section {
  background: linear-gradient(180deg,
    var(--panel) 0%,
    var(--panel-deep, var(--bg-deep)) 100%);
  border: 1px solid var(--line-bright);
  border-top: 1px solid color-mix(in srgb, var(--accent) 50%, var(--line-bright));
  border-radius: var(--r-lg, 12px);
  box-shadow: var(--shadow, 0 12px 28px #02061738),
    inset 0 1px 0 color-mix(in srgb, var(--accent-bright, var(--ink)) 24%, transparent);
  flex-direction: column;
  padding-bottom: clamp(.95rem, 1.5vw, 1.25rem);
  display: flex;
  position: relative;
  overflow: hidden;
}

.card > * + *, .char-section > * + * {
  margin-top: 0;
}

.card > :not(.card__title), .char-section > :not(.char-section__h) {
  padding-inline: clamp(.95rem, 1.6vw, 1.25rem);
}

.card > .card__title + *, .char-section > .char-section__h + *, .card > :first-child:not(.card__title), .char-section > :first-child:not(.char-section__h) {
  padding-top: clamp(.85rem, 1.4vw, 1.1rem);
}

.card__title, .char-section__h {
  background: var(--bg-deep);
  min-height: 46px;
  font-family: var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--ink) 12%, transparent),
    inset 0 -1px 0 color-mix(in srgb, var(--accent) 30%, transparent),
    0 2px 5px #0000004d;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 8px 40px;
  font-size: clamp(.95rem, .88rem + .4vw, 1.15rem);
  font-weight: 900;
  line-height: 1;
  display: flex;
}

.card--inset {
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line-bright));
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 5%, var(--panel)) 0%,
    var(--panel-deep, var(--bg-deep)) 100%);
  border-radius: 12px;
  flex-direction: column;
  gap: .55rem;
  padding: clamp(.85rem, 1.4vw, 1.15rem);
  display: flex;
}

.card.card--inset {
  border-top-color: color-mix(in srgb, var(--accent) 28%, var(--line-bright));
  box-shadow: none;
  border-radius: 12px;
}

/*# sourceMappingURL=11e2s83x9t7-a.css.map*/