/* Phase 8k — How We Work: interviews section — clean rewrite */

/* ── Grid: align items to top so panel aligns with h2, not eyebrow ── */
.how-work-interviews-grid {
  align-items: start !important;
}

/* ── Panel: offset top to align with h2 (eyebrow height ~1.8rem + gap) ── */
.how-work-interview-panel {
  min-height: 0 !important;
  align-self: start !important;
  padding-top: 2.4rem !important;
}

/* ── Flow card labels — teal ── */
.how-work-interview-flow span {
  color: var(--telstar-teal, #2CA6A4) !important;
}

/* ── Flow articles inside dark panel — teal left accent only ── */
.how-work-interview-flow > article {
  border: none !important;
  box-shadow: none !important;
  border-left: 3px solid var(--telstar-teal, #2CA6A4) !important;
}

/* ── Three cards wrapper — full width, flush under grid, surface-low band ── */
.how-work-interview-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  background: transparent !important;
  margin-top: 2rem !important;
  padding: 0 !important;
}

/* ── Individual cards — standard card spec ── */
.how-work-interview-cards > article {
  display: block !important;
  background: #ffffff !important;
  border: 1px solid rgba(11,37,69,0.10) !important;
  border-left: 4px solid var(--telstar-teal, #2CA6A4) !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 1px 3px rgba(11,37,69,0.07) !important;
  padding: 1.25rem 1.5rem !important;
}

/* ── Hide icon badges on the three cards ── */
.how-work-interview-cards > article > .telstar-icon-badge {
  display: none !important;
}

/* ── Card titles — uniform weight and size ── */
.how-work-interview-cards > article h3 {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--telstar-primary, #0B2545) !important;
  margin: 0 0 0.5rem !important;
  line-height: 1.3 !important;
}

/* ── Card body copy ── */
.how-work-interview-cards > article p {
  margin: 0 !important;
  font-size: 0.95rem !important;
  color: var(--telstar-text-muted, #5C6B73) !important;
  line-height: 1.55 !important;
}
