/* SyncIT Insights / blog — dark theme, matches the site (body.home) */

/* Blog pages reuse body.home, so the dark navy background + light heading
   tokens from home.css already apply. These styles theme the blog-specific
   components to sit on that dark surface with strong reading contrast. */

.blog-hero {
  padding: 120px 0 48px;
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(59,130,246,.16), transparent 58%),
    linear-gradient(180deg, #0C1526 0%, #0A0F1A 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.blog-hero .eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #22D3EE; margin-bottom: 14px; }
.blog-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #F2F5FA; line-height: 1.15; margin: 0 0 14px; letter-spacing: -.02em; }
.blog-hero p { font-size: 17px; color: #9fb3cc; max-width: 560px; line-height: 1.6; margin: 0; }

.blog-index { padding: 48px 0 88px; }
.blog-grid { display: grid; gap: 22px; max-width: 760px; }
.blog-card {
  display: block; text-decoration: none; color: inherit;
  padding: 28px 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); transition: border-color .15s, box-shadow .15s, transform .15s, background .15s;
}
.blog-card:hover { border-color: rgba(34,211,238,.45); background: rgba(255,255,255,.06); box-shadow: 0 16px 40px rgba(0,0,0,.35); transform: translateY(-2px); }
.blog-card .meta { font-size: 12px; font-weight: 700; color: #22D3EE; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 10px; line-height: 1.25; letter-spacing: -.015em; }
.blog-card p { font-size: 15px; color: #9fb3cc; line-height: 1.6; margin: 0; }
.blog-card .read { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: #22D3EE; }

.blog-article { padding: 110px 0 80px; }
.blog-article .container-narrow { max-width: 680px; margin: 0 auto; padding: 0 22px; }
.blog-article .meta { font-size: 13px; color: #8B97A8; font-weight: 600; margin-bottom: 16px; }
.blog-article h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #F2F5FA; line-height: 1.18; letter-spacing: -.02em; margin: 0 0 18px; }
.blog-article .dek { font-size: 18px; color: #cbd8ea; line-height: 1.55; margin: 0 0 36px; }
.blog-article .prose { font-size: 16.5px; color: #C6D0DE; line-height: 1.8; }
.blog-article .prose h2 { font-size: 22px; font-weight: 700; color: #F2F5FA; margin: 38px 0 12px; letter-spacing: -.015em; }
.blog-article .prose p { margin: 0 0 16px; }
.blog-article .prose strong { color: #EAF0F8; }
.blog-article .prose ul { margin: 0 0 18px; padding-left: 1.2em; }
.blog-article .prose li { margin-bottom: 8px; }
.blog-article .prose a { color: #60A5FA; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.blog-article .prose a:hover { color: #93c5fd; }
.blog-article .callout {
  margin: 28px 0; padding: 20px 22px; border-radius: 14px;
  background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.22);
  border-left: 3px solid #3B82F6; color: #cbd8ea;
}
.blog-article .callout strong { color: #fff; }
.blog-cta {
  margin-top: 40px; padding: 28px; border-radius: 16px;
  background: linear-gradient(145deg, #12203a, #1e3a5f);
  border: 1px solid rgba(255,255,255,.10); color: #fff;
}
.blog-cta h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.blog-cta p { margin: 0 0 18px; color: #cbd5e1; font-size: 15px; line-height: 1.55; }
.blog-cta .btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.blog-cta a.btn {
  display: inline-block; padding: 12px 18px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none;
}
.blog-cta a.btn-primary { background: #2563eb; color: #fff; }
.blog-cta a.btn-primary:hover { background: #1d4ed8; }
.blog-cta a.btn-ghost { background: rgba(255,255,255,.08); color: #e2e8f0; border: 1px solid rgba(255,255,255,.18); }
.blog-cta a.btn-ghost:hover { background: rgba(255,255,255,.14); }
.blog-back { display: inline-block; margin-bottom: 22px; font-size: 14px; font-weight: 600; color: #22D3EE; text-decoration: none; }
.blog-back:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .blog-hero { padding: 100px 0 36px; }
  .blog-card { padding: 22px; }
}
