/* Blog styling for CoverageForU — extends legal.css tokens */
:root {
  --teal: #0E7C7B;
  --teal-dark: #0A5F5E;
  --teal-100: #d7ecec;
  --teal-50: #eef7f7;
  --accent: #F2683C;
  --accent-dark: #db5227;
  --ink: #12272C;
  --ink-soft: #2c4249;
  --muted: #5C6E73;
  --bg: #FFFFFF;
  --section: #F4F8F8;
  --border: #E2ECEC;
  --ring: rgba(14,124,123,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(18,39,44,0.05);
  --shadow: 0 12px 34px rgba(14,124,123,0.10);
  --container: 1100px;
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; letter-spacing: -0.02em; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { padding-left: 1.25rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Top bar (shared with legal.css) */
.lp-nav { position: sticky; top: 0; z-index: 50; height: var(--nav-h); background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-name span { color: var(--teal); }
.lp-back { font-weight: 600; font-size: 0.9rem; color: var(--teal); display: inline-flex; align-items: center; gap: 0.35rem; }

/* Buttons (shared with legal.css) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 700; font-size: 0.975rem;
  border: none; border-radius: 999px; padding: 0.85rem 1.6rem; transition: transform .12s ease, box-shadow .2s ease, background .2s ease; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(242,104,60,0.28); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--teal); border: 1.5px solid var(--teal-100); }
.btn-secondary:hover { border-color: var(--teal); background: var(--teal-50); }
.btn-ghost { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(14,124,123,0.22); }
.btn-ghost:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* Footer (shared with legal.css) */
.lp-footer { background: #0c1f23; color: #b9cccf; padding: 2.5rem 0; margin-top: 2rem; }
.lp-footer a { color: #b9cccf; text-decoration: none; }
.lp-footer a:hover { color: #fff; }
.lp-footer .links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1rem; font-size: 0.9rem; }
.lp-footer .disclaimer { font-size: 0.78rem; color: #8ba3a7; line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.25rem; }
.lp-footer .copy { font-size: 0.8rem; color: #7d9599; margin-top: 1rem; }

/* ---------- Blog index ---------- */
.blog-hero { padding: 3rem 0 2rem; background: var(--section); border-bottom: 1px solid var(--border); }
.blog-hero .container { max-width: 760px; text-align: center; }
.blog-hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; color: var(--ink); }
.blog-hero p { color: var(--muted); font-size: 1.05rem; }

.blog-grid-section { padding: 3rem 0 4rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }

.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.post-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.post-tag { align-self: flex-start; background: var(--teal-50); color: var(--teal-dark); font-family: var(--font-head);
  font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.3rem 0.7rem; border-radius: 999px; }
.post-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.post-card p.excerpt { color: var(--muted); font-size: 0.94rem; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex: none; }

/* ---------- Article layout ---------- */
.article-hero { padding: 2.75rem 0 2rem; background: var(--section); border-bottom: 1px solid var(--border); }
.article-hero .container { max-width: 740px; }
.article-hero .post-tag { margin-bottom: 1rem; }
.article-hero h1 { font-size: clamp(1.7rem, 4vw, 2.35rem); font-weight: 800; color: var(--ink); margin-bottom: 0.9rem; }
.article-hero .post-meta { font-size: 0.9rem; }

.article { padding: 2.75rem 0 4rem; }
.article .container { max-width: 740px; }
.article h2 { font-size: 1.4rem; font-weight: 800; margin: 2.25rem 0 0.85rem; color: var(--ink); }
.article h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.6rem; color: var(--ink); }
.article p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.03rem; }
.article ul, .article ol { color: var(--ink-soft); margin-bottom: 1.1rem; }
.article li { margin-bottom: 0.5rem; font-size: 1.03rem; }
.article a { color: var(--teal); text-decoration: underline; }
.article strong { color: var(--ink); }
.article blockquote { background: var(--section); border-left: 3px solid var(--teal); border-radius: 8px;
  padding: 1rem 1.25rem; margin: 1.5rem 0; font-size: 0.98rem; color: var(--ink-soft); font-style: italic; }

/* End-of-article CTA */
.article-cta { margin-top: 2.75rem; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: var(--radius);
  padding: 2rem; text-align: center; color: #fff; box-shadow: var(--shadow); }
.article-cta h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; margin-bottom: 0.5rem; color: #fff; }
.article-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; font-size: 0.98rem; }
.article-cta .btn-primary { background: var(--accent); }
.article-cta .btn-primary:hover { background: var(--accent-dark); }

@media (max-width: 640px) {
  .post-card-body { padding: 1.25rem; }
  .article-cta { padding: 1.5rem; }
}
