.cards {
  min-height: 0;
  height: 100%;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cards::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 auto;
  padding: 18px 28px 20px 28px;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: var(--panel);
  color: var(--text-mute);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.card.is-current {
  background: var(--panel-active);
  border-color: rgba(125, 211, 252, 0.6);
}

.eyebrow {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-active);
}

.card h3 {
  margin: 0 0 12px 0;
  font-size: 24px;
  line-height: 1.15;
}

.summary {
  margin: 0 0 14px 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}

.details {
  display: grid;
  gap: var(--page-gap);
  margin: 0;
  padding: 0;
}

.detail-chip {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text-mute);
  line-height: 1.45;
}