/* Extracted from index.html / products.html :root — kept identical so the
   blog looks native to waaprint.com rather than bolted on. */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --blue:#29ABE2;--blue-dark:#1a8ac4;--blue-pale:#EBF7FD;
  --black:#0a0a0a;--ink:#1c1c1e;--muted:#6e6e73;
  --light:#f5f5f7;--border:#e5e5ea;--white:#ffffff;--yellow:#F5C518;
  --radius:12px;--radius-lg:18px;--radius-xl:24px;
  --max-w:1140px;--pad:2.5rem;
}
body{font-family:'Poppins',sans-serif;color:var(--ink);background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden}

/* NAV — same markup/classes as the rest of the site */
nav{background:var(--white);border-bottom:1px solid var(--border);padding:0 1.25rem;height:66px;display:flex;align-items:center;position:sticky;top:0;z-index:200;width:100%}
.nav-inner{max-width:var(--max-w);margin:0 auto;width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.logo{font-weight:700;font-size:22px;color:var(--black);letter-spacing:-.03em;cursor:pointer;text-decoration:none;flex-shrink:0}
.logo span{color:var(--blue)}
.nav-links{display:flex;gap:1.5rem;align-items:center}
.nav-links a{font-size:14px;color:var(--ink);text-decoration:none;font-weight:500;cursor:pointer;transition:color .15s;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{color:var(--blue)}
.btn-nav{background:var(--blue);color:white;border:none;border-radius:8px;padding:10px 22px;font-size:14px;font-weight:600;cursor:pointer;font-family:'Poppins',sans-serif;transition:background .2s;white-space:nowrap;flex-shrink:0;text-decoration:none;display:inline-block}
.btn-nav:hover{background:var(--blue-dark)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px;background:none;border:none;flex-shrink:0}
.hamburger span{display:block;width:22px;height:2px;background:var(--ink);border-radius:2px}
.mobile-menu{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:var(--white);z-index:9999;padding:1.5rem 1.25rem;flex-direction:column;gap:0;overflow-y:auto}
.mobile-menu.open{display:flex}
.mobile-menu-header{display:flex;justify-content:space-between;align-items:center;padding-bottom:1.25rem;margin-bottom:.5rem;border-bottom:1px solid var(--border)}
.mobile-close{background:none;border:none;font-size:32px;cursor:pointer;color:var(--ink);line-height:1;padding:0}
.mobile-menu a{font-size:18px;font-weight:600;color:var(--ink);text-decoration:none;cursor:pointer;padding:1rem 0;border-bottom:1px solid var(--border);display:block}

/* PAGE HERO — same treatment as products.html's header banner */
.page-hero{background:linear-gradient(135deg,rgba(14,106,158,1) 0%,rgba(41,171,226,1) 100%);padding:4rem var(--pad);text-align:center}
.page-hero-inner{max-width:var(--max-w);margin:0 auto}
.page-hero h1{font-size:clamp(1.6rem,4vw,2.6rem);font-weight:700;color:white;letter-spacing:-.025em;line-height:1.15;margin-bottom:.75rem}
.page-hero p{font-size:.95rem;color:rgba(255,255,255,.85);max-width:520px;margin:0 auto;line-height:1.7}

.sec{padding:4rem var(--pad)}
.sec-in{max-width:var(--max-w);margin:0 auto}

/* BLOG INDEX GRID */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.blog-card{border-radius:var(--radius-lg);overflow:hidden;background:var(--white);border:1px solid var(--border);text-decoration:none;color:inherit;display:block;transition:transform .2s,box-shadow .2s}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(10,10,10,.08)}
.blog-card img{width:100%;aspect-ratio:16/10;object-fit:cover;display:block;background:#ddd}
.blog-card-body{padding:1.1rem 1.25rem 1.4rem}
.blog-card-tag{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--blue);margin-bottom:.5rem}
.blog-card h3{font-size:1.05rem;font-weight:700;color:var(--black);line-height:1.35;margin-bottom:.5rem}
.blog-card p{font-size:.85rem;color:var(--muted);line-height:1.6}
.blog-card-meta{font-size:12px;color:var(--muted);margin-top:.9rem}

/* SINGLE POST */
.post{max-width:720px;margin:0 auto;padding:3rem var(--pad) 5rem}
.post-eyebrow{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);margin-bottom:.75rem}
.post h1{font-size:clamp(1.6rem,4vw,2.4rem);font-weight:700;color:var(--black);letter-spacing:-.02em;line-height:1.2;margin-bottom:1rem}
.post-meta{font-size:13px;color:var(--muted);margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid var(--border)}
.post-cover{width:100%;border-radius:var(--radius-lg);margin-bottom:2rem;aspect-ratio:16/9;object-fit:cover;background:#ddd}
.post-body{font-size:1rem;line-height:1.85;color:var(--ink)}
.post-body h2{font-size:1.35rem;font-weight:700;margin:2.2rem 0 .9rem;letter-spacing:-.015em}
.post-body h3{font-size:1.1rem;font-weight:700;margin:1.8rem 0 .7rem}
.post-body p{margin-bottom:1.2rem}
.post-body a{color:var(--blue);text-decoration:underline}
.post-body img{width:100%;border-radius:var(--radius);margin:1.5rem 0}
.post-body ul,.post-body ol{margin:0 0 1.2rem 1.4rem}
.post-body li{margin-bottom:.4rem}
.post-body blockquote{border-left:3px solid var(--blue);padding-left:1.2rem;color:var(--muted);margin:1.5rem 0;font-style:italic}

.post-cta{background:var(--blue-pale);border-radius:var(--radius-lg);padding:1.75rem;margin-top:3rem;text-align:center}
.post-cta h3{font-size:1.05rem;font-weight:700;margin-bottom:.5rem}
.post-cta p{font-size:.88rem;color:var(--muted);margin-bottom:1.1rem}

/* FOOTER — exact rules from index.html for a pixel-matching footer */
footer{background:var(--black);padding:3.5rem var(--pad) 2rem}
.foot-in{max-width:var(--max-w);margin:0 auto}
.foot-top{display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;gap:2.5rem;margin-bottom:2.5rem}
.foot-brand{font-size:21px;font-weight:700;color:white;letter-spacing:-.03em}
.foot-brand span{color:var(--blue)}
.foot-tag{font-size:12px;line-height:1.7;color:rgba(255,255,255,.37);margin-top:.45rem}
.foot-soc{display:flex;flex-direction:column;gap:7px;margin-top:1rem}
.soc-btn{display:flex;align-items:center;gap:7px;background:rgba(255,255,255,.07);border-radius:8px;padding:7px 13px;cursor:pointer;text-decoration:none;color:rgba(255,255,255,.55);font-size:12px;font-weight:600;transition:background .2s;width:fit-content}
.soc-btn:hover{background:var(--blue);color:white}
.foot-col h4{font-size:11px;font-weight:700;color:rgba(255,255,255,.65);margin-bottom:.9rem;letter-spacing:.05em;text-transform:uppercase}
.foot-col a{display:block;font-size:12.5px;color:rgba(255,255,255,.42);text-decoration:none;margin-bottom:.45rem;cursor:pointer;transition:color .15s}
.foot-col a:hover{color:rgba(255,255,255,.8)}
.fci{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;color:rgba(255,255,255,.45);margin-bottom:.55rem;line-height:1.5}
.fci svg{flex-shrink:0;margin-top:2px;opacity:.55}
.foot-bot{border-top:1px solid rgba(255,255,255,.07);padding-top:1.5rem;font-size:12px;color:rgba(255,255,255,.27);text-align:center}

@media(max-width:860px){
  .foot-top{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:600px){
  .foot-top{grid-template-columns:1fr}
}

@media(max-width:860px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .blog-grid{grid-template-columns:1fr}
}
