/* components.css — Mode B editorial components
   shoaib-chauffeur-service-theme-v1 | WP-Flash v4.0 */

/* ── B2 Monospace kicker ── */
.ed-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.ed-kicker--light { color: rgba(255, 255, 255, 0.55); }

/* ── B3 Manifesto ── */
.manifesto-section { padding: var(--spacing-2xl) 0; }
.manifesto-list { max-width: 720px; margin: 0 auto; }
.manifesto-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.manifesto-item:first-child { border-top: 1px solid var(--color-border); }
.manifesto-item.in-view { opacity: 1; }
.manifesto-number {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  padding-top: 5px;
}
.manifesto-body h3 {
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.manifesto-body p { color: var(--color-text-muted); line-height: 1.7; margin: 0; }
@media (prefers-reduced-motion: reduce) { .manifesto-item { opacity: 1; transition: none; } }
@media (max-width: 560px) {
  .manifesto-item { grid-template-columns: 42px 1fr; gap: 16px; padding: 30px 0; }
}

/* ── B8 Oversized editorial typography ── */
.editorial-type-section { padding: clamp(80px, 10vw, 160px) 0; }
.ed-eyebrow {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 24px;
}
.ed-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}
.ed-headline--outline {
  -webkit-text-stroke: 2px var(--color-text);
  color: transparent;
}
.section--dark .ed-headline--outline { -webkit-text-stroke-color: #fff; }
.ed-body-copy {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.6;
}
