/* ═══════════════════════════════════════════════════════════════
   PDFToolShack — PDF Tips Blog — Shared Stylesheet
   Used by: index.html, category/*.html, tag/*.html,
            archive/*.html, posts/*.html
   Upload to: /pdf-tips/blog.css
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --bg-site:       #0a0c12;
  --bg-card:       #0e1119;
  --bg-card2:      #0b0e16;
  --border-subtle: rgba(255,255,255,0.07);
  --border-card:   rgba(255,255,255,0.06);
  --text-primary:  #eef1f7;
  --text-secondary:#aab2c6;
  --text-muted:    #727b91;
  --accent:        #e53e3e;
  --accent-soft:   rgba(229,62,62,0.10);
  --accent-line:   rgba(229,62,62,0.30);
  --accent-2:      #c53030;
  --ok:            #e53e3e;
  --grad-main:     linear-gradient(135deg,#e53e3e,#dd6b20,#e53e3e);
  --grad-text:     linear-gradient(135deg,#e53e3e 0%,#f56565 45%,#dd6b20 100%);
  --font-display:  'Sora','Segoe UI',system-ui,sans-serif;
  --font-body:     'Inter','Segoe UI',system-ui,sans-serif;
  --transition:    all 0.2s ease;
  --radius-card:   14px;
  --radius-pill:   999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-site); color: var(--text-secondary);
  font-family: var(--font-body); font-size: 15px; line-height: 1.7;
  padding-top: 68px;
  background-image:
    radial-gradient(1100px 680px at 16% 8%, rgba(229,62,62,.07), transparent 58%),
    radial-gradient(900px 620px at 88% 92%, rgba(221,107,32,.04), transparent 60%);
  background-attachment: fixed;
}

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── NAVBAR ── */
.blog-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,12,18,0.92); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: 68px; display: flex; align-items: center;
  overflow: visible;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo .mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px -4px rgba(229,62,62,.5);
}
.nav-logo .mark i { color: #fff; font-size: 14px; }
.nav-logo-text { font-family: var(--font-display); line-height: 1.15; }
.nav-logo-text .w1 { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.nav-logo-text .w2 { display: block; font-size: 15px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link-item { color: var(--text-muted); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 13px; padding: 6px 12px; border-radius: 8px; transition: var(--transition); }
.nav-link-item:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link-item.active { color: var(--accent); }
.nav-tools-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  color: var(--text-primary); font-family: var(--font-display);
  font-weight: 700; font-size: 13px; padding: 7px 16px;
  border-radius: var(--radius-pill); text-decoration: none; transition: var(--transition);
}
.nav-tools-btn:hover { background: rgba(229,62,62,.22); color: var(--text-primary); transform: translateY(-1px); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ── NAV SEARCH ── */
.nav-search-wrap { position: relative; }
.nav-search-wrap .fa-magnifying-glass { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 12px; pointer-events: none; }
.nav-search { background: rgba(255,255,255,0.05); border: 1px solid rgba(176,186,209,.3); border-radius: var(--radius-pill); color: var(--text-primary); font-family: var(--font-body); font-size: 13px; padding: 0.4rem 2rem 0.4rem 2.2rem; width: 180px; outline: none; transition: var(--transition); }
.nav-search::placeholder { color: var(--text-muted); }
.nav-search:focus { background: rgba(229,62,62,0.07); border-color: var(--accent-line); box-shadow: 0 0 0 3px rgba(229,62,62,0.10); width: 220px; }
.nav-search-clear { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 14px; cursor: pointer; display: none; line-height: 1; padding: 2px 4px; transition: var(--transition); }
.nav-search-clear:hover { color: var(--text-primary); }
.nav-search-results { display: none; position: absolute; top: calc(100% + 8px); right: 0; width: 360px; background: #0d1020; border: 1px solid var(--border-subtle); border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.6); z-index: 1050; max-height: 420px; overflow-y: auto; }
.nav-search-results.open { display: block; }
.nsr-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--border-subtle); text-decoration: none; transition: var(--transition); }
.nsr-item:last-child { border-bottom: none; }
.nsr-item:hover, .nsr-item.nsr-active { background: var(--accent-soft); }
.nsr-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--accent); flex-shrink: 0; }
.nsr-item:hover .nsr-icon { background: rgba(229,62,62,.22); }
.nsr-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--text-primary); margin-bottom: 1px; }
.nsr-cat { font-size: 11px; color: var(--text-muted); }
.nsr-name mark { background: rgba(229,62,62,0.25); color: var(--accent); border-radius: 2px; padding: 0 2px; font-style: normal; }
.nsr-empty { padding: 16px 14px; font-size: 13px; color: var(--text-muted); text-align: center; }
@media (max-width: 768px) { .nav-search-wrap { display: none; } }

