/* Page-specific styles */

/* ===== HERO THEME ===== */
.article-hero { background: linear-gradient(160deg, #060e22 0%, #0e1e40 55%, #152450 100%); }
.article-tag  { background: #2a4a8a; }
.article-hero-sub { color: #8aaad8; }
.article-meta-read { color: #6a8ab8; }
.article-cta { background: linear-gradient(135deg, #060e22 0%, #0e1e40 100%); border: 2px solid #2a3a6a; }
.article-cta p { color: #8aaad8; }
.article-cta a.secondary { color: #8aaad8; border: 2px solid #2a3a6a; }

/* ===== 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, #2a4a8a, #62b517, #2a4a8a);
  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: #2a4a8a; 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(42,74,138,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: #2a4a8a; 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: #2a4a8a; background: #f0f4fc; }
.option-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; color: #2a4a8a; 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(42,74,138,0.07);
  border-radius: 8px;
  font-size: 12px; font-weight: 700; color: #1a2a5a; line-height: 1.6;
}
@media (max-width: 560px) { .option-cards { grid-template-columns: 1fr; } }

/* ===== FRAMEWORK BLOCK ===== */
.framework-block {
  background: #0e1e40;
  border: 2px solid #2a4a8a;
  border-radius: 16px;
  padding: 28px 32px;
  margin: 28px 0;
}
.framework-block-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2.5px; color: #6a9adb; margin-bottom: 20px;
}
.framework-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}
.framework-row:last-child { margin-bottom: 0; }
.framework-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #2a4a8a; color: #fff;
  font-size: 13px; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.framework-title { font-size: 14px; font-weight: 900; color: #fff; margin-bottom: 3px; }
.framework-desc  { font-size: 13px; color: #8aaad8; line-height: 1.6; }
.framework-example {
  margin-top: 6px;
  font-size: 12px; font-style: italic; color: #6a9adb;
  padding-left: 4px; border-left: 2px solid #2a4a8a;
}

/* ===== REFLECTION QUESTIONS ===== */
.reflection-q {
  background: #fff;
  border: 2px solid #dde8c8;
  border-radius: 16px;
  overflow: hidden;
  margin: 28px 0;
}
.rq-header {
  background: #0e1e40;
  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: #f0f4fc;
  border-left: 3px solid #2a4a8a;
  border-radius: 0 8px 8px 0;
  font-size: 13px; font-weight: 700; color: #1a2a5a; line-height: 1.65;
}
.rq-correction-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; color: #2a4a8a; margin-bottom: 6px;
}

/* ===== SCORING RUBRIC ===== */
.scoring-rubric {
  margin: 28px 0;
}
.scoring-rubric-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2.5px; color: #2a4a8a;
  margin-bottom: 16px;
}
.scoring-col {
  border: 2px solid #2a4a8a;
  border-radius: 14px;
  overflow: hidden;
}
.scoring-col-header {
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.scoring-col-letter {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: #d1db24; color: #1a2a00;
  font-size: 18px; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.scoring-col-title {
  font-size: 16px; font-weight: 900; color: #fff; flex: 1;
}
.scoring-col-sub {
  width: 100%;
  font-size: 11px; font-weight: 700; color: #8aaad8;
  padding-left: 50px;
  margin-top: -6px;
}
.scoring-rows { display: flex; flex-direction: column; }
.scoring-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid #eef4f8;
}
.scoring-row:last-child { border-bottom: none; }
.scoring-pip {
  flex-shrink: 0;
  width: 28px; height: 28px;
  font-size: 13px; font-weight: 900; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.scoring-row.high     .scoring-pip { background: #2a7a10; }
.scoring-row.mid-high .scoring-pip { background: #4a8c11; }
.scoring-row.mid      .scoring-pip { background: #8a8a00; }
.scoring-row.low      .scoring-pip { background: #b05a10; }
.scoring-row.very-low .scoring-pip { background: #9a1a1a; }
.scoring-row-desc {
  font-size: 13px; color: #333; line-height: 1.65; padding-top: 3px;
}
.scoring-jargon-note {
  background: #f0f4fc;
  border-top: 2px solid #2a4a8a;
  padding: 14px 20px;
  font-size: 13px; color: #2a3a5a; line-height: 1.7;
}
.scoring-jargon-label {
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; color: #2a4a8a; margin-bottom: 6px;
}

/* ===== CONCEPT CARD EXAMPLES ===== */
.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.concept-card {
  background: #fff;
  border: 1.5px solid #dde8c8;
  border-radius: 10px;
  padding: 14px 16px;
}
.concept-card-tech {
  font-size: 13px; font-weight: 900; color: #1a2a0a; margin-bottom: 4px;
}
.concept-card-to {
  font-size: 10px; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}
.concept-card-audience {
  font-size: 12px; font-weight: 700; color: #2a4a8a;
}
@media (max-width: 600px) {
  .concept-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .concept-cards { grid-template-columns: 1fr; }
}
