:root{
  --wf:#0f766e;
  --wf2:#0b5f59;
  --ink:#0b0f14;
}

.wfBlogHero{
  position:relative;
  width:100%;
  min-height:360px;
  background:#0b0f14;
  overflow:hidden;
  isolation:isolate;
  touch-action: pan-y;
  user-select:none;
}

.wfBlogViewport{
  position:relative;
  width:100%;
  min-height:inherit;
  overflow:hidden;
}

.wfBlogTrack{
  display:flex;
  width:100%;
  min-height:inherit;
  transform:translate3d(0,0,0);
  transition:transform .6s ease;
  will-change:transform;
}

.wfBlogSlide{
  position:relative;
  flex:0 0 100%;
  width:100%;
  min-height:inherit;
  overflow:hidden;
}

.wfBlogMedia{ position:absolute; inset:0; z-index:0; background:#0b0f14; }
.wfBlogImg,.wfBlogVid{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block;
  transform:scale(1.01);
  pointer-events:none;
}
.wfBlogBlank{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 360px at 35% 30%, rgba(15,118,110,.22), rgba(15,118,110,0) 62%),
    linear-gradient(180deg, #0b0f14, #0e141a);
}
.wfBlogOverlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, var(--blog-ov-from, rgba(0,0,0,.55)), var(--blog-ov-to, rgba(0,0,0,.25)));
  pointer-events:none;
}

.wfBlogInner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding:68px 16px 56px;
}

.wfBlogText{ max-width:880px; }

.wfBlogPill{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(15,118,110,.18);
  border:1px solid rgba(15,118,110,.30);
  color:#fff;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
}

.wfBlogTitle{
  margin:14px 0 10px;
  color:var(--blog-title, #fff);
  font-weight:950;
  font-size:clamp(30px, 4.2vw, 56px);
  line-height:1.06;
  text-transform:uppercase;
  overflow-wrap:anywhere;
}

.wfBlogSub{
  margin:0;
  color:var(--blog-text, rgba(255,255,255,.85));
  font-size:17px;
  line-height:1.7;
  max-width:780px;
}

.wfBlogActions{ margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; }

.wfBlogBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:14px;
  font-weight:950;
  text-decoration:none;
  background:var(--blog-btnbg, var(--wf));
  color:var(--blog-btntx, #fff);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 16px 40px rgba(2,6,23,.18);
  white-space:nowrap;
  transition:transform .18s ease, filter .18s ease;
}

/* ✅ móvil: NO ancho completo */
@media (max-width:520px){
  .wfBlogBtn{ width:auto; max-width:100%; padding:10px 14px; font-size:14px; border-radius:12px; }
  .wfBlogHero{ min-height:320px; }
  .wfBlogInner{ padding:56px 14px 52px; }
}

@media (hover:hover){
  .wfBlogBtn:hover{ transform:translateY(-1px); filter:brightness(1.03); }
}

/* Dots */
.wfBlogDots{
  position:absolute;
  left:0; right:0;
  bottom:14px;
  z-index:6;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:0 14px;
}

.wfBlogDot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.18);
  cursor:pointer;
  padding:0;
  transition:width .18s ease, background .18s ease;
}
.wfBlogDot.is-active{
  width:26px;
  background:#fff;
  border-color:#fff;
}
