/* ===================================================================
   COMPONENTS — Guide steps, team cards, tester chips
   =================================================================== */

/* --- Guide Steps ------------------------------------------------- */

.guide-step {
  margin-bottom: var(--space-xl);
}

.guide-step:last-child {
  margin-bottom: 0;
}

.guide-step-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.guide-step-header h3 {
  font-size: 1.15rem;
}

.guide-step p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  padding-left: calc(2rem + var(--space-md));
}

/* Screenshot placeholder */
.screenshot-placeholder {
  margin-left: calc(2rem + var(--space-md));
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.screenshot-placeholder .ph-icon {
  display: block;
  margin: 0 auto var(--space-sm);
  width: 32px;
  height: 32px;
  color: var(--text-faint);
}

/* Screenshot with actual image */
.screenshot-placeholder img {
  max-width: 100%;
  border-radius: 8px;
}

/* --- Guide Full Link --------------------------------------------- */

.guide-full-link {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.guide-full-link a {
  font-weight: 500;
  font-size: 1rem;
}

/* --- About Block ------------------------------------------------- */

.about-content p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* --- Team Groups ------------------------------------------------- */

.team-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.team-group {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: var(--space-lg);
}

.team-group-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-list li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: var(--space-xs) 0;
}

.team-list li + li {
  border-top: 1px solid var(--border-light);
}

.team-role-inline {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-right: 0.3em;
}

/* --- Testers Chip Cloud ------------------------------------------ */

.testers-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.tester-chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* --- Testers Placeholder ----------------------------------------- */

.testers-placeholder {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: 12px;
}

.testers-placeholder p {
  margin-inline: auto;
  color: var(--text-muted);
}

.testers-placeholder .count {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-xs);
}

/* --- Responsive: Mobile ------------------------------------------ */

@media (max-width: 560px) {
  .guide-step p,
  .screenshot-placeholder {
    margin-left: 0;
    padding-left: 0;
  }

  .team-groups {
    grid-template-columns: 1fr;
  }
}
