/* ── VARIABLES (heredadas de la web) ── */
:root {
  --teal:          #008891;
  --teal-dark:     #005f6b;
  --teal-pastel:   #e6f4f5;
  --orange:        #ff7959;
  --orange-dark:   #e05c3a;
  --orange-pastel: #fff5f2;
  --ink:           #1e2a35;
  --ink-mid:       #151617;
  --ink-light:     #7a8899;
  --bg:            #f7f8f9;
  --white:         #ffffff;
  --border:        #eef0f2;
  --font:          'Plus Jakarta Sans', sans-serif;
  --font-deco:     'Bebas Neue', sans-serif;
  --max:           1240px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* ── PROGRESS BAR ── */
#progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--teal);
  width: 0%; z-index: 999;
  transition: width .1s linear;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 50%; right: auto; z-index: 200;
  transform: translateX(-50%);
  width: 100%; max-width: var(--max);
  background: var(--white); border-bottom: 1px solid var(--border);
  height: 64px; display: flex; align-items: center; padding: 0 40px;
}
.nav-bg {
  position: fixed; top: 0; left: 0; right: 0;
  height: 64px; background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 199;
}


.nav-logo {
  font-family: var(--font); font-size: 17px; font-weight: 800;
  color: var(--ink); text-decoration: none; margin-right: auto;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-right: 24px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink-mid);
  text-decoration: none; padding: 6px 12px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.nav-active { color: var(--teal); background: var(--teal-pastel); }
.nav-btn {
  background: var(--teal); color: var(--white);
  font-size: 14px; font-weight: 700; padding: 10px 22px;
  border-radius: 6px; text-decoration: none; transition: background .2s;
}
.nav-btn:hover { background: var(--teal-dark); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; margin-left: 16px;
  background: none; border: none;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s; display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.nav-mobile {
  position: fixed; 
  top: 64px; 
  left: 0; 
  right: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  flex-direction: column;
}

.nav-mobile.open { 
  transform: translateX(0); 
}


.nav-mobile a {
  font-size: 16px; font-weight: 600; color: var(--ink-mid);
  text-decoration: none; padding: 12px 16px; border-radius: 6px;
  transition: color .2s, background .2s;
  display: block;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.nav-mobile a:hover { color: var(--teal); background: var(--teal-pastel); }
.nav-mobile .nav-btn-m {
  background: var(--teal); color: var(--white);
  text-align: center; margin-top: 8px;
  padding: 12px 16px; border-radius: 6px;
  font-weight: 700; font-size: 15px;
}

/* ── NAV LOGO IMAGEN ── */
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* ── DROPDOWN ── */
.has-dropdown {
  position: relative;
}
.nav-arrow {
  font-size: 10px;
  margin-left: 3px;
  display: inline-block;
  transition: transform .2s;
}
.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 300;
}
.has-dropdown:hover .nav-dropdown {
  display: block;
  animation: dropdown-in .2s var(--ease);
}
@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown li a {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--ink-mid);
  padding: 9px 18px;
  text-decoration: none;
  border-radius: 0;
  transition: color .2s, background .2s;
}
.nav-dropdown li a:hover {
  color: var(--teal);
  background: var(--teal-pastel);
}

/* ── BTN CON PUNTO ── */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal); color: var(--white);
  font-size: 14px; font-weight: 700; padding: 10px 22px;
  border-radius: 6px; text-decoration: none; transition: background .2s;
}
.nav-btn-dot {
  width: 8px; height: 8px;
  background: #25d366;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 0 0 4px rgba(37,211,102,0); }
}
.nav-btn-m {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/* ── BANNER AD — LEADERBOARD TOP (728x90 / full-width) ── */
.ad-leaderboard {
  margin-top: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 20px; min-height: 90px;
}
.ad-placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px dashed #cbd5e1; border-radius: 8px;
  color: #94a3b8; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.ad-placeholder::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer { to { left: 160%; } }
.ad-placeholder .ad-label {
  font-size: 10px; letter-spacing: .1em; opacity: .6;
}
.ad-placeholder .ad-size {
  font-size: 14px; font-weight: 700; color: #64748b;
}
.ad-leaderboard .ad-placeholder { width: 100%; max-width: 970px; height: 90px; }

.blog-hero {
  background: var(--white);
  border-bottom: 2px solid var(--teal-pastel);
  position: relative;
  overflow: hidden;
}
.blog-hero-deco {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-deco); font-size: 280px;
  color: rgba(0,136,145,.04); line-height: 1; pointer-events: none;
}
.blog-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.blog-hero-text {
  flex: 1;
  max-width: 480px;
}
.blog-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.blog-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--teal); display: block;
}
.blog-hero h1 {
  font-family: var(--font-deco);
  font-size: clamp(48px, 6vw, 86px);
  line-height: .95; letter-spacing: .02em;
  color: var(--ink); margin-bottom: 16px;
}
.blog-hero h1 span { color: var(--teal); }
.blog-hero-sub {
  font-size: 17px; color: var(--ink-light);
  max-width: 400px; line-height: 1.65;
}
.blog-hero-right {
  width: 50%;
  flex-shrink: 0;
}
.blog-hero-img {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}
.blog-hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-hero-inner { flex-direction: column; padding: 40px 20px; }
  .blog-hero-right { width: 100%; }
  .blog-hero-img { height: 240px; }
  .blog-hero-text { max-width: 100%; }
}



