/* Klamsine — står / i værkstedet · F-003. Scoped via .kst. HV-tokens, ingen JS.
   To spalter fordi ærligheden ER pointen: man skal kunne se begge kolonner
   på én gang, uden at den ene gemmer sig. */

.kst {
  display: flex;
  flex-direction: column;
  height: 460px;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.kst__frame {
  flex: 1;
  background: var(--hv-blue-night, #1f3447);
  border: 1px solid var(--hv-blue-fog, #3e607a);
  padding: 22px 24px;
  color: var(--hv-paper, #f2f3ef);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.kst__header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(62, 96, 122, 0.55);
}

.kst__title {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 4.4cqw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.kst__sub {
  display: block;
  margin-top: 8px;
  font-family: var(--hv-mono, 'JetBrains Mono', monospace);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(242, 243, 239, 0.55);
}

.kst__cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  padding: 16px 0 0;
  min-width: 0;
  overflow: hidden;
}

.kst__col { min-width: 0; }

.kst__label {
  margin: 0 0 10px;
  font-family: var(--hv-mono, 'JetBrains Mono', monospace);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.kst__label--on { color: var(--hv-accent-soft, #c98a63); }
.kst__label--wip { color: rgba(242, 243, 239, 0.45); }

.kst__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.kst__list li {
  position: relative;
  padding-left: 16px;
  font-family: 'Lora', Georgia, serif;
  font-size: 13.5px;
  line-height: 1.35;
  color: rgba(242, 243, 239, 0.92);
}

/* Står: en fuld markør. I værkstedet: en åben ring — samme plads, anden vægt. */
.kst__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--hv-accent-soft, #c98a63);
}

.kst__list--wip li {
  color: rgba(242, 243, 239, 0.62);
}

.kst__list--wip li::before {
  background: transparent;
  border: 1px solid rgba(242, 243, 239, 0.5);
}

.kst__footer {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(62, 96, 122, 0.55);
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(242, 243, 239, 0.7);
}

@media (max-width: 700px) {
  .kst__cols { grid-template-columns: 1fr; gap: 14px; overflow-y: auto; }
  .kst__frame { padding: 18px; }
  .kst__list li { font-size: 13px; }
}
