/* Page-specific styles */

/* ===== HERO THEME ===== */
.article-hero { background: linear-gradient(160deg, #0c1829 0%, #162640 60%, #1a3350 100%); }
.article-tag-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.tag-explainer { background: #1a3a6a; }
.tag-cyber     { background: #2a5c0a; }
.article-hero-sub { color: #8eadc8; }
.article-meta-sep { color: #3a5a7a; }
.article-cta { background: linear-gradient(135deg, #0c1829 0%, #162640 100%); border: 2px solid #253347; }
.article-cta p { color: #8eadc8; }
.article-cta a.secondary { color: #8eadc8; border: 2px solid #2a4a6a; }

/* Case study block */
.case-study {
  background: #0c1829;
  border-radius: 12px;
  padding: 26px 30px;
  margin: 32px 0;
  border-left: 4px solid #d1db24;
}
.case-study-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #d1db24;
  margin-bottom: 10px;
}
.case-study-title {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.case-study p {
  font-size: 14px;
  color: #8eadc8;
  line-height: 1.75;
  margin-bottom: 0;
}
.case-study strong { color: #d1db24; font-weight: 800; }

/* Framework comparison */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.framework-card {
  border-radius: 12px;
  padding: 22px 20px;
  border: 2px solid;
}
.framework-card.attacker {
  border-color: #c04040;
  background: #fff8f8;
}
.framework-card.attacker .fc-label { color: #c04040; }
.framework-card.defender {
  border-color: #2a7a2a;
  background: #f4fae8;
}
.framework-card.defender .fc-label { color: #2a7a2a; }
.fc-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.fc-title {
  font-size: 15px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.fc-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc-steps li {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-steps li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.attacker .fc-steps li::before { background: #c04040; }
.defender .fc-steps li::before { background: #2a7a2a; }

@media (max-width: 600px) {
  .framework-grid { grid-template-columns: 1fr; }
}

/* Checklist illustration */
.checklist-block {
  background: #fff;
  border: 2px solid #dde8c8;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.checklist-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 14px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f5e8;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.checklist-item:last-child { border-bottom: none; }
.check-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #a8c96a;
  background: #f4fae8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #62b517;
}
.check-box.checked { background: #62b517; border-color: #62b517; color: #fff; }
.checklist-note {
  font-size: 11px;
  font-weight: 600;
  color: #c04040;
  margin-left: auto;
  padding-left: 8px;
  white-space: nowrap;
}

/* Mindset shift table */
.shift-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}
.shift-table th {
  background: #0c1829;
  color: #d1db24;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 16px;
  text-align: left;
}
.shift-table th:first-child { border-radius: 8px 0 0 0; }
.shift-table th:last-child { border-radius: 0 8px 0 0; }
.shift-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8f0d8;
  line-height: 1.5;
  font-weight: 600;
  color: #333;
  background: #fff;
}
.shift-table tr:last-child td { border-bottom: none; }
.shift-table tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.shift-table tr:last-child td:last-child { border-radius: 0 0 8px 0; }
.shift-table td.from { color: #9a3030; }
.shift-table td.to   { color: #2a6a2a; }

/* CTA section */