/* ── SEARCH + FILTER BAR ── */
.blog-toolbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 100;
  padding: 14px 0;
}

.blog-toolbar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  justify-content: space-between;
}

.fecha-hora {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 600;
  white-space: nowrap;
}


.search-wrap {
  position: relative; flex: 1; min-width: 200px; max-width: 340px;
}
.search-wrap svg {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--ink-light);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  pointer-events: none;
}
#blog-search {
  width: 100%; font-family: var(--font); font-size: 14px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 9px 14px 9px 38px; outline: none;
  transition: border-color .2s;
  color: var(--ink);
}
#blog-search:focus { border-color: var(--teal); background: var(--white); }
#blog-search::placeholder { color: var(--ink-light); }

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.chip {
  font-size: 13px; font-weight: 600; padding: 7px 16px; 
  border-radius: 99px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--ink-mid);
  cursor: pointer; transition: all .2s; white-space: nowrap;
  font-family: var(--font);
}
.chip:hover { border-color: var(--teal); color: var(--teal); }
.chip.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

.results-count {
  font-size: 13px; color: var(--ink-light); font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}

/* ── MAIN LAYOUT ── */
.blog-layout {
  max-width: var(--max); margin: 0 auto; padding: 36px 40px 80px;
  display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start;
}

/* ── ARTICLES AREA ── */
.articles-area {}

/* FEATURED ARTICLE */
.article-featured {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 32px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  text-decoration: none; color: inherit;
  position: relative;
}
.article-featured:hover {
  box-shadow: 0 12px 40px rgba(0,136,145,.12);
  transform: translateY(-3px);
}
.article-featured-img {
  position: relative; overflow: hidden; min-height: 320px;
}
.article-featured-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.article-featured:hover .article-featured-img img { transform: scale(1.04); }
.featured-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.article-featured-body {
  padding: 40px 36px; display: flex; flex-direction: column; justify-content: center;
}
.article-cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.article-featured-body h2 {
  font-size: clamp(20px, 2vw, 26px); font-weight: 800;
  color: var(--ink); line-height: 1.25; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.article-excerpt {
  font-size: 15px; color: var(--ink-light); line-height: 1.65; margin-bottom: 24px;
}
.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--ink-light);
}
.article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--teal);
  margin-top: 20px;
  transition: gap .2s;
}
.article-featured:hover .read-more { gap: 10px; }

/* ARTICLES GRID */
.articles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}

/* AD BETWEEN ARTICLES */
.ad-in-feed {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
  margin: 15px 0;
}

.ad-in-feed .ad-placeholder { width: 100%; height: 180px; }

.article-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.article-card:hover {
  box-shadow: 0 8px 32px rgba(0,136,145,.1);
  transform: translateY(-3px);
}
.article-card-img {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.article-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-cat {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; backdrop-filter: blur(8px);
}
.article-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.article-card-body h3 {
  font-size: 16px; font-weight: 800; color: var(--ink);
  line-height: 1.35; letter-spacing: -.01em; margin-bottom: 10px; flex: 1;
}
.article-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--ink-light);
}
.read-time {
  display: flex; align-items: center; gap: 5px; font-weight: 600;
}
.read-time svg { width: 13px; height: 13px; stroke: var(--ink-light); fill: none; stroke-width: 2; stroke-linecap: round; }

/* COMING SOON CARD */
.article-card.coming-soon { opacity: .55; pointer-events: none; position: relative; }
.coming-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--ink); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}

/* NO RESULTS */
.no-results {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  display: none;
}
.no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.no-results p { font-size: 15px; color: var(--ink-light); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); overflow: hidden;
}
.widget-header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-light);
}

