/* =============================================
   ADDITIONAL STYLES for Spelling strategies,
   word chips used in spelling.html
   ============================================= */

/* Strategy Cards */
.strategies-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }
.strategy-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: #F0FFF4;
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  border-left: 4px solid #22C55E;
}
.strategy-num {
  width: 36px; height: 36px;
  background: #22C55E; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
  flex-shrink: 0;
}
.strategy-card strong { display: block; font-weight: 800; color: var(--dark); margin-bottom: 4px; font-size: 0.98rem; }
.strategy-card p { font-size: 0.88rem; color: #6B7280; line-height: 1.6; }

/* Word chips */
.sample-words { display: flex; flex-wrap: wrap; gap: 8px; }
.word-chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 800; font-size: 0.88rem;
}
