/* ============================================================
   EVOLUX BLOG — main.css
   Replica o design do artigo HTML aprovado
   ============================================================ */

/* RESET & VARIÁVEIS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --preto: #111111;
  --amarelo: #F5C800;
  --amarelo-hover: #E0B600;
  --bg: #FAFAF8;
  --bg2: #F2F1EE;
  --bg3: #ECEAE5;
  --branco: #FFFFFF;
  --texto: #1A1A1A;
  --texto2: #5A5A55;
  --texto3: #9A9A94;
  --borda: #E2E0DA;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --max: 1100px;
  --art: 720px;
  --r: 4px;
  --r-lg: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--texto);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   HEADER / NAV — sobrescreve Astra completamente
   ============================================================ */
#masthead,
.site-header,
.ast-primary-header-bar {
  all: unset;
  display: block;
}

.evolux-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--preto);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: none;
}

.evolux-nav-logo img { height: 34px; width: auto; }

.evolux-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.evolux-nav-links a {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  transition: color .2s;
}

.evolux-nav-links a:hover,
.evolux-nav-links a.active { color: #fff; }

.evolux-nav-cta {
  background: var(--amarelo) !important;
  color: var(--preto) !important;
  padding: 9px 22px !important;
  border-radius: var(--r) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

/* ============================================================
   HERO DO ARTIGO
   ============================================================ */
.article-hero {
  background: var(--preto);
  padding: 4rem 2.5rem 3.5rem;
  position: relative;
}

.article-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--amarelo);
}

.article-hero-inner { max-width: var(--art); margin: 0 auto; }

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.article-breadcrumb a:hover { color: var(--amarelo); }
.article-breadcrumb span { color: rgba(255,255,255,.2); }

.article-category {
  display: inline-block;
  background: rgba(245,200,0,.12);
  color: var(--amarelo);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(245,200,0,.2);
  margin-bottom: 1.25rem;
}

.article-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 1.25rem;
}

.article-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amarelo);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.article-author { display: flex; align-items: center; gap: 8px; }

.article-author-avatar {
  width: 32px; height: 32px;
  background: var(--amarelo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--preto);
  flex-shrink: 0;
  overflow: hidden;
}

.article-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-author-name { font-size: 13px; color: rgba(255,255,255,.6); }
.article-author-name strong { color: rgba(255,255,255,.9); font-weight: 600; }
.article-date { font-size: 12px; color: rgba(255,255,255,.35); }

.article-read {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  border-left: 2px solid var(--amarelo);
  padding-left: 1.25rem;
}

/* ============================================================
   LAYOUT PRINCIPAL (artigo + sidebar)
   ============================================================ */
.article-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 4rem;
  align-items: start;
}

.article-layout .article-body { grid-column: 1; grid-row: 1; }
.article-layout .sidebar { grid-column: 2; grid-row: 1; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { position: sticky; top: 84px; }

.sidebar-toc {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 2.5px solid var(--amarelo);
}

.sidebar-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--texto3);
  margin-bottom: 1rem;
}

.toc-list { list-style: none; }

.toc-list li {
  padding: 5px 0;
  border-bottom: 1px solid var(--borda);
}

.toc-list li:last-child { border-bottom: none; }

.toc-list a {
  font-size: 13px;
  color: var(--texto2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  transition: color .2s;
}

.toc-list a:hover { color: var(--amarelo); }

.toc-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amarelo);
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1.5;
}

.sidebar-cta {
  background: var(--preto);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border-top: 2.5px solid var(--amarelo);
}

.sidebar-cta-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.sidebar-cta-desc { font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-cta .btn-primary { width: 100%; justify-content: center; display: flex; padding: 11px; font-size: 13px; }

.wpp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  margin-top: .6rem;
}

/* ============================================================
   BOTÃO PRIMÁRIO
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amarelo);
  color: var(--preto);
  padding: 13px 26px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}

.btn-primary:hover { background: var(--amarelo-hover); }

/* ============================================================
   CORPO DO ARTIGO
   ============================================================ */
.article-body { min-width: 0; }

.article-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--preto);
  margin: 2.5rem 0 1rem;
  padding-top: .5rem;
}

.article-body h2 em { font-family: var(--serif); font-style: italic; color: var(--amarelo); }

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--preto);
  margin: 1.75rem 0 .75rem;
}

