/* AllHipHop blog post — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Barlow', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
}
a { color: #c41e3a; text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav.site-nav {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner { max-width: 1152px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #ffffff; text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ccc; text-decoration: none; }
.nav-cta {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff !important;
  text-decoration: none !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
  padding: 12px 22px;
  background: linear-gradient(180deg, #e04358 0%, #c41e3a 50%, #a8182f 100%);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 14px rgba(196,30,58,0.35);
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 12px 24px rgba(196,30,58,0.5); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* HERO */
.hero {
  background: #ffffff;
  padding: 56px 24px 40px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: #c41e3a;
  background: rgba(196,30,58,0.08);
  border: 1px solid rgba(196,30,58,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  color: #1a1a1a; line-height: 1.1;
  max-width: 800px; margin: 0 auto 20px;
}
.hero h1 span { color: #c41e3a; }
.hero-meta {
  font-size: 13px; color: #888;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}

/* CONTAINER */
.container { max-width: 820px; margin: 0 auto; padding: 56px 24px; }

/* ARTICLE */
.article-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px; color: #1a1a1a;
  margin: 48px 0 16px;
  padding-left: 16px;
  border-left: 4px solid #c41e3a;
}
.article-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px; color: #1a1a1a;
  margin: 32px 0 12px;
}
.article-body p { font-size: 15px; color: #4B5563; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 24px 24px; }
.article-body li { font-size: 15px; color: #4B5563; margin-bottom: 10px; }
.article-body strong { color: #1a1a1a; }

/* CALLOUT */
.callout {
  background: rgba(196,30,58,0.05);
  border: 1px solid rgba(196,30,58,0.15);
  border-left: 4px solid #c41e3a;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 32px 0;
}
.callout p { margin: 0; font-size: 15px; color: #374151; font-weight: 500; }

/* STAT STRIP */
.stat-strip { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.stat-chip {
  background: #f8f8f8; border: 1px solid #e5e5e5; border-radius: 8px;
  padding: 14px 20px; text-align: center; flex: 1; min-width: 120px;
}
.stat-chip .val { font-family: 'Archivo Black', sans-serif; font-size: 28px; color: #c41e3a; display: block; }
.stat-chip .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #888; display: block; margin-top: 4px; }

/* CTA SECTION */
.cta-section {
  background: transparent;
  border: 2px solid #c41e3a;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin: 56px 0 32px;
}
.cta-section h2 { font-family: 'Archivo Black', sans-serif; font-size: 28px; color: #1a1a1a; margin-bottom: 12px; }
.cta-section p { color: #4B5563; font-size: 16px; margin-bottom: 28px; font-weight: 500; }
.cta-btn {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #ffffff !important; text-decoration: none !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
  padding: 16px 32px;
  background: linear-gradient(180deg, #e04358 0%, #c41e3a 50%, #a8182f 100%);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 18px rgba(196,30,58,0.35);
  transition: transform .15s, box-shadow .15s;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 14px 28px rgba(196,30,58,0.5); }

/* RELATED */
.related-posts {
  background: #f8f8f8; border: 1px solid #e5e5e5; border-radius: 12px;
  padding: 28px 32px; margin: 40px 0;
}
.related-posts h3 { font-family: 'Archivo Black', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 0.15em; color: #1a1a1a; margin-bottom: 14px; }
.related-posts a {
  display: block; color: #c41e3a;
  font-size: 14px; font-weight: 600;
  padding: 8px 0; border-bottom: 1px solid #e5e5e5;
}
.related-posts a:last-child { border-bottom: none; }

/* FOOTER — 4-column unified */
footer.site-footer {
  background: #0f0f0f;
  color: #cbd5e1;
  padding: 56px 24px 24px;
  border-top: 4px solid #c41e3a;
  margin-top: 56px;
}
.footer-grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; } }
.footer-col img.brand-img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-col p.brand-tag { color: #9ca3af; font-size: 13px; line-height: 1.55; }
.footer-col h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d1d5db;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col li a {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  transition: color .15s;
}
.footer-col li a:hover { color: #fff; text-decoration: none; }
.footer-bar {
  max-width: 1152px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #6b7280;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Brand col on full width on mobile */
.footer-col.brand-col { grid-column: span 2; }
@media (min-width: 768px) { .footer-col.brand-col { grid-column: span 1; } }
