/* Page-specific styles */

/* ===== HERO THEME ===== */
.article-hero { background: linear-gradient(160deg, #1a2a0a 0%, #2a4010 55%, #344d14 100%); }
.article-tag  { background: #1a6a5a; }
.article-hero-sub { color: #a8c870; }
.article-meta-read { color: #7a9a50; }
.article-cta { background: linear-gradient(135deg, #1a2a0a 0%, #2a4010 100%); border: 2px solid #3a5a14; }
.article-cta p { color: #a8c870; }
.article-cta a.secondary { color: #a8c870; border: 2px solid #3a6a14; }

/* ===== WORKSHOP FLOW (3-STEP) ===== */
.ws-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 48px;
  position: relative;
}
.ws-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 10px);
  right: calc(16.66% + 10px);
  height: 2px;
  background: linear-gradient(90deg, #62b517, #d1db24, #62b517);
  z-index: 0;
}
.ws-step {
  background: #f8faf2;
  border: 2px solid #d4e8a8;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ws-num {
  width: 52px; height: 52px;
  background: #62b517; color: #fff;
  font-size: 22px; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(98,181,23,0.3);
}
.ws-step-title {
  font-size: 15px; font-weight: 900; color: #1a1a1a; margin-bottom: 8px;
}
.ws-step-desc {
  font-size: 13px; color: #555; line-height: 1.6;
}
.ws-step-icon { display: flex; justify-content: center; margin-bottom: 14px; }
@media (max-width: 640px) {
  .ws-flow { grid-template-columns: 1fr; }
  .ws-flow::before { display: none; }
}

/* ===== NUMBERED STEPS ===== */
.step-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #dde8c8;
  border-radius: 12px;
  padding: 18px 20px;
}
.step-list-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: #62b517; color: #fff;
  font-size: 14px; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.step-list-body { flex: 1; }
.step-list-title { font-size: 15px; font-weight: 900; color: #1a2a0a; margin-bottom: 5px; }
.step-list-desc  { font-size: 14px; color: #444; line-height: 1.7; }

/* ===== OPTION CARDS ===== */
.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.option-card {
  background: #fff;
  border: 2px solid #dde8c8;
  border-radius: 14px;
  padding: 22px 20px;
}
.option-card.primary { border-color: #62b517; background: #f4fae8; }
.option-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; color: #62b517; margin-bottom: 8px;
}
.option-card.secondary .option-label { color: #888; }
.option-title { font-size: 15px; font-weight: 900; color: #1a2a0a; margin-bottom: 8px; }
.option-desc  { font-size: 13px; color: #555; line-height: 1.65; }
.option-tip {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(98,181,23,0.08);
  border-radius: 8px;
  font-size: 12px; font-weight: 700; color: #3a6a10; line-height: 1.6;
}
@media (max-width: 560px) { .option-cards { grid-template-columns: 1fr; } }

/* ===== REFLECTION QUESTIONS ===== */
.reflection-q {
  background: #fff;
  border: 2px solid #dde8c8;
  border-radius: 16px;
  overflow: hidden;
  margin: 28px 0;
}
.rq-header {
  background: #2a4010;
  padding: 18px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.rq-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: #d1db24; color: #1a2a00;
  font-size: 14px; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.rq-question { font-size: 16px; font-weight: 900; color: #fff; line-height: 1.4; }
.rq-body { padding: 0; }
.rq-answer {
  padding: 20px 24px;
  border-bottom: 1.5px solid #eef4e8;
}
.rq-answer:last-child { border-bottom: none; }
.rq-answer-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.rq-answer-label.good  { color: #2a7a10; }
.rq-answer-label.miss  { color: #a04010; }
.rq-badge {
  display: inline-block; padding: 2px 8px;
  border-radius: 5px; font-size: 9px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.rq-badge.good { background: #e6f7d8; color: #2a7a10; border: 1px solid #a8d878; }
.rq-badge.miss { background: #fde8d8; color: #a04010; border: 1px solid #f0b888; }
.rq-answer-text { font-size: 14px; color: #333; line-height: 1.75; }
.rq-correction {
  margin-top: 12px;
  padding: 12px 14px;
  background: #f0f8ff;
  border-left: 3px solid #4a8aaa;
  border-radius: 0 8px 8px 0;
  font-size: 13px; font-weight: 700; color: #1a3a5a; line-height: 1.65;
}
.rq-correction-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; color: #4a8aaa; margin-bottom: 6px;
}
