/* ===== CULTURE AUDIT WORKSHOP — per-article styles ===== */

/* ===== HERO THEME ===== */
.article-hero { background: linear-gradient(160deg, #0a1a08 0%, #142214 55%, #1a2d10 100%); }
.article-tag-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.tag-workshop { background: #1a5a1a; }
.tag-org      { background: #7a4a10; }
.article-hero-sub  { color: #8eadc8; }
.article-meta-read { color: #6a8aaa; }
.article-cta { background: linear-gradient(135deg, #0a1a08 0%, #142214 100%); border: 2px solid #2a5a2a; }
.article-cta p { color: #8eadc8; }
.article-cta a.secondary { color: #8eadc8; border: 2px solid #3a6a3a; }
.article-cta a.secondary:hover { color: #c0d8f0; }

/* ===== AUDIT FLOW (3-step visual) ===== */
.audit-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 48px;
  position: relative;
}
.audit-flow::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.67% + 10px);
  right: calc(16.67% + 10px);
  height: 2px;
  background: linear-gradient(90deg, #2a5a2a, #62b517, #2a5a2a);
  z-index: 0;
}
.af-step {
  background: #f4fae8;
  border: 2px solid #c8e8a8;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.af-num {
  width: 36px;
  height: 36px;
  background: #2a4a8a;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.af-step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.af-step-title {
  font-size: 14px;
  font-weight: 900;
  color: #1a2a0a;
  margin-bottom: 8px;
}
.af-step-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}
.af-step-time {
  display: inline-block;
  background: #e8eef8;
  color: #1a2a5a;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
@media (max-width: 640px) {
  .audit-flow { grid-template-columns: 1fr; }
  .audit-flow::before { display: none; }
}

/* ===== OBS GRID (observation cards) ===== */
.obs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.obs-grid.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.obs-item {
  background: #fff;
  border: 1.5px solid #c8e8a8;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.obs-num {
  width: 20px;
  height: 20px;
  background: #1a5a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.obs-title {
  font-size: 13px;
  font-weight: 900;
  color: #1a2a0a;
  margin-bottom: 3px;
}
.obs-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 560px) {
  .obs-grid { grid-template-columns: 1fr; }
}

/* ===== SURVEY VS GAME COMPARISON ===== */
.method-compare {
  border: 2px solid #c8d8e8;
  border-radius: 14px;
  overflow: hidden;
  margin: 32px 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.method-compare.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.method-compare-header {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  background: #0e1627;
  border-bottom: 2px solid #2a3a5a;
}
.mc-col {
  padding: 16px 22px;
}
.mc-divider-col {
  background: #2a3a5a;
}
.mc-col-label {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.mc-col-sub {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mc-col.mc-surveys .mc-col-sub { color: #6a8aaa; }
.mc-col.mc-game    .mc-col-sub { color: #62b517; }
.method-compare-rows {
  display: flex;
  flex-direction: column;
}
.mc-row {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  border-bottom: 1.5px solid #e4eaf4;
}
.mc-row:last-child { border-bottom: none; }
.mc-cell {
  padding: 13px 22px;
  font-size: 13px;
  line-height: 1.65;
}
.mc-cell.mc-surveys {
  background: #f4f8fc;
  color: #3a4a5a;
  font-weight: 600;
}
.mc-cell.mc-game {
  background: #f4fae8;
  color: #1a3a0a;
  font-weight: 700;
}
.mc-row .mc-divider-col { background: #e4eaf4; }
@media (max-width: 560px) {
  .method-compare-header { grid-template-columns: 1fr; }
  .method-compare-header .mc-divider-col { display: none; }
  .mc-col.mc-game { border-top: 2px solid #2a3a5a; }
  .mc-row { grid-template-columns: 1fr; }
  .mc-row .mc-divider-col { display: none; }
  .mc-cell.mc-game { border-top: 1.5px solid #c8d8e8; }
}

/* ===== VALUE OBSERVATION CARDS (Step 1) ===== */
.value-obs-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.value-obs-item {
  border: 2px solid #c8d8e8;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.value-obs-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.value-obs-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  background: #0e1627;
  border-bottom: 2px solid #2a3a5a;
}
.value-obs-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a5a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-obs-title { flex: 1; }
.value-obs-name {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 3px;
}
.value-obs-stated {
  font-size: 12px;
  color: #6a9a8a;
  font-style: italic;
  line-height: 1.5;
}
.value-obs-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.value-obs-success {
  padding: 14px 18px;
  background: #f0fdf4;
  border-right: 1.5px solid #bbf7d0;
}
.value-obs-failure {
  padding: 14px 18px;
  background: #fff8f0;
}
.value-obs-panel-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
}
.value-obs-success .value-obs-panel-label { color: #16a34a; }
.value-obs-failure .value-obs-panel-label { color: #b45309; }
.value-obs-panel-text {
  font-size: 13px;
  color: #333;
  line-height: 1.65;
}
@media (max-width: 560px) {
  .value-obs-panels { grid-template-columns: 1fr; }
  .value-obs-success { border-right: none; border-bottom: 1.5px solid #bbf7d0; }
}

/* ===== GAP ROW (culture dimension cards) ===== */
.gap-row {
  background: #fff;
  border: 2px solid #c8d8e8;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gap-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.gap-row-header {
  background: #0e1627;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gap-num {
  width: 24px;
  height: 24px;
  background: #1a3a6a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gap-name {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}
.gap-sub {
  font-size: 11px;
  color: #6a8aaa;
  margin-left: auto;
  font-style: italic;
}
.gap-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gap-stated {
  background: #f4fae8;
  padding: 16px 18px;
  border-right: 1.5px solid #c8e8a8;
}
.gap-seen {
  background: #fff8f0;
  padding: 16px 18px;
}
.gap-panel-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.gap-stated .gap-panel-label { color: #2a7a10; }
.gap-seen   .gap-panel-label { color: #b05a10; }
.gap-panel-text {
  font-size: 13px;
  line-height: 1.65;
  color: #333;
}
@media (max-width: 560px) {
  .gap-panels { grid-template-columns: 1fr; }
  .gap-stated { border-right: none; border-bottom: 1.5px solid #c8e8a8; }
  .gap-sub { display: none; }
}

/* ===== PATTERN STACK ===== */
.pattern-stack {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pattern-stack.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pattern-item {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 2px solid #dde8c8;
  border-radius: 10px;
  padding: 18px 20px;
}
.pattern-badge {
  width: 28px;
  height: 28px;
  background: #1a5a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pattern-title {
  font-size: 14px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.pattern-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
}

/* ===== COMMIT BLOCK ===== */
.commit-value-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a4a2a;
}
.commit-value-num {
  width: 28px;
  height: 28px;
  background: #1a5a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.commit-value-name {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.2px;
}

.commit-block {
  background: #0e1627;
  border: 2px solid #2a5a2a;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 28px 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.commit-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.commit-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #62b517;
  margin-bottom: 18px;
}
.commit-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.commit-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.commit-line-num {
  width: 22px;
  height: 22px;
  background: #1a5a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.commit-line-text {
  font-size: 14px;
  color: #d4e8c8;
  line-height: 1.7;
}
.commit-line-text em {
  color: #d1db24;
  font-style: normal;
  font-weight: 700;
}

/* ===== SERIES LINK CARD ===== */
.series-link-card {
  background: linear-gradient(135deg, #0a1a08 0%, #142214 100%);
  border: 2px solid #2a5a2a;
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}
.slc-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #4a8a4a;
  margin-bottom: 4px;
}
.slc-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.slc-title em { font-style: normal; color: #d1db24; }
.slc-desc {
  font-size: 14px;
  color: #8eadc8;
  line-height: 1.6;
  margin-bottom: 8px;
}
.slc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #d1db24;
}
