/* article-nav.css — Shared nav, CTA, and footer styles for blog/portal/news articles
 * Created: 2026-03-06, Growth V3 — replaces inline styles from V2
 */

/* ===== NAV BAR ===== */
.article-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', -apple-system, sans-serif;
}

.article-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 14px;
}

.article-nav-logo img {
  border-radius: 5px;
}

.article-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-nav-link {
  color: #555770;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.article-nav-link:hover {
  color: #1a1a2e;
}

.article-nav-cta {
  background: #4A6CF7;
  color: #fff;
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.article-nav-cta:hover {
  background: #3b5de7;
  color: #fff;
}

.article-nav-spacer {
  height: 56px;
}

/* ===== CTA BANNER ===== */
.article-cta-banner {
  max-width: 680px;
  margin: 48px auto 32px;
  padding: 32px 28px;
  background: #f4f5f7;
  border-radius: 14px;
  text-align: center;
  font-family: 'Inter', -apple-system, sans-serif;
}

.article-cta-banner-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.article-cta-banner-text {
  font-size: 14px;
  color: #555770;
  margin-bottom: 20px;
}

.article-cta-btn {
  display: inline-block;
  background: #4A6CF7;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.article-cta-btn:hover {
  background: #3b5de7;
  color: #fff;
}

/* ===== MINI FOOTER ===== */
.article-mini-footer {
  max-width: 680px;
  margin: 0 auto 48px;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: #9498a8;
}

.article-mini-footer a {
  color: #9498a8;
  margin: 0 8px;
  text-decoration: none;
}

.article-mini-footer a:hover {
  color: #555770;
}
