/* ── SOCIAL OUTREACH PAGE ── */

/* Deck link button */
.btn-outline-pink {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--momo-pink-light);
  background: transparent; border: 1px solid var(--momo-pink);
  border-radius: 6px; padding: 7px 14px; text-decoration: none;
  margin-top: 14px; transition: background .15s;
}
.btn-outline-pink:hover { background: #2A1420; }

/* 4-step process flow */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
}
@media (max-width: 768px) {
  .process-flow { grid-template-columns: 1fr 1fr; }
}
.flow-step {
  background: #1a1a1a;
  border: 0.5px solid #2a2a2a;
  border-radius: 6px;
  padding: 12px;
}
.flow-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #A50064;
  margin-bottom: 4px;
}
.flow-step-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid #2a2a2a;
}
.flow-step-body {
  font-size: 11px;
  color: #666;
  line-height: 1.6;
}
.flow-step-body strong {
  color: #999;
  font-weight: 500;
}
.flow-step-body p { margin: 0 0 6px; }
.flow-step-body p:last-child { margin-bottom: 0; }

/* 3-col card grid — reused for trigger cases + comm objectives */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .obj-grid { grid-template-columns: 1fr; }
}
.obj-card {
  background: #161616;
  border: 0.5px solid #2a2a2a;
  border-radius: 8px;
  padding: 16px;
}
.obj-card-title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #2a2a2a;
}
.obj-card-row { font-size: 12px; color: #888; line-height: 1.6; margin-bottom: 8px; }
.obj-card-row:last-child { margin-bottom: 0; }
.obj-card-row strong { display: block; color: #ccc; font-weight: 500; margin-bottom: 2px; }

/* Dos / Don'ts */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .dos-donts { grid-template-columns: 1fr; }
}
.dos { border-left: 3px solid #2e7d32; }
.donts { border-left: 3px solid #c62828; }
.dos, .donts {
  background: #161616;
  border-radius: 0 6px 6px 0;
  padding: 12px 14px;
}
.dos-donts-title { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.dos ul li::before { content: "✅ "; }
.donts ul li::before { content: "❌ "; }
.dos ul, .donts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #888;
  line-height: 1.8;
}

/* Callouts */
.callout-amber {
  background: #2a1a00; border-left: 3px solid #ffb74d; color: #ffb74d;
  border-radius: 0 4px 4px 0; padding: 10px 14px; font-size: 12px; line-height: 1.7;
  margin: 14px 0;
}
.callout-info {
  background: #122235; border-left: 3px solid #5B9BD5; color: #8FC1EA;
  border-radius: 0 4px 4px 0; padding: 10px 14px; font-size: 12px; line-height: 1.7;
  margin-bottom: 16px;
}
.callout-info a { color: #fff; font-weight: 500; }

/* Chip-style tab bar — makes tabs read as clickable buttons instead of plain underlined text */
.playbook-tabs.chip-style { border-bottom: none; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.playbook-tabs.chip-style .playbook-tab {
  background: var(--surface-2); border: 1px solid #2A2A2A; border-radius: 20px;
  padding: 8px 16px; color: #aaa;
}
.playbook-tabs.chip-style .playbook-tab:hover { background: #202020; color: #ddd; border-color: #444; }
.playbook-tabs.chip-style .playbook-tab.active {
  background: #2A1420; border-color: var(--momo-pink); color: var(--momo-pink-light);
}

/* Checklist columns */
.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 4px; }
@media (max-width: 768px) {
  .checklist-grid { grid-template-columns: 1fr; }
}
.checklist-col-title { font-size: 12px; font-weight: 600; color: #ccc; margin: 0 0 6px; }

/* Decorative checkbox list — no persistence needed */
.input-checklist { list-style: none; padding: 0; margin: 0 0 16px; }
.input-checklist li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 12px;
  color: #888;
  border-bottom: 0.5px solid #1e1e1e;
}
.input-checklist li::before {
  content: "☐";
  position: absolute;
  left: 0;
  color: #A50064;
}

/* Pill tag row (KOL categories) */
.pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

.subsec-label-plain {
  font-size: 12.5px; font-weight: 500; color: var(--momo-white); margin: 16px 0 8px;
}
.subsec-label-plain:first-child { margin-top: 0; }

/* ── SURVEY PROCESS PAGE ── */

/* Context 3-col cards */
.context-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.context-card {
  background: #161616; border: 0.5px solid #2a2a2a; border-radius: 8px;
  padding: 14px; font-size: 12px; color: #888; line-height: 1.65;
}
.context-card h4 { font-size: 12px; font-weight: 500; color: #fff; margin: 0 0 8px; }
.context-card.media { background: #1a0a14; border-color: #4a1a2a; }

/* Stepper layout */
.survey-steps { position: relative; margin-top: 14px; }
.survey-steps::before {
  content: ''; position: absolute; left: 15px; top: 32px; bottom: 32px;
  width: 1px; background: #2a2a2a;
}
.step-row { display: flex; gap: 14px; align-items: flex-start; padding: 0 0 10px; position: relative; }
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: #A50064; color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1; box-shadow: 0 0 0 3px #111;
}
/* Step 4 — Media step: white ring highlight */
.step-num.media-step { box-shadow: 0 0 0 3px #A50064, 0 0 0 5px #111; }
.step-body { flex: 1; background: #161616; border: 0.5px solid #2a2a2a; border-radius: 8px; padding: 14px 16px; }
.step-title { font-size: 13px; font-weight: 500; color: #fff; margin: 0 0 10px; }
.step-content { font-size: 12px; color: #888; line-height: 1.7; }
.step-content ol, .step-content ul { padding-left: 16px; margin: 6px 0; }
.step-content li { margin-bottom: 4px; }
.step-content strong { color: #ccc; font-weight: 500; }
.step-content code {
  background: #0d0d0d; border: 0.5px solid #333; border-radius: 3px;
  padding: 1px 7px; font-family: monospace; font-size: 11px; color: #A50064;
}

/* Step link buttons */
.step-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.step-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; color: #A50064;
  border: 0.5px solid #A50064; border-radius: 4px; padding: 4px 10px;
  text-decoration: none; transition: background .15s;
}
.step-link:hover { background: #2a0018; }

/* Media role callout (Step 4) */
.media-role-note {
  background: #1a0a14; border-left: 3px solid #A50064; border-radius: 0 4px 4px 0;
  padding: 9px 12px; font-size: 12px; color: #d4609a; margin-top: 10px; line-height: 1.6;
}

/* Tip callout (Step 1) */
.step-tip {
  background: #111; border: 0.5px solid #2a2a2a; border-radius: 4px;
  padding: 7px 10px; font-size: 11px; color: #555; font-style: italic; margin-top: 10px;
}

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