/* =========================================
   SAVLIFE INDIVIDUAL BLOG POST STYLES — css/blogs.css
   (for future individual blog post pages)
========================================= */

.blog-post-hero{
  background:linear-gradient(135deg,#eaf4ff,#f0f7ff);
  padding:60px 0 50px;
  border-bottom:1px solid rgba(11,124,255,0.1);
}

.blog-post-breadcrumb{
  font-size:13px;
  color:var(--text);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.blog-post-breadcrumb a{
  color:var(--blue);
  font-weight:600;
}

.blog-post-hero h1{
  font-size:38px;
  color:var(--dark);
  margin:14px 0 16px;
  max-width:800px;
  line-height:1.25;
}

.blog-post-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.blog-post-layout{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:36px;
  align-items:start;
}

.blog-post-content{
  background:#fff;
  border-radius:20px;
  padding:44px;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,124,255,0.07);
  font-size:16px;
  color:var(--text);
  line-height:1.9;
}

.blog-post-content h2{
  font-size:24px;
  color:var(--dark);
  margin:32px 0 14px;
}

.blog-post-content h3{
  font-size:20px;
  color:var(--dark);
  margin:24px 0 12px;
}

.blog-post-content p{
  margin-bottom:16px;
}

.blog-post-content ul,
.blog-post-content ol{
  padding-left:22px;
  margin-bottom:16px;
}

.blog-post-content li{
  margin-bottom:8px;
}

.blog-post-content strong{
  color:var(--dark);
}

.blog-post-content .highlight-box{
  background:#eaf4ff;
  border-left:4px solid var(--blue);
  border-radius:0 12px 12px 0;
  padding:16px 20px;
  margin:20px 0;
}

.blog-post-sidebar{
  position:sticky;
  top:80px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.blog-share-card{
  background:#fff;
  border-radius:16px;
  padding:24px;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,124,255,0.07);
}

.blog-share-card h3{
  font-size:15px;
  margin-bottom:14px;
  color:var(--dark);
}

@media(max-width:900px){
  .blog-post-layout{ grid-template-columns:1fr; }
  .blog-post-sidebar{ position:static; }
  .blog-post-hero h1{ font-size:28px; }
}

@media(max-width:600px){
  .blog-post-content{ padding:24px 18px; }
}