/* AD SIDEBAR (300x250 Medium Rectangle) */
.ad-sidebar .ad-placeholder { width: 100%; height: 300px; border-radius: 0; border: none; border-bottom: 1px dashed #cbd5e1; }
.ad-sidebar-label { padding: 10px 20px; font-size: 11px; color: var(--ink-light); text-align: center; }

/* AD SIDEBAR TALL (300x600) */
.ad-sidebar-tall .ad-placeholder { width: 100%; height: 600px; border-radius: 0; border: none; }

/* ABOUT WIDGET */
.about-widget { padding: 24px 20px; text-align: center; }
.about-widget-logo {
  font-family: var(--font); font-size: 14px; font-weight: 800;
  color: var(--ink); margin-bottom: 10px;
}
.about-widget-logo span { color: var(--teal); }
.about-widget p { font-size: 13px; color: var(--ink-light); line-height: 1.6; margin-bottom: 16px; }
.about-widget-cta {
  display: block; background: var(--teal); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 10px 20px;
  border-radius: 6px; text-decoration: none; transition: background .2s;
}
.about-widget-cta:hover { background: var(--teal-dark); }

/* CATEGORIES WIDGET */
.cat-list { list-style: none; }
.cat-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px; font-size: 14px; font-weight: 600;
  color: var(--ink-mid); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.cat-list li:last-child a { border-bottom: none; }
.cat-list li a:hover { color: var(--teal); background: var(--teal-pastel); }
.cat-count {
  background: var(--bg); border-radius: 99px;
  font-size: 11px; font-weight: 700; color: var(--ink-light);
  padding: 2px 8px;
}

/* POPULAR WIDGET */
.popular-list { list-style: none; }
.popular-item a {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 20px; text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--border); transition: background .2s;
}
.popular-item:last-child a { border-bottom: none; }
.popular-item a:hover { background: var(--teal-pastel); }
.popular-num {
  font-family: var(--font-deco); font-size: 28px; line-height: 1;
  color: var(--teal); opacity: .3; flex-shrink: 0; width: 24px;
}
.popular-title { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.popular-cat { font-size: 11px; color: var(--ink-light); margin-top: 3px; }

/* NEWSLETTER WIDGET */
.newsletter-widget { padding: 24px 20px; }
.newsletter-widget h4 { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.newsletter-widget p { font-size: 13px; color: var(--ink-light); margin-bottom: 16px; line-height: 1.55; }
.newsletter-input {
  width: 100%; font-family: var(--font); font-size: 13px;
  border: 1.5px solid var(--border); border-radius: 6px;
  padding: 9px 12px; margin-bottom: 8px; outline: none;
  transition: border-color .2s; background: var(--bg); color: var(--ink);
}
.newsletter-input:focus { border-color: var(--teal); background: var(--white); }
.newsletter-btn {
  width: 100%; background: var(--teal); color: var(--white);
  font-family: var(--font); font-size: 13px; font-weight: 700;
  padding: 10px; border-radius: 6px; border: none; cursor: pointer;
  transition: background .2s;
}
.newsletter-btn:hover { background: var(--teal-dark); }

/* ── AD BANNER BOTTOM (980x250) ── */
.ad-bottom-wrap {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 36px 40px; display: flex; justify-content: center;
}
.ad-bottom-wrap .ad-placeholder { width: 100%; max-width: 980px; height: 250px; }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: var(--white);
  padding: 56px 40px 32px; margin-top: 0;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 56px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 28px;
}
.footer-logo { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-logo span { color: var(--teal); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 220px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-copy span { color: var(--teal); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 56px; height: 56px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s var(--ease);
  animation: pulse-wa 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.65); }
}



/* ── CATEGORY COLOR SYSTEM ── */
.cat-marketing  { background: #fff5f2; color: #e05c3a; }
.cat-mentalidad { background: #fdf4ff; color: #9333ea; }
.cat-digital    { background: #e6f4f5; color: #008891; }
.cat-coming     { background: #f1f5f9; color: #64748b; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-btn { display: none; }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .blog-hero-inner { flex-direction: column; gap: 24px; }
  .article-featured { grid-template-columns: 1fr; }
  .article-featured-img { min-height: 220px; }
  .articles-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .blog-layout { padding: 24px 20px 60px; }
  .blog-hero-inner { padding: 0 20px; }
  .blog-toolbar-inner { padding: 0 20px; }
  .ad-leaderboard { padding: 10px 20px; }
  .ad-bottom-wrap { padding: 12px 20px; }
}
@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .blog-hero h1 { font-size: 52px; }
  .article-featured-body { padding: 24px 20px; }
  .blog-stats { gap: 20px; }
}