/* =============================================
   PLAYBOOK PAGE (2026-08-04, new)
   /playbook — content clustered by the same 5
   service pillars as the mega menu, not by date.
   No individual-article system built yet (no
   content exists) — this is the index page only.
   ============================================= */

/* ---- Hero visual: table-of-contents with a moving spotlight ---- */
.playbook-toc {
  position: relative;
}

.playbook-toc__title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--light);
  margin-bottom: 14px;
  text-align: center;
}

.playbook-toc__row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px dashed var(--border);
}

.playbook-toc__row:last-child {
  border-bottom: none;
}

.playbook-toc__icon {
  font-size: 16px;
}

.playbook-toc__highlight {
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  height: 42px;
  background: var(--accent-bg);
  border: 1px solid var(--accent);
  border-radius: 8px;
  z-index: 1;
  animation: playbookTocSpotlight 8s ease-in-out infinite;
}

@keyframes playbookTocSpotlight {
  0%, 14% { top: 38px; }
  20%, 34% { top: 80px; }
  40%, 54% { top: 122px; }
  60%, 74% { top: 164px; }
  80%, 94% { top: 206px; }
  100% { top: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .playbook-toc__highlight {
    animation: none;
  }
}

.playbook-grid-section {
  background: var(--bg-alt);
  padding: 72px 0;
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.playbook-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
}

.playbook-col__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.playbook-col__icon {
  font-size: 16px;
}

.playbook-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.playbook-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 4px;
}

.playbook-card__hook {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.playbook-card--placeholder {
  background: transparent;
  border-style: dashed;
  text-align: center;
  color: var(--light);
  font-size: 12px;
  font-style: italic;
  padding: 20px 10px;
}

.playbook-col__seeall {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin-top: 2px;
}

.playbook-col__seeall:hover {
  color: var(--navy-dark);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .playbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .playbook-grid-section {
    padding: 48px 0;
  }

  .playbook-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
