/* Three-role demo / Training welcome cards */

.demo-role-grid {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

@media (min-width: 640px) {
  .demo-role-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.demo-role-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  padding: 16px 18px !important;
  border-radius: 12px !important;
  line-height: 1.45;
  height: 100%;
}

.demo-role-card strong {
  font-size: 1rem;
  font-weight: 600;
}

.demo-role-card .demo-role-desc {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  line-height: 1.45;
}

/* Filled primary card (recommended role) */
.demo-role-card.btn {
  color: #fff;
}

.demo-role-card.btn strong {
  color: #fff;
}

.demo-role-card.btn .demo-role-desc {
  color: rgba(255, 255, 255, 0.92);
}

/* Outline secondary cards */
.demo-role-card.btn.secondary strong {
  color: var(--dark, #1b4f8b);
}

.demo-role-card.btn.secondary .demo-role-desc {
  color: hsl(210, 12%, 28%);
}

.demo-role-card.demo-role-highlight {
  outline: 2px solid #0369a1;
  outline-offset: 2px;
}