.article-body p {
  font-size: .975rem;
  color: var(--texto2);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.article-body strong { color: var(--preto); font-weight: 600; }

/* Links */
.link-interno { color: var(--preto); font-weight: 600; border-bottom: 1.5px solid var(--amarelo); }
.link-externo { color: var(--texto2); font-weight: 500; border-bottom: 1px solid var(--borda); }
.link-interno:hover, .link-externo:hover { color: var(--amarelo-hover); }

/* Bullets */
.article-body ul.bullets { list-style: none; margin: 1.25rem 0 1.5rem; padding: 0; }

.article-body ul.bullets li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--borda);
  font-size: .95rem;
  color: var(--texto2);
  line-height: 1.7;
}

.article-body ul.bullets li:last-child { border-bottom: none; }

.bullet-dot {
  width: 22px; height: 22px;
  background: var(--preto);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-dot svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Numerados */
.article-body ol.numbered { list-style: none; margin: 1.25rem 0 1.5rem; counter-reset: item; }

.article-body ol.numbered li {
  display: flex;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--borda);
  font-size: .95rem;
  color: var(--texto2);
  line-height: 1.7;
  counter-increment: item;
}

.article-body ol.numbered li:last-child { border-bottom: none; }

.ol-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--amarelo);
  line-height: 1.2;
  flex-shrink: 0;
  width: 28px;
}

/* Citação */
.article-body blockquote {
  border-left: 3px solid var(--amarelo);
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg2);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.article-body blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--preto);
  margin: 0 0 .5rem;
  line-height: 1.7;
}

.article-body blockquote cite { font-size: 12px; color: var(--texto3); font-style: normal; letter-spacing: .04em; }

/* Tabela comparativa */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.compare-table thead tr { background: var(--preto); color: #fff; }
.compare-table thead th { padding: .875rem 1rem; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.compare-table tbody tr { border-bottom: 1px solid var(--borda); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--bg2); }
.compare-table td { padding: .875rem 1rem; color: var(--texto2); vertical-align: top; line-height: 1.5; }
.compare-table td:first-child { font-weight: 600; color: var(--preto); }

.tag-rec {
  display: inline-block;
  background: var(--amarelo);
  color: var(--preto);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

/* Caixa de destaque */
.highlight-box {
  background: var(--bg2);
  border: 1px solid var(--borda);
  border-left: 3px solid var(--amarelo);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.highlight-box-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: .75rem;
}

.highlight-box p { font-size: .95rem; color: var(--texto2); line-height: 1.85; margin: 0; }

/* Imagem do artigo */
.article-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--borda);
  margin: 2rem 0;
}

.article-img img { width: 100%; height: 320px; object-fit: cover; }

.article-img figcaption {
  padding: .75rem 1rem;
  font-size: 12px;
  color: var(--texto3);
  background: var(--bg2);
  border-top: 1px solid var(--borda);
  line-height: 1.5;
}

/* Separador */
.article-divider { height: 1px; background: var(--borda); margin: 2.5rem 0; }

/* FAQ */
.faq-title { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; color: var(--preto); margin: 2.5rem 0 1.5rem; }
.faq-title em { font-family: var(--serif); font-style: italic; color: var(--amarelo); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--borda);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.faq-item { padding: 1.5rem; background: var(--bg); }
.faq-q { font-size: 14px; font-weight: 600; color: var(--preto); margin-bottom: .5rem; line-height: 1.4; }
.faq-a { font-size: 13.5px; color: var(--texto2); line-height: 1.8; }

/* CTA inline */
.inline-cta {
  background: var(--preto);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 2.5px solid var(--amarelo);
}

.inline-cta-text p { font-size: .9rem; color: rgba(255,255,255,.45); margin: 4px 0 0; line-height: 1.5; }
.inline-cta-title { font-size: 1rem; font-weight: 700; color: #fff; }
.inline-cta .btn-primary { white-space: nowrap; flex-shrink: 0; }

/* Tags */
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0; }

.article-tag {
  font-size: 11.5px;
  color: var(--texto2);
  background: var(--bg2);
  border: 1px solid var(--borda);
  padding: 5px 12px;
  border-radius: 20px;
  transition: border-color .2s, color .2s;
}

.article-tag:hover { border-color: var(--amarelo); color: var(--preto); }

/* Box do autor */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin: 2.5rem 0;
}

.author-avatar {
  width: 72px; height: 72px;
  background: var(--preto);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amarelo);
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-name { font-size: 15px; font-weight: 700; color: var(--preto); margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--amarelo); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .5rem; }
.author-bio { font-size: 13px; color: var(--texto2); line-height: 1.7; }

/* ============================================================
   HOME DO BLOG (archive, category, search)
   ============================================================ */
.blog-hero {
  background: var(--preto);
  padding: 4rem 2.5rem 3rem;
  position: relative;
}

.blog-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px; background: var(--amarelo); }

.blog-hero-inner { max-width: var(--max); margin: 0 auto; }

