/* ============================================================
   NOVAXYL STEER Grid + Agent Flow — blog-steer-grid.css
   Agentic AI blog-specific styles.
   ============================================================ */

/* ── Agent Mechanics Flow (vertical numbered steps) ──────── */
.agent-flow {
  display: flex;
  flex-direction: column;
  margin: 1.8rem 0 2.5rem;
}

.agent-step {
  background: var(--dark-secondary);
  border: 1px solid rgba(176, 146, 86, 0.12);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
}

.agent-step.gold   { border-left-color: var(--gold); }
.agent-step.forest { border-left-color: #1B5E4B; }
.agent-step.navy   { border-left-color: #1A2F4E; }
.agent-step.burg   { border-left-color: #6B2D3E; }
.agent-step.teal   { border-left-color: #1A5E5E; }

.step-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.5rem;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.agent-step.forest .step-num { color: #4CAF89; }
.agent-step.navy   .step-num { color: #5B8ECC; }
.agent-step.burg   .step-num { color: #C47A8A; }
.agent-step.teal   .step-num { color: #4CAFA5; }

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.agent-step.forest .step-label { color: #4CAF89; }
.agent-step.navy   .step-label { color: #5B8ECC; }
.agent-step.burg   .step-label { color: #C47A8A; }
.agent-step.teal   .step-label { color: #4CAFA5; }

.agent-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Downward connector between steps */
.agent-arrow {
  padding: 0.15rem 0 0.15rem 2rem;
  color: var(--gold);
  opacity: 0.3;
  font-size: 1rem;
  line-height: 1.4;
  user-select: none;
}

/* ── Seven Disciplines List ───────────────────────────────── */
.disciplines-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.8rem;
}

.discipline-item {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(176, 146, 86, 0.1);
}

.discipline-item:first-child {
  border-top: 1px solid rgba(176, 146, 86, 0.1);
}

.discipline-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  flex-shrink: 0;
  min-width: 1.6rem;
}

.discipline-body strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-right: 0.35rem;
}

.discipline-body span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .discipline-item { gap: 0.7rem; align-items: flex-start; }
  .discipline-num  { padding-top: 0.1rem; }
}

/* ── STEER intro line ─────────────────────────────────────── */
.steer-framework-intro {
  margin: 2rem 0 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(176, 146, 86, 0.06);
  border-left: 3px solid var(--gold);
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.steer-framework-intro strong {
  color: var(--gold);
}

/* ── STEER grid (5 columns, mirrors GRACE pattern) ─────────── */
.steer-grid-blog {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
  margin: 1.4rem 0 0.6rem;
}

@media (max-width: 900px) {
  .steer-grid-blog { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steer-grid-blog { grid-template-columns: 1fr; }
}

/* ── Individual STEER card ────────────────────────────────── */
.steer-card {
  background: var(--dark-secondary);
  border: 1px solid rgba(176, 146, 86, 0.2);
  border-top: 4px solid var(--gold);
  border-radius: 2px;
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
}

.steer-card.gold   { border-top-color: var(--gold); }
.steer-card.forest { border-top-color: #1B5E4B; }
.steer-card.navy   { border-top-color: #1A2F4E; }
.steer-card.burg   { border-top-color: #6B2D3E; }
.steer-card.teal   { border-top-color: #1A5E5E; }

.steer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.steer-card.forest h3 { color: #4CAF89; }
.steer-card.navy   h3 { color: #5B8ECC; }
.steer-card.burg   h3 { color: #C47A8A; }
.steer-card.teal   h3 { color: #4CAFA5; }

.steer-card p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
  flex: 1;
}

.steer-tag {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(176, 146, 86, 0.12);
  color: var(--gold);
  margin-top: auto;
}

.steer-card.forest .steer-tag { background: rgba(27, 94, 75, 0.15);  color: #4CAF89; }
.steer-card.navy   .steer-tag { background: rgba(26, 47, 78, 0.2);   color: #5B8ECC; }
.steer-card.burg   .steer-tag { background: rgba(107, 45, 62, 0.15); color: #C47A8A; }
.steer-card.teal   .steer-tag { background: rgba(26, 94, 94, 0.15);  color: #4CAFA5; }

/* ── STEER / disciplines closing banner ───────────────────── */
.steer-banner-blog {
  margin: 0.6rem 0 2rem;
  background: linear-gradient(135deg,
    rgba(26, 94, 94, 0.08) 0%,
    rgba(176, 146, 86, 0.08) 100%);
  border: 1px solid rgba(26, 94, 94, 0.25);
  border-radius: 2px;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}