/* ── HERO ── */
.blog-hero {
  background: var(--bg-card2); border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2.75rem; position: relative; overflow: hidden;
  text-align: center;
}
.blog-hero::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,62,62,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,107,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: var(--radius-pill); padding: 0.3rem 1rem;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.blog-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.03em;
  color: var(--text-primary); margin-bottom: 1rem; line-height: 1.15;
}
.blog-hero h1 span {
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.blog-hero-sub { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* breadcrumb */
.blog-breadcrumb { font-family: var(--font-display); font-size: 12px; color: var(--text-muted); margin-bottom: 1rem; }
.blog-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.blog-breadcrumb a:hover { color: var(--accent); }
.blog-breadcrumb span { margin: 0 6px; }

/* ── PAGE BODY ── */
.topband { background: var(--bg-site); }
.blog-page-wrap { padding: 2.5rem 0 3rem; }

/* ── LIGHT BODY (content area below the dark hero) ── */
.blog-light-body {
  background: #f4f6fa; color: #1a2233; padding-bottom: 10px;
}
.blog-light-body .blog-page-wrap { background: #f4f6fa; }

/* Light body text overrides */
.blog-light-body .section-label { color: #727b91; }
.blog-light-body .section-label::after { background: #d8dce6; }

/* Light body cards */
.blog-light-body .post-card { background: #fff; border: 1px solid #e4e8f0; box-shadow: 0 1px 2px rgba(16,24,40,.04),0 8px 24px -16px rgba(16,24,40,.18); backdrop-filter: none; }
.blog-light-body .post-card:hover { border-color: rgba(229,62,62,.25); box-shadow: 0 4px 10px rgba(16,24,40,.07),0 18px 38px -18px rgba(16,24,40,.28); }
.blog-light-body .card-body h3 { color: #0e1422; }
.blog-light-body .card-body p { color: #5a6478; }
.blog-light-body .card-cat { color: var(--accent); background: rgba(229,62,62,.07); border-color: rgba(229,62,62,.18); }
.blog-light-body .card-foot { color: #8a93a7; }
.blog-light-body .card-foot a { color: var(--accent); }
.blog-light-body .card-thumb.g1 { background: linear-gradient(145deg,rgba(229,62,62,.10),rgba(229,62,62,.03)); }
.blog-light-body .card-thumb.g2 { background: linear-gradient(145deg,rgba(221,107,32,.09),rgba(229,62,62,.03)); }
.blog-light-body .card-thumb.g3 { background: linear-gradient(145deg,rgba(229,62,62,.07),rgba(221,107,32,.04)); }

/* Light body listing articles */
.blog-light-body .listing-article { background: #fff; border: 1px solid #e4e8f0; }
.blog-light-body .listing-article:hover { border-color: rgba(229,62,62,.25); box-shadow: 0 4px 20px rgba(16,24,40,.12); }
.blog-light-body .listing-body h2 { color: #0e1422; }
.blog-light-body .listing-body > p { color: #5a6478; }
.blog-light-body .listing-read-link { color: var(--accent); }
.blog-light-body .listing-thumb.g1 { background: linear-gradient(145deg,rgba(229,62,62,.10),rgba(229,62,62,.03)); }
.blog-light-body .listing-thumb.g2 { background: linear-gradient(145deg,rgba(221,107,32,.09),rgba(229,62,62,.03)); }
.blog-light-body .listing-thumb.g3 { background: linear-gradient(145deg,rgba(229,62,62,.08),rgba(221,107,32,.04)); }
.blog-light-body .listing-thumb.g4 { background: linear-gradient(145deg,#fff0f0,#fff4ee); }
.blog-light-body .listing-thumb.g5 { background: linear-gradient(145deg,#fff4ee,#fff0f0); }
.blog-light-body .post-cat { color: var(--accent); background: rgba(229,62,62,.07); border-color: rgba(229,62,62,.18); }
.blog-light-body .post-date, .blog-light-body .post-read { color: #8a93a7; }

/* Light body listing header */
.blog-light-body .listing-header { border-bottom-color: var(--accent); }
.blog-light-body .listing-type-label { color: var(--accent); }
.blog-light-body .listing-title { color: #0e1422; }
.blog-light-body .listing-desc { color: #5a6478; }
.blog-light-body .listing-count { color: #3d0000; background: rgba(229,62,62,.07); border-color: rgba(229,62,62,.22); }
.blog-light-body .back-link { color: var(--accent); }
.blog-light-body .back-link:hover { color: #0e1422; }

/* Light body more-articles list */
.blog-light-body .post-list-item { border-bottom-color: #e4e8f0; }
.blog-light-body .list-num { color: #8a93a7; background: #f4f6fa; border-color: #e4e8f0; }
.blog-light-body .post-list-item:hover .list-num { background: rgba(229,62,62,.07); color: var(--accent); border-color: rgba(229,62,62,.22); }
.blog-light-body .list-body h3 { color: #0e1422; }
.blog-light-body .list-body h3 a:hover { color: var(--accent); }
.blog-light-body .list-body p { color: #5a6478; }
.blog-light-body .list-meta { color: #8a93a7; }

/* Light body pagination */
.blog-light-body .page-btn { background: #fff; border-color: #dde2ee; color: #1a2233; }
.blog-light-body .page-btn:hover { border-color: rgba(229,62,62,.35); color: var(--accent); }
.blog-light-body .page-btn.active { background: rgba(229,62,62,.07); color: var(--accent); border-color: rgba(229,62,62,.25); }
.blog-light-body .page-btn.page-prev, .blog-light-body .page-btn.page-next { color: var(--accent); }

/* Light body CTA strip */
.blog-light-body .cta-strip { background: #0d1117; }
.blog-light-body .cta-strip h3 { color: #f0f4f8; }
.blog-light-body .cta-text p { color: #aab2c6; }

/* Light body sidebar */
.blog-light-body .sidebar-label { color: #8a93a7; border-bottom-color: #e4e8f0; }
.blog-light-body .sidebar-link { color: #5a6478; }
.blog-light-body .sidebar-link:hover { background: rgba(229,62,62,.06); color: #0e1422; }
.blog-light-body .sidebar-link.active { background: rgba(229,62,62,.07); color: var(--accent); border-color: rgba(229,62,62,.22); }
.blog-light-body .archive-count { color: #8a93a7; }
.blog-light-body .sidebar-tag { background: #fff; color: #5a6478; border-color: #dde2ee; }
.blog-light-body .sidebar-tag:hover { background: rgba(229,62,62,.07); color: var(--accent); border-color: rgba(229,62,62,.22); }
.blog-light-body .search-field-wrap input { background: #fff; border-color: #dde2ee; color: #1a2233; }
.blog-light-body .search-field-wrap input:focus { border-color: rgba(229,62,62,.4); background: #fff8f8; }
.blog-light-body .search-results-box { background: #fff; border-color: #e4e8f0; }
.blog-light-body .sr-item:hover, .blog-light-body .sr-item.sr-active { background: rgba(229,62,62,.06); }
.blog-light-body .sr-title { color: #0e1422; }
.blog-light-body .sr-meta { color: var(--accent); }
.blog-light-body .sr-snippet { color: #5a6478; }
.blog-light-body .sidebar-quick-link { color: #5a6478; }
.blog-light-body .sidebar-quick-link:hover { background: rgba(229,62,62,.06); color: var(--accent); }
.blog-light-body .sidebar-quick-link i { color: var(--accent); }
.blog-light-body .sidebar-cta-box { background: #fff; border-color: rgba(229,62,62,.22); }
.blog-light-body .sidebar-cta-box p { color: #5a6478; }

/* Light body article */
.blog-light-body .article-header { border-bottom-color: #e4e8f0; }
.blog-light-body .article-header h1 { color: #0e1422; }
.blog-light-body .article-body { color: #3a4455; }
.blog-light-body .article-body strong { color: #0e1422; }
.blog-light-body .article-body h2 { color: #0e1422; border-bottom-color: #e4e8f0; }
.blog-light-body .article-body h3 { color: #0e1422; }
.blog-light-body .article-body a { color: var(--accent); border-bottom-color: rgba(229,62,62,.22); }
.blog-light-body .article-body a:hover { color: #0e1422; border-color: var(--accent); }
.blog-light-body .article-callout { background: rgba(229,62,62,.06); border-color: rgba(229,62,62,.22); border-left-color: var(--accent); color: #3d0000; }
.blog-light-body .article-callout strong { color: var(--accent); }
.blog-light-body .article-footer { border-top-color: #e4e8f0; }
.blog-light-body .article-tags { color: #8a93a7; }
.blog-light-body .article-cta { background: #fff; border-color: rgba(229,62,62,.22); }
.blog-light-body .article-cta p { color: #5a6478; }
.blog-light-body .related-grid .post-card { background: #fff; border-color: #e4e8f0; }

/* ── TWO-COLUMN LAYOUT ── */
.blog-layout { display: flex; flex-direction: row; gap: 2.5rem; align-items: flex-start; }
.blog-main { flex: 1; min-width: 0; }
.blog-sidebar { width: 252px; flex-shrink: 0; }
@media (max-width: 992px) { .blog-layout { flex-direction: column; } .blog-sidebar { width: 100%; } }

/* ── FEATURED ARTICLE ── */
.featured-post {
  display: flex; background: var(--bg-card);
  border: 1px solid rgba(176,186,209,.22); border-radius: var(--radius-card);
  overflow: hidden; margin-bottom: 2.5rem; transition: var(--transition);
  position: relative;
}
.featured-post::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-card);
  padding: 1px; background: var(--grad-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.featured-post:hover::before { opacity: 1; }
.featured-post:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.featured-thumb {
  width: 260px; flex-shrink: 0; min-height: 220px;
  background: linear-gradient(145deg, rgba(229,62,62,0.20), rgba(221,107,32,0.10), rgba(229,62,62,0.06));
  display: flex; align-items: center; justify-content: center;
}
.featured-body { flex: 1; padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.featured-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.featured-label::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--grad-main); border-radius: 1px; }
.featured-body h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.1rem, 2.5vw, 1.5rem); letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.featured-body h2 a { color: inherit; text-decoration: none; }
.featured-body h2 a:hover { color: var(--accent); }
.featured-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.featured-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.featured-cat { background: var(--accent-soft); color: var(--accent); font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 3px 10px; border-radius: 10px; border: 1px solid var(--accent-line); }
.featured-date, .featured-read { font-size: 12px; color: var(--text-muted); }
.btn-read-featured { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 13px; padding: 9px 20px; border-radius: var(--radius-pill); text-decoration: none; transition: var(--transition); align-self: flex-start; }
.btn-read-featured:hover { opacity: 0.88; color: #fff; transform: translateY(-1px); }
@media (max-width: 768px) { .featured-post { flex-direction: column; } .featured-thumb { width: 100%; min-height: 140px; } }

/* ── SECTION LABEL ── */
.section-label { font-family: var(--font-display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 10px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border-subtle); }

/* ── RECENT GRID ── */
.recent-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 2.5rem; }
@media (max-width: 900px) { .recent-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .recent-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--bg-card); border: 1px solid rgba(176,186,209,.2); border-radius: var(--radius-card); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.post-card:hover { border-color: var(--accent-line); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.card-thumb { height: 120px; display: flex; align-items: center; justify-content: center; }
.card-thumb.g1 { background: linear-gradient(145deg,rgba(229,62,62,0.18),rgba(229,62,62,0.05)); }
.card-thumb.g2 { background: linear-gradient(145deg,rgba(221,107,32,0.15),rgba(221,107,32,0.04)); }
.card-thumb.g3 { background: linear-gradient(145deg,rgba(229,62,62,0.12),rgba(221,107,32,0.05)); }
.card-body { flex: 1; padding: 16px; display: flex; flex-direction: column; }
.card-cat { font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 2px 8px; border-radius: 8px; display: inline-block; margin-bottom: 8px; align-self: flex-start; }
.card-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-primary); line-height: 1.4; margin-bottom: 8px; letter-spacing: -0.01em; }
.card-body h3 a { color: inherit; text-decoration: none; }
.card-body h3 a:hover { color: var(--accent); }
.card-body p { font-size: 12px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 12px; }
.card-foot { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--text-muted); margin-top: auto; }
.card-foot a { color: var(--accent); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 12px; transition: var(--transition); }
.card-foot a:hover { color: #fff; }

/* ── MORE ARTICLES LIST ── */
.post-list-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-subtle); transition: var(--transition); }
.post-list-item:last-child { border-bottom: none; }
.post-list-item:hover .list-num { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-line); }
.list-num { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--text-muted); min-width: 36px; height: 36px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.list-body { flex: 1; min-width: 0; }
.list-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-primary); margin-bottom: 4px; line-height: 1.4; letter-spacing: -0.01em; }
.list-body h3 a { color: inherit; text-decoration: none; }
.list-body h3 a:hover { color: var(--accent); }
.list-body p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 4px; }
.list-meta { font-size: 11px; color: var(--text-muted); }

/* ── LISTING ROWS (category/tag/archive pages) ── */
.listing-article { display: flex; background: var(--bg-card); border: 1px solid rgba(176,186,209,.18); border-radius: 10px; overflow: hidden; margin-bottom: 10px; transition: var(--transition); }
.listing-article:hover { border-color: var(--accent-line); box-shadow: 0 4px 20px rgba(0,0,0,0.3); transform: translateY(-1px); }
.listing-thumb { width: 110px; min-height: 110px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.listing-thumb.g1 { background: linear-gradient(145deg,rgba(229,62,62,0.20),rgba(229,62,62,0.06)); }
.listing-thumb.g2 { background: linear-gradient(145deg,rgba(221,107,32,0.16),rgba(221,107,32,0.04)); }
.listing-thumb.g3 { background: linear-gradient(145deg,rgba(229,62,62,0.14),rgba(221,107,32,0.05)); }
.listing-thumb.g4 { background: linear-gradient(145deg,rgba(229,62,62,0.12),rgba(221,107,32,0.06)); }
.listing-thumb.g5 { background: linear-gradient(145deg,rgba(221,107,32,0.12),rgba(229,62,62,0.05)); }
.listing-body { flex: 1; padding: 14px 18px; display: flex; flex-direction: column; justify-content: center; }
.listing-body h2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); line-height: 1.35; margin: 5px 0 6px; }
.listing-body h2 a { color: inherit; text-decoration: none; }
.listing-body h2 a:hover { color: var(--accent); }
.listing-body > p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0 0 10px; }
.listing-read-link { font-size: 12px; font-weight: 700; color: var(--accent); text-decoration: none; align-self: flex-start; font-family: var(--font-display); transition: var(--transition); }
.listing-read-link:hover { color: #fff; }

/* ── LISTING HEADER ── */
.listing-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--accent); }
.listing-type-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); margin-bottom: 4px; font-family: var(--font-display); }
.listing-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text-primary); margin: 0; line-height: 1.2; letter-spacing: -0.02em; }
.listing-desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; margin-bottom: 0; }
.listing-count { font-size: 12px; color: var(--text-secondary); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 4px 14px; border-radius: var(--radius-pill); white-space: nowrap; align-self: center; font-family: var(--font-display); font-weight: 700; }

/* back link */
.back-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--accent); text-decoration: none; margin-bottom: 1.25rem; font-family: var(--font-display); font-weight: 600; transition: var(--transition); }
.back-link:hover { color: #fff; }
.back-link i { font-size: 11px; }

/* ── POST META ── */
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 4px; }
.post-cat { background: var(--accent-soft); color: var(--accent); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 2px 9px; border-radius: 10px; font-family: var(--font-display); border: 1px solid var(--accent-line); }
.post-date, .post-read { font-size: 11px; color: var(--text-muted); }

/* ── PAGINATION ── */
.blog-pagination { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 1.5rem 0; }
.page-btn { font-size: 13px; padding: 6px 13px; border: 1px solid var(--border-subtle); border-radius: 8px; color: var(--text-secondary); background: var(--bg-card); text-decoration: none; transition: var(--transition); font-family: var(--font-display); font-weight: 600; }
.page-btn:hover { border-color: var(--accent-line); color: var(--accent); }
.page-btn.active { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-line); font-weight: 700; }
.page-btn.page-prev, .page-btn.page-next { color: var(--accent); }
.page-ellipsis { color: var(--text-muted); font-size: 13px; padding: 0 4px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--bg-card2); border: 1px solid var(--accent-line); border-radius: 12px;
  padding: 1.4rem 1.75rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; margin-bottom: 1rem; margin-top: 1.5rem;
  position: relative; overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; inset: 0; border-radius: 12px; padding: 1px; background: var(--grad-main); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.cta-strip h3 { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.cta-text p { font-size: 13px; color: var(--text-muted); margin: 0; }
.btn-cta { flex-shrink: 0; display: inline-block; background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 22px; border-radius: var(--radius-pill); text-decoration: none; white-space: nowrap; transition: var(--transition); font-family: var(--font-display); }
.btn-cta:hover { opacity: 0.88; color: #fff; transform: translateY(-1px); }
@media (max-width: 768px) { .cta-strip { flex-direction: column; text-align: center; } }

/* ── SIDEBAR ── */
.sidebar-section { margin-bottom: 1.75rem; }
.sidebar-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); border-bottom: 1px solid var(--border-subtle); padding-bottom: 6px; margin-bottom: 10px; }
.sidebar-link { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; padding: 5px 8px; border-radius: 7px; line-height: 1.45; transition: var(--transition); font-family: var(--font-display); font-weight: 500; }
.sidebar-link:hover { background: var(--accent-soft); color: var(--text-primary); }
.sidebar-link.active { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line); }
.archive-count { color: var(--text-muted); font-size: 11px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.sidebar-tag { display: inline-block; font-size: 11px; padding: 3px 9px; border-radius: 12px; background: rgba(255,255,255,0.04); color: var(--text-muted); border: 1px solid var(--border-subtle); text-decoration: none; transition: var(--transition); font-family: var(--font-display); font-weight: 600; }
.sidebar-tag:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-line); }
.search-section { margin-bottom: 1.75rem; }
.search-field-wrap { position: relative; }
.search-field-wrap input { width: 100%; padding: 9px 30px 9px 12px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; font-size: 13px; color: var(--text-primary); outline: none; box-sizing: border-box; transition: var(--transition); font-family: var(--font-body); }
.search-field-wrap input:focus { border-color: var(--accent-line); background: rgba(229,62,62,0.04); }
.search-field-wrap input::placeholder { color: var(--text-muted); }
.search-clear-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--text-muted); cursor: pointer; display: none; padding: 2px 4px; line-height: 1; }
.search-clear-btn:hover { color: var(--text-primary); }
.search-results-box { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.5); z-index: 500; max-height: 360px; overflow-y: auto; }
.sr-item { display: block; padding: 10px 13px; border-bottom: 1px solid var(--border-subtle); text-decoration: none; transition: var(--transition); }
.sr-item:last-child { border-bottom: none; }
.sr-item:hover, .sr-item.sr-active { background: var(--accent-soft); }
.sr-title { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; line-height: 1.35; font-family: var(--font-display); }
.sr-meta { font-size: 10px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; font-family: var(--font-display); }
.sr-snippet { font-size: 11px; color: var(--text-muted); line-height: 1.45; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.sr-empty { padding: 14px 13px; font-size: 12px; color: var(--text-muted); text-align: center; }
.sr-item mark { background: rgba(229,62,62,0.20); color: var(--accent); border-radius: 2px; padding: 0 2px; font-style: normal; }
.sidebar-quick-link { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-muted); text-decoration: none; padding: 6px 8px; border-radius: 7px; transition: var(--transition); font-family: var(--font-display); font-weight: 600; }
.sidebar-quick-link:hover { background: var(--accent-soft); color: var(--accent); }
.sidebar-quick-link i { font-size: 13px; color: var(--accent); }

/* ── FOOTER ── */
.blog-footer { background: #080a10; border-top: 1px solid var(--border-subtle); margin-top: 3rem; padding: 2.5rem 0 0; }
.blog-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; }
.blog-footer-inner p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.blog-footer-inner p a { color: var(--accent); text-decoration: none; }
.blog-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; }
.blog-footer-logo .mark { width: 30px; height: 30px; border-radius: 7px; background: var(--accent); display: grid; place-items: center; }
.blog-footer-logo .mark i { color: #fff; font-size: 13px; }
.blog-footer-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--text-primary); }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links strong { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 4px; display: block; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }
.footer-links a i { font-size: 11px; color: var(--accent); margin-right: 6px; width: 12px; }
.blog-footer-bottom { border-top: 1px solid var(--border-subtle); padding: 1rem 0; text-align: center; }
.blog-footer-bottom p { font-size: 12px; color: var(--text-muted); margin: 0; }
.blog-footer-bottom a { color: var(--text-muted); text-decoration: none; }
.blog-footer-bottom a:hover { color: var(--accent); }
.footer-network-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 8px; }
.footer-network-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-network-links a { font-size: 12px; color: var(--text-muted); border: 1px solid var(--border-subtle); border-radius: 999px; padding: 3px 10px; transition: var(--transition); text-decoration: none; }
.footer-network-links a:hover { color: var(--accent); border-color: var(--accent-line); }

/* Sidebar network block */
.sidebar-network { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 16px; margin-bottom: 1.75rem; }
.sidebar-network-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.sidebar-network-link { display: flex; align-items: center; gap: 10px; padding: 8px 0; text-decoration: none; border-bottom: 1px solid var(--border-subtle); transition: var(--transition); }
.sidebar-network-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-network-link:hover .sidebar-network-name { color: var(--accent); }
.sidebar-network-icon { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.sidebar-network-name { font-size: 13px; font-weight: 600; color: var(--text-primary); line-height: 1.2; transition: var(--transition); }
.sidebar-network-desc { font-size: 11px; color: var(--text-muted); line-height: 1.3; }
.blog-light-body .sidebar-network { background: #fff; border-color: #e5e7eb; }
.blog-light-body .sidebar-network-name { color: #0e1422; }
.blog-light-body .sidebar-network-link { border-bottom-color: #f3f4f6; }
.blog-light-body .sidebar-network-link:hover .sidebar-network-name { color: var(--accent); }
@media (max-width: 992px) { .blog-footer-inner { grid-template-columns: 1fr 1fr; } .blog-footer-inner > div:first-child { grid-column: 1 / -1; } }
@media (max-width: 576px) { .blog-footer-inner { grid-template-columns: 1fr; } .blog-footer-inner > div:first-child { grid-column: auto; } }

/* ═══════════════════════════════════════════════════════════════
   POST / ARTICLE PAGE STYLES
═══════════════════════════════════════════════════════════════ */
.article-wrap { max-width: 100%; }
.article-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.article-header h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.03em;
  color: var(--text-primary); line-height: 1.2; margin-top: 0.75rem; margin-bottom: 0;
}
.post-author { font-size: 12px; color: var(--text-muted); }
.article-body { font-size: 15.5px; line-height: 1.85; color: var(--text-secondary); }
.article-body p { margin-bottom: 1.25rem; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-line); transition: var(--transition); }
.article-body a:hover { color: #fff; border-color: var(--accent); }
.article-body h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); letter-spacing: -0.02em;
  color: var(--text-primary); margin: 2.25rem 0 0.85rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-subtle);
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--text-primary);
  margin: 1.75rem 0 0.65rem; line-height: 1.3;
}
.article-list { margin: 0.5rem 0 1.25rem 1.5rem; padding: 0; }
.article-list li { margin-bottom: 0.6rem; font-size: 15.5px; line-height: 1.75; }
.article-list li strong { color: var(--text-primary); }
.article-callout {
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 16px 20px;
  margin: 1.75rem 0; font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.article-callout strong { color: var(--accent); }
.article-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.article-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 1.5rem; font-size: 13px; color: var(--text-muted); }
.article-tags span { font-family: var(--font-display); font-weight: 600; }
.article-cta { background: var(--bg-card); border: 1px solid var(--accent-line); border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.article-cta p { font-size: 14px; color: var(--text-muted); margin: 0; }
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 2rem; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }
.sidebar-cta-box { background: var(--bg-card); border: 1px solid var(--accent-line); border-radius: 10px; padding: 16px; margin-bottom: 1.75rem; }
.sidebar-cta-box p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.sidebar-cta-box .btn-cta { display: block; text-align: center; font-size: 12px; padding: 8px 14px; }

/* ═══════════════════════════════════════════════════════════════
   POST PAGE — HERO META, INTRO, BODY
═══════════════════════════════════════════════════════════════ */
.post-hero-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }
.post-hero-meta i { margin-right: 5px; color: var(--accent); }
.post-hero-meta a { color: rgba(255,255,255,0.75); text-decoration: none; border-bottom: 1px solid rgba(229,62,62,0.4); transition: var(--transition); }
.post-hero-meta a:hover { color: #fff; }

.post-article { font-size: 15.5px; line-height: 1.85; color: var(--text-secondary); }
.post-article p { margin-bottom: 1.25rem; }
.post-article strong { color: var(--text-primary); font-weight: 600; }
.post-article a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-line); transition: var(--transition); }
.post-article a:hover { color: var(--text-primary); border-color: transparent; }
.post-article h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.15rem,2.2vw,1.45rem); letter-spacing: -0.02em; color: var(--text-primary); margin: 2.25rem 0 0.85rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-subtle); line-height: 1.25; }
.post-article h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text-primary); margin: 1.75rem 0 0.65rem; line-height: 1.3; }
.post-article ul, .post-article ol { margin: 0.5rem 0 1.25rem 1.5rem; padding: 0; }
.post-article li { margin-bottom: 0.6rem; font-size: 15.5px; line-height: 1.75; }
.post-article li strong { color: var(--text-primary); }
.post-article code { background: rgba(229,62,62,0.1); color: var(--accent); padding: 2px 6px; border-radius: 4px; font-size: 13px; font-family: monospace; border: 1px solid var(--accent-line); }

.post-intro { font-size: 17px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); }

/* ── Light body overrides for post links ── */
.blog-light-body .post-article { color: #374151; }
.blog-light-body .post-article p { color: #4b5563; }
.blog-light-body .post-article strong { color: #111827; }
.blog-light-body .post-article h2 { color: #0e1422; border-bottom-color: #e5e7eb; }
.blog-light-body .post-article h3 { color: #0e1422; }
.blog-light-body .post-article .cta-strip h3 { color: #f0f4f8; }
.blog-light-body .post-article .cta-text p { color: #aab2c6; }
.post-article .btn-cta, .blog-light-body .post-article .btn-cta { color: #fff !important; border-bottom: none !important; }
.post-article .btn-cta:hover, .blog-light-body .post-article .btn-cta:hover { color: #fff !important; border-bottom: none !important; }
.blog-light-body .post-article li { color: #4b5563; }
.blog-light-body .post-article a { color: var(--accent); border-bottom-color: rgba(229,62,62,0.3); }
.blog-light-body .post-article a:hover { color: #b91c1c; border-color: transparent; }
.blog-light-body .post-article code { background: rgba(229,62,62,0.07); }
.blog-light-body .post-intro { color: #374151; border-bottom-color: #e5e7eb; }

/* ── Read Article link on light background ── */
.blog-light-body .listing-read-link { color: var(--accent); }
.blog-light-body .listing-read-link:hover { color: #111827; }

/* ── Back link on light background ── */
.blog-light-body .back-link { color: var(--accent); }
.blog-light-body .back-link:hover { color: #111827; }

/* ═══════════════════════════════════════════════════════════════
   INFO TABLE
═══════════════════════════════════════════════════════════════ */
.info-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: 10px; border: 1px solid var(--border-subtle); }
.blog-light-body .info-table-wrap { border-color: #e5e7eb; }
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th { background: var(--bg-card2); color: var(--text-primary); font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border-subtle); }
.info-table td { padding: 10px 14px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); vertical-align: top; line-height: 1.55; }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(229,62,62,0.03); }
.blog-light-body .info-table th { background: #f3f4f6; color: #111827; border-bottom-color: #e5e7eb; }
.blog-light-body .info-table td { color: #4b5563; border-bottom-color: #f3f4f6; }
.blog-light-body .info-table tr:hover td { background: rgba(229,62,62,0.04); }
.blog-light-body .info-table strong { color: #111827; }

/* ═══════════════════════════════════════════════════════════════
   TASK GRID (tool cards in post body)
═══════════════════════════════════════════════════════════════ */
.task-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 1.5rem 0 2rem; }
.task-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 18px; display: flex; gap: 14px; align-items: flex-start; transition: var(--transition); }
.task-card:hover { border-color: var(--accent-line); box-shadow: 0 4px 16px rgba(229,62,62,0.1); transform: translateY(-1px); }
.task-icon { font-size: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 24px; text-align: center; }
.task-body { flex: 1; }
.task-body strong { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.task-body p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0 0 8px; }
.task-link { font-size: 12px; font-weight: 700; color: var(--accent); text-decoration: none; font-family: var(--font-display); transition: var(--transition); display: inline-flex; align-items: center; gap: 5px; border-bottom: none !important; }
.task-link:hover { gap: 8px; }

.blog-light-body .task-card { background: #fff; border-color: #e5e7eb; }
.blog-light-body .task-card:hover { border-color: rgba(229,62,62,0.4); }
.blog-light-body .task-body strong { color: #111827; }
.blog-light-body .task-body p { color: #6b7280; }

/* ═══════════════════════════════════════════════════════════════
   KEY TAKEAWAYS BOX
═══════════════════════════════════════════════════════════════ */
.post-takeaways { background: var(--accent-soft); border: 1px solid var(--accent-line); border-left: 3px solid var(--accent); border-radius: 10px; padding: 18px 22px; margin: 2rem 0; }
.takeaways-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--accent); margin-bottom: 10px; }
.takeaways-label i { margin-right: 6px; }
.post-takeaways ul { margin: 0; padding-left: 1.25rem; }
.post-takeaways li { font-size: 14px; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.6; }
.post-takeaways li:last-child { margin-bottom: 0; }
.blog-light-body .post-takeaways { background: rgba(229,62,62,0.05); border-color: rgba(229,62,62,0.2); }
.blog-light-body .post-takeaways li { color: #374151; }
.blog-light-body .post-takeaways a { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   POST TAGS FOOTER
═══════════════════════════════════════════════════════════════ */
.post-meta-footer { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border-subtle); }
.blog-light-body .post-meta-footer { border-top-color: #e5e7eb; }
.post-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.post-tags-label { font-size: 12px; font-weight: 700; font-family: var(--font-display); color: var(--text-muted); margin-right: 2px; }
.post-tag { display: inline-block; font-size: 11px; padding: 3px 10px; border-radius: 12px; background: rgba(255,255,255,0.04); color: var(--text-muted); border: 1px solid var(--border-subtle); text-decoration: none; transition: var(--transition); font-family: var(--font-display); font-weight: 600; }
.post-tag:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-line); }
.blog-light-body .post-tag { background: #f3f4f6; color: #6b7280; border-color: #e5e7eb; }
.blog-light-body .post-tag:hover { background: rgba(229,62,62,0.08); color: var(--accent); border-color: rgba(229,62,62,0.3); }