.blog-eyebrow {
  display: inline-block;
  background: rgba(245,200,0,.12);
  color: var(--amarelo);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(245,200,0,.2);
  margin-bottom: 1rem;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.blog-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--amarelo); }
.blog-hero p { font-size: 1rem; color: rgba(255,255,255,.5); max-width: 540px; }

/* Grid de posts */
.blog-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0,1fr) 280px;
  gap: 4rem;
  align-items: start;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.post-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}

.post-card:hover { border-color: var(--amarelo); }
.post-card-wide { grid-column: span 2; flex-direction: row; }

.post-card-img img { width: 100%; height: 180px; object-fit: cover; }
.post-card-wide .post-card-img img { width: 280px; height: 100%; flex-shrink: 0; }
.post-card-wide .post-card-img { flex-shrink: 0; }

.post-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.post-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amarelo);
  margin-bottom: .5rem;
}

.post-card h2, .post-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--preto);
  line-height: 1.35;
  margin-bottom: .6rem;
}

.post-card p { font-size: .875rem; color: var(--texto2); line-height: 1.6; margin-bottom: .75rem; flex: 1; }

.post-card-meta {
  display: flex;
  gap: .75rem;
  font-size: 12px;
  color: var(--texto3);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--borda);
}

/* Blog sidebar */
.blog-sidebar { position: sticky; top: 84px; }

.blog-sidebar-box {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 2.5px solid var(--amarelo);
}

.blog-sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--texto3); margin-bottom: 1rem; }

.popular-item { display: flex; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--borda); align-items: flex-start; }
.popular-item:last-child { border-bottom: none; }
.popular-num { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--borda); flex-shrink: 0; line-height: 1; }
.popular-title { font-size: 13px; font-weight: 600; color: var(--texto); line-height: 1.4; }
.popular-title:hover { color: var(--amarelo); }

.cat-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.cat-pill { font-size: 12px; padding: 5px 12px; border: 1px solid var(--borda); border-radius: 20px; color: var(--texto2); transition: border-color .2s, color .2s; }
.cat-pill:hover { border-color: var(--amarelo); color: var(--preto); }

/* ============================================================
   FOOTER
   ============================================================ */
.evolux-footer {
  background: #0A0A0A;
  border-top: none;
  padding: 2rem 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.evolux-footer img { height: 26px; }

.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-links a:hover { color: var(--amarelo); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }

/* Botão flutuante WhatsApp */
.float-wpp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
}

.float-wpp svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   PAGINAÇÃO
   ============================================================ */
.evolux-pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: 2rem 0;
  grid-column: 1 / -1;
}

.evolux-pagination a,
.evolux-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--borda);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--texto2);
  transition: all .2s;
}

.evolux-pagination a:hover { border-color: var(--amarelo); color: var(--preto); }
.evolux-pagination .current { background: var(--amarelo); border-color: var(--amarelo); color: var(--preto); font-weight: 700; }

/* ============================================================
   CARD EM DESTAQUE (page-home-blog.php)
   ============================================================ */
.blog-featured-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 2.5rem 0;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--preto);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--borda);
  transition: opacity .2s;
  min-height: 320px;
}

.blog-featured-card:hover { opacity: .92; }

.blog-featured-img {
  overflow: hidden;
  flex-shrink: 0;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.blog-featured-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}

.blog-featured-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: .25rem;
}

.blog-featured-body .post-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.blog-featured-body h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.blog-featured-body > p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0;
}

.blog-featured-body .post-card-meta {
  display: flex;
  gap: .5rem;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: .5rem;
}

/* Fallback: sem imagem o card ocupa largura total */
.blog-featured-card:not(:has(.blog-featured-img)) {
  grid-template-columns: 1fr;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; padding: 2rem 1.25rem; gap: 2rem; }
  .article-layout .sidebar { position: static; grid-column: 1; grid-row: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sidebar { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .evolux-nav-links { display: none; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .float-wpp span { display: none; }
  .float-wpp { padding: 14px; border-radius: 50%; }
  .article-hero { padding: 2.5rem 1.25rem 2rem; }
  .blog-hero { padding: 2.5rem 1.25rem 2rem; }
  .blog-featured-wrap { padding: 1.5rem 1.25rem 0; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img img { min-height: 200px; height: 220px; }
  .blog-featured-body { padding: 1.5rem; }
  .blog-main { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card-wide { flex-direction: column; }
  .post-card-wide .post-card-img img { width: 100%; height: 200px; }
}

@media (max-width: 640px) {
  .evolux-nav { padding: 0 1rem; }
  .article-layout .sidebar { grid-template-columns: 1fr; }
}
