/* Shared stylesheet for Dr. Suchit Jogu blog posts — matched to the live drsuchitjogu.com/blog/ template */
:root{
  --navy:#0f2a3f;
  --muted:#5b6b76;
  --eyebrow:#1a6fb0;
  --teal:#108696;
  --teal-light:#17a8b2;
  --soft-bg:#f6f9fb;
  --border:#e6ebee;
  --bg:#ffffff;
  --warn-border:#e8a33d;
  --warn-bg:#fdf7ec;
  --emergency-border:#d64545;
  --emergency-bg:#fdf2f2;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:-apple-system,"system-ui","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--navy);
  background:var(--bg);
  font-size:15.2px;
  line-height:1.6;
}
a{color:var(--eyebrow);text-decoration:none;}
a:hover{text-decoration:underline;}

/* Header (matches live site's post-page header) */
header.site-header{
  border-bottom:1px solid var(--border);
  padding:18px 24px;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;
}
header.site-header .logo{font-weight:700;font-size:16px;color:var(--navy);}
header.site-header nav a{margin-left:22px;font-size:14.5px;font-weight:500;color:var(--navy);}
header.site-header nav a:first-child{margin-left:0;}
header.site-header a:hover{text-decoration:none;color:var(--teal);}

/* Article container */
article.post{
  max-width:760px;
  margin:0 auto;
  padding:48px 24px 80px 24px;
}
.eyebrow{
  color:var(--eyebrow);
  font-size:12.8px;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  margin-bottom:8px;
}
h1.post-title{
  font-size:32px;
  font-weight:700;
  color:var(--navy);
  line-height:1.25;
  margin:0 0 16px 0;
}
.byline{
  font-size:15.2px;
  color:var(--muted);
  margin:0 0 32px 0;
  padding-bottom:24px;
  border-bottom:1px solid var(--border);
}
.byline strong{color:var(--navy);}

p{margin:0 0 24px 0;color:var(--muted);}
h2{font-size:21.6px;font-weight:700;color:var(--navy);margin:40px 0 16px 0;}
h3{font-size:17.6px;font-weight:700;color:var(--navy);margin:24px 0 10px 0;}
ul,ol{padding-left:22px;margin:0 0 24px 0;color:var(--muted);}
li{margin-bottom:8px;}
strong{color:var(--navy);}

/* Post images */
.post-img{width:100%;height:auto;border-radius:10px;display:block;margin:0 0 10px 0;}
.post-img-caption{font-size:13px;color:var(--muted);text-align:center;margin:0 0 32px 0;}

/* Key takeaways */
.key-takeaways{
  background:var(--soft-bg);
  border-radius:8px;
  padding:24px 28px;
  margin:0 0 36px 0;
}
.key-takeaways h2{margin:0 0 14px 0;font-size:16px;color:var(--navy);}
.key-takeaways ul{margin:0;color:var(--navy);}
.key-takeaways li{margin-bottom:10px;color:var(--navy);}
.key-takeaways li:last-child{margin-bottom:0;}

/* Home care / emergency callouts */
.home-care-box,.emergency-box{border-radius:8px;padding:20px 24px;margin:0 0 20px 0;}
.home-care-box{background:var(--soft-bg);border-left:3px solid var(--teal);}
.home-care-box h3{margin-top:0;color:var(--navy);}
.home-care-box ul{color:var(--muted);margin-bottom:0;}
.emergency-box{background:var(--emergency-bg);border-left:3px solid var(--emergency-border);}
.emergency-box h3{margin-top:0;color:#9a2f2f;}
.emergency-box ul{color:var(--muted);margin-bottom:0;}

/* Myths */
.myth-box{background:var(--warn-bg);border-left:3px solid var(--warn-border);border-radius:8px;padding:18px 24px;margin:0 0 18px 0;}
.myth-box h3{margin-top:0;color:#8a5a17;}
.myth-box p{margin-bottom:0;}

/* Table */
.table-wrap{overflow-x:auto;margin:0 0 28px 0;}
table{border-collapse:collapse;width:100%;font-size:14.5px;min-width:540px;}
th,td{border:1px solid var(--border);padding:10px 14px;text-align:left;vertical-align:top;color:var(--muted);}
th{background:var(--soft-bg);color:var(--navy);font-size:13.5px;}

/* FAQ */
.faq-item{border-bottom:1px solid var(--border);padding:16px 0;}
.faq-item:last-child{border-bottom:none;}
.faq-item h3{margin:0 0 6px 0;font-size:16px;}
.faq-item p{margin:0;}

/* Author box — matches live site's .author-box */
.author-box{
  background:var(--soft-bg);
  border-radius:8px;
  padding:20px;
  margin-top:40px;
  font-size:14.5px;
  color:var(--muted);
}
.author-box a{font-weight:600;color:var(--teal);}

/* Disclaimer */
.disclaimer{font-size:14.4px;color:var(--muted);margin:24px 0 0 0;}

/* CTA */
.cta-box{text-align:center;border:1px solid var(--border);border-radius:8px;padding:26px;margin:36px 0;}
.cta-box a.btn{
  display:inline-block;margin-top:12px;
  background:linear-gradient(135deg,var(--teal-light),var(--teal));
  color:#fff;font-weight:600;padding:10px 24px;border-radius:8px;
}
.cta-box a.btn:hover{text-decoration:none;opacity:0.92;}

/* Footer */
footer.site-footer{
  border-top:1px solid var(--border);
  padding:26px 24px;
  text-align:center;
  color:var(--muted);
  font-size:13.5px;
}
footer.site-footer a{color:var(--muted);margin:0 6px;}

@media (max-width:640px){
  h1.post-title{font-size:26px;}
  article.post{padding:32px 16px 60px 16px;}
  h2{font-size:19px;}
}
