/* ===== AgentParker Blog — Shared Stylesheet ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff; --bg-soft: #f5f5f8; --bg-code: #f0f0f4;
  --ink: #0c0f12; --ink-muted: #6b6e94; --ink-on-dark: #f4f4f6;
  --blue: #215bee; --blue-bright: #2563ff; --blue-light: #7898eb; --blue-pale: #b8ccff;
  --warm: #ff7917;
  --border: rgba(33,91,238,0.14); --border-soft: rgba(12,15,18,0.08);
  --border-dark: rgba(255,255,255,0.10);
  --font: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --z-sticky: 100;
  --content-w: 760px;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* NAV — full dropdown nav */
.nav { position:fixed; top:0; left:0; right:0; z-index:100; padding:0 clamp(16px,4vw,52px); height:64px; display:flex; align-items:center; gap:8px; background:rgba(10,14,35,0.96); backdrop-filter:saturate(160%) blur(12px); -webkit-backdrop-filter:saturate(160%) blur(12px); border-bottom:1px solid rgba(255,255,255,0.07); }
.nav.scrolled { box-shadow:0 1px 24px rgba(0,0,0,0.32); }
.nav .logo { font-family:var(--font); font-size:18px; font-weight:600; color:#fff; text-decoration:none; margin-right:8px; flex-shrink:0; }
.nav .logo em { font-style:normal; color:#6b9eff; }
.nav-center { display:flex; align-items:center; gap:4px; flex:1; justify-content:center; }
.nav-right { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-link { background:none; border:none; cursor:pointer; font-family:inherit; font-size:14px; font-weight:500; color:rgba(255,255,255,0.82); padding:6px 10px; border-radius:6px; display:inline-flex; align-items:center; gap:5px; transition:color 0.2s,background 0.2s; white-space:nowrap; }
.nav-link:hover { color:#fff; background:rgba(255,255,255,0.08); }
.nav-phone { font-size:13px; font-weight:500; color:rgba(255,255,255,0.7); text-decoration:none; transition:color 0.2s; }
.nav-phone:hover { color:#fff; }
.nav-cta { height:38px; padding:0 18px; border-radius:8px; font-family:inherit; font-size:13px; font-weight:600; text-decoration:none; display:inline-flex; align-items:center; background:#215bee; color:#fff !important; box-shadow:0 6px 18px rgba(33,91,238,0.35); transition:background 0.2s,transform 0.15s; white-space:nowrap; border:none; }
.nav-cta:hover { background:#3b72f5; transform:translateY(-1px); }
.nav-dropdown { position:relative; }
.nav-dd-menu { position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(-6px); min-width:240px; background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:14px; box-shadow:0 16px 48px rgba(0,0,0,0.16); padding:8px; opacity:0; pointer-events:none; transition:opacity 0.18s,transform 0.18s; z-index:200; }
.nav-dd-wide { min-width:320px; left:auto; right:0; transform:translateY(-6px); }
.nav-dd-trigger[aria-expanded="true"] + .nav-dd-menu { opacity:1; pointer-events:all; transform:translateX(-50%) translateY(0); }
.nav-dd-trigger[aria-expanded="true"] + .nav-dd-wide { opacity:1; pointer-events:all; transform:translateY(0); }
.nav-dd-menu a { display:flex; align-items:center; gap:10px; padding:8px 10px; border-radius:8px; text-decoration:none; color:#1a1d23; font-size:13.5px; transition:background 0.15s; }
.nav-dd-menu a:hover { background:#f4f6fb; color:#1a1d23; }
.nav-dd-menu a strong { display:block; font-size:13.5px; font-weight:600; color:#0d1117; line-height:1.2; }
.nav-dd-menu a em { display:block; font-style:normal; font-size:11.5px; color:#6b7280; margin-top:1px; }
.dd-icon { font-size:18px; flex-shrink:0; width:28px; text-align:center; }
.dd-cat { font-size:10px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; color:#215bee; background:#eff3ff; border-radius:4px; padding:2px 6px; flex-shrink:0; }
.dd-all { border-bottom:1px solid #f0f0f0; margin-bottom:4px; padding-bottom:10px; }
.dd-divider { height:1px; background:#f0f0f0; margin:4px 0; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; margin-left:auto; }
.nav-hamburger span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition:transform 0.2s,opacity 0.2s; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.nav-mobile-menu { display:none; position:fixed; top:64px; left:0; right:0; background:rgba(10,14,35,0.97); backdrop-filter:blur(12px); border-bottom:1px solid rgba(255,255,255,0.07); padding:8px 0 16px; flex-direction:column; z-index:99; }
.nav-mobile-menu.open { display:flex; }
.nav-mobile-section { padding:10px 20px 4px; }
.nav-mobile-label { font-size:10px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:6px; }
.nav-mobile-menu a { padding:9px 20px; font-size:14px; color:rgba(255,255,255,0.85); text-decoration:none; display:block; }
.nav-mobile-menu a:hover { color:#fff; background:rgba(255,255,255,0.06); }
@media (max-width:860px) { .nav-center, .nav-phone { display:none; } .nav-hamburger { display:flex; } .nav-right .nav-cta { font-size:12px; padding:0 14px; height:36px; } }
/* RICH FOOTER */
.rich-footer { background:#0a0e23; border-top:1px solid rgba(255,255,255,0.07); padding:clamp(48px,7vw,80px) clamp(20px,5vw,60px) 0; }
.rich-footer-grid { display:grid; grid-template-columns:1.6fr repeat(4,1fr); gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.07); }
@media (max-width:1060px) { .rich-footer-grid { grid-template-columns:1fr 1fr; } .rf-brand { grid-column:1/-1; } }
@media (max-width:540px) { .rich-footer-grid { grid-template-columns:1fr; } }
.rf-logo { font-family:var(--font); font-size:20px; font-weight:600; color:#fff; text-decoration:none; display:inline-block; margin-bottom:14px; }
.rf-logo em { font-style:normal; color:#6b9eff; }
.rf-tagline { font-size:13.5px; color:rgba(255,255,255,0.55); line-height:1.65; max-width:320px; margin-bottom:20px; }
.rf-contact { display:flex; flex-direction:column; gap:10px; }
.rf-contact-link { font-size:13px; color:rgba(255,255,255,0.65); text-decoration:none; display:flex; align-items:center; gap:7px; transition:color 0.2s; }
.rf-contact-link:hover { color:#fff; }
.rf-cta { display:inline-flex; align-items:center; height:38px; padding:0 18px; border-radius:8px; background:#215bee; color:#fff !important; font-size:13px; font-weight:600; text-decoration:none; box-shadow:0 6px 18px rgba(33,91,238,0.35); transition:background 0.2s; width:fit-content; }
.rf-cta:hover { background:#3b72f5; }
.rf-col-title { font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin:0 0 14px; }
.rf-col a { display:block; font-size:13px; color:rgba(255,255,255,0.62); text-decoration:none; padding:3px 0; transition:color 0.15s; line-height:1.5; }
.rf-col a:hover { color:#fff; }
.rf-bottom { padding:20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.rf-bottom p { font-size:12px; color:rgba(255,255,255,0.3); margin:0; }
.rf-bottom a { color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.15s; }
.rf-bottom a:hover { color:rgba(255,255,255,0.8); }
/* Keep old .site-footer alias working */
.site-footer { display:none; }

/* BREADCRUMB */
.breadcrumb-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border-soft); padding: 12px clamp(20px,5vw,60px); margin-top: 64px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-muted); max-width: 1120px; margin: 0 auto; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span.sep { color: #ccc; }
.breadcrumb span.current { color: var(--ink); font-weight: 500; }

/* ARTICLE HERO */
.article-hero { background: radial-gradient(ellipse 90% 62% at 50% -4%, rgba(37,99,255,0.38), transparent 60%), linear-gradient(180deg, #16082f 0%, #14062d 100%); padding: clamp(48px,8vw,80px) clamp(20px,5vw,60px) 0; color: var(--ink-on-dark); text-align: center; overflow: hidden; }
.article-hero-inner { max-width: 820px; margin: 0 auto; }
.art-category { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-pale); background: rgba(120,152,235,0.14); border: 1px solid rgba(120,152,235,0.28); padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; text-decoration: none; }
.article-hero h1 { font-family: var(--font); font-size: clamp(26px,4.5vw,48px); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: #fff; text-wrap: balance; margin-bottom: 18px; }
.art-meta { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: 13px; color: rgba(244,244,246,0.6); margin-bottom: 32px; }
.art-meta .sep { opacity: 0.3; }
.art-meta strong { color: rgba(244,244,246,0.85); }
.hero-img-wrap { max-width: 900px; margin: 0 auto; border-radius: 16px 16px 0 0; overflow: hidden; line-height: 0; box-shadow: 0 -2px 0 rgba(120,152,235,0.3), 0 30px 80px rgba(0,0,0,0.4); }
.hero-img-wrap img { width: 100%; height: auto; aspect-ratio: 16/8; object-fit: cover; display: block; }

/* LAYOUT */
.article-layout { max-width: 1120px; margin: 0 auto; padding: clamp(40px,6vw,72px) clamp(20px,5vw,60px); display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; gap: 0; } .article-sidebar { display: none; } }

/* ARTICLE BODY */
.article-body { min-width: 0; }
.article-body h2 { font-family: var(--font); font-size: clamp(22px,3vw,30px); font-weight: 600; color: var(--ink); line-height: 1.2; letter-spacing: -0.015em; margin: 48px 0 16px; border-top: 2px solid var(--border-soft); padding-top: 36px; }
.article-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.article-body h3 { font-family: var(--font-body); font-size: clamp(17px,2vw,20px); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin: 28px 0 10px; }
.article-body p { font-size: 16.5px; color: var(--ink); line-height: 1.78; margin-bottom: 20px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(33,91,238,0.25); transition: border-color 0.15s; }
.article-body a:hover { border-bottom-color: var(--blue); }
.article-body ul, .article-body ol { margin: 16px 0 20px 0; padding-left: 22px; }
.article-body li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; color: var(--ink); }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body em { font-style: italic; }

/* INLINE IMAGE */
.inline-img { margin: 32px 0; border-radius: 14px; overflow: hidden; line-height: 0; }
.inline-img img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.inline-img figcaption { font-size: 12.5px; color: var(--ink-muted); padding: 8px 0 0; font-style: italic; line-height: 0; padding-bottom: 0; line-height: 1.4; }

/* STAT BOXES */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin: 28px 0; }
.stat-box { background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 14px; padding: 22px 18px; text-align: center; }
.stat-num { font-family: var(--font-body); font-size: 34px; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; line-height: 1; display: block; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 500; color: var(--ink-muted); line-height: 1.4; }

/* CALLOUT BOXES */
.callout { border-radius: 14px; padding: 22px 24px; margin: 28px 0; display: flex; gap: 16px; }
.callout.blue { background: rgba(33,91,238,0.06); border: 1px solid rgba(33,91,238,0.2); }
.callout.green { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.25); }
.callout.amber { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.25); }
.callout.dark { background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37,99,255,0.22), transparent 62%), linear-gradient(160deg, #16082f, #14062d); border: 1px solid var(--border-dark); color: var(--ink-on-dark); }
.callout-icon { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.callout-body { flex: 1; min-width: 0; }
.callout-body strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.callout.dark .callout-body strong { color: #fff; }
.callout-body p { font-size: 14.5px; line-height: 1.65; margin: 0; }
.callout.dark .callout-body p { color: rgba(244,244,246,0.78); }

/* CASE STUDY */
.case-study { background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37,99,255,0.20), transparent 62%), linear-gradient(160deg, #15072e, #14062d); border-radius: 18px; padding: clamp(24px,3vw,36px); margin: 36px 0; color: var(--ink-on-dark); border: 1px solid var(--border-dark); }
.cs-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-pale); margin-bottom: 12px; display: block; }
.case-study h3 { font-family: var(--font-body); font-size: clamp(18px,2.2vw,22px); font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em; }
.case-study p { font-size: 15px; color: rgba(244,244,246,0.78); line-height: 1.7; margin-bottom: 16px; }
.cs-results { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin-top: 20px; }
.cs-result { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px 14px; text-align: center; }
.cs-result-num { font-family: var(--font-body); font-size: 26px; font-weight: 800; color: var(--blue-light); letter-spacing: -0.02em; line-height: 1; display: block; margin-bottom: 6px; }
.cs-result-label { font-size: 12px; color: rgba(244,244,246,0.6); line-height: 1.35; }

/* TOC */
.toc { background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 14px; padding: 22px 24px; margin: 0 0 36px; }
.toc-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
.toc ol { padding-left: 18px; }
.toc li { font-size: 14.5px; margin-bottom: 8px; line-height: 1.4; }
.toc a { color: var(--blue); text-decoration: none; border-bottom: none; font-weight: 500; transition: opacity 0.15s; }
.toc a:hover { opacity: 0.75; }

/* FAQ */
.faq-section { margin: 48px 0 0; border-top: 2px solid var(--border-soft); padding-top: 36px; }
.faq-section h2 { font-family: var(--font); font-size: clamp(22px,3vw,30px); font-weight: 600; margin-bottom: 24px; border-top: none; padding-top: 0; margin-top: 0; }
.faq-item { border: 1px solid var(--border-soft); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: var(--bg-soft); }
.faq-item[open] { border-color: var(--border); background: #fff; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer; list-style: none; font-family: var(--font-body); font-size: 15.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; margin-left: 16px; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--ink-muted); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 20px 18px; font-size: 15px; color: var(--ink-muted); line-height: 1.72; }
.faq-a strong { color: var(--ink); }

/* ARTICLE CTA */
.article-cta { background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37,99,255,0.26), transparent 62%), linear-gradient(160deg, #15072e, #14062d); border-radius: 18px; padding: clamp(28px,4vw,44px); text-align: center; margin: 48px 0; border: 1px solid var(--border-dark); }
.article-cta h3 { font-family: var(--font); font-size: clamp(22px,3vw,30px); font-weight: 600; color: #fff; margin-bottom: 12px; letter-spacing: -0.015em; }
.article-cta h3 em { font-style: italic; color: var(--blue-light); }
.article-cta p { font-size: 15px; color: rgba(244,244,246,0.72); margin-bottom: 22px; line-height: 1.65; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: white; padding: 0 28px; height: 50px; border-radius: 10px; font-family: var(--font-body); font-size: 15px; font-weight: 600; text-decoration: none; border: none; box-shadow: 0 12px 32px rgba(33,91,238,0.45); transition: background 0.2s, transform 0.2s; }
.cta-btn:hover { background: var(--blue-bright); transform: translateY(-2px); }
.cta-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* SIDEBAR */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.sidebar-card h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
.sidebar-card ul { list-style: none; }
.sidebar-card li { margin-bottom: 10px; }
.sidebar-card li a { font-size: 14px; color: var(--blue); text-decoration: none; font-weight: 500; line-height: 1.4; display: block; border-bottom: none; }
.sidebar-card li a:hover { text-decoration: underline; }
.author-card { background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37,99,255,0.18), transparent 62%), linear-gradient(160deg, #15072e, #14062d); border-color: var(--border-dark); }
.author-card h4 { color: rgba(244,244,246,0.5); }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(120,152,235,0.4); margin-bottom: 12px; object-fit: cover; }
.author-name { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.author-title { font-size: 13px; color: rgba(244,244,246,0.6); margin-bottom: 10px; }
.author-bio { font-size: 13.5px; color: rgba(244,244,246,0.72); line-height: 1.6; }

/* RELATED POSTS */
.related-posts { background: var(--bg-soft); border-top: 1px solid var(--border-soft); padding: clamp(40px,6vw,72px) clamp(20px,5vw,60px); }
.related-posts h2 { font-family: var(--font); font-size: clamp(22px,3vw,30px); font-weight: 600; margin-bottom: 28px; max-width: 1120px; margin-left: auto; margin-right: auto; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; max-width: 1120px; margin: 0 auto; }
.related-card { background: var(--bg); border: 1px solid var(--border-soft); border-radius: 14px; overflow: hidden; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(12,15,18,0.08); }
.related-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.related-card-body { padding: 16px 18px; }
.related-card-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.related-card h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; }

/* FOOTER */
.site-footer { background: #0a0418; border-top: 1px solid rgba(255,255,255,0.06); padding: 32px clamp(20px,5vw,60px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font); font-size: 18px; font-weight: 700; color: rgba(244,244,246,0.55); text-decoration: none; }
.footer-logo em { font-style: normal; color: var(--blue-light); opacity: 0.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(244,244,246,0.4); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(244,244,246,0.75); }

/* REVEAL ANIMATION */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.visible { opacity: 1; transform: none; }
}

/* BLOG INDEX CARDS */
.blog-index { background: var(--bg); }
.blog-hero { background: radial-gradient(ellipse 90% 62% at 50% -4%, rgba(37,99,255,0.42), transparent 60%), linear-gradient(180deg, #16082f 0%, #14062d 100%); padding: clamp(80px,10vw,120px) clamp(20px,5vw,60px) clamp(48px,7vw,72px); text-align: center; color: var(--ink-on-dark); }
.blog-hero h1 { font-family: var(--font); font-size: clamp(32px,5vw,56px); font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: -0.02em; }
.blog-hero h1 em { font-style: italic; color: var(--blue-light); }
.blog-hero p { font-size: clamp(15px,1.8vw,18px); color: rgba(244,244,246,0.72); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.blog-filters { background: var(--bg-soft); border-bottom: 1px solid var(--border-soft); padding: 16px clamp(20px,5vw,60px); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-soft); background: var(--bg); color: var(--ink-muted); transition: all 0.2s; text-decoration: none; }
.filter-btn.active, .filter-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.blog-grid-wrap { max-width: 1120px; margin: 0 auto; padding: clamp(40px,6vw,72px) clamp(20px,5vw,60px); }
.blog-grid-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: var(--bg); border: 1px solid var(--border-soft); border-radius: 18px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(12,15,18,0.09); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.blog-card h2 { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 10px; letter-spacing: -0.01em; }
.blog-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--ink-muted); border-top: 1px solid var(--border-soft); padding-top: 14px; margin-top: auto; }
.read-more { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; }
.read-more svg { width: 13px; height: 13px; }
.blog-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; }
.blog-card.featured .blog-card-img { height: 100%; }
@media (max-width: 700px) { .blog-card.featured { grid-column: span 1; display: flex; flex-direction: column; } .blog-card.featured .blog-card-img { height: 200px; } }
