:root{
  --dv-navy:#092E4C;
  --dv-blue:#AECAE8;
  --dv-rose:#A87482;
  --dv-paper:#F7F4F2;
  --dv-card:#FFFFFF;
  --dv-text:#223140;
  --dv-muted:#6b7a8a;
  --dv-border: rgba(9,46,76,.10);
  --dv-shadow-soft: 0 10px 28px rgba(10,25,40,.08);
  --dv-max: 1180px;

  --dv-title: "Young Serif", serif;
  --dv-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

body.dv-article-page{
  background: var(--dv-paper);
  color: var(--dv-text);
}

/* Header tipo “Blog” */
.dv-blog-header{
  position: relative;
  padding: 110px 0 46px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0));
  overflow: hidden;
}
.dv-blog-header::after{
  content:"";
  position:absolute;
  right:-140px;
  top:-120px;
  width:520px;
  height:520px;
  background:
    radial-gradient(circle at 30% 30%, rgba(168,116,130,.10), rgba(168,116,130,0) 55%),
    radial-gradient(circle at 70% 65%, rgba(174,202,232,.14), rgba(174,202,232,0) 55%);
  opacity:.75;
  pointer-events:none;
}
.dv-blog-header__wrap{
  width: min(var(--dv-max), 92vw);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.dv-breadcrumb{
  display:inline-flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  font-family: var(--dv-body);
  font-size: 12px;
  color: rgba(34,49,64,.65);
  margin-bottom: 14px;
}
.dv-breadcrumb a{
  color: rgba(34,49,64,.72);
  text-decoration:none;
  border-bottom: 1px solid rgba(34,49,64,.18);
}
.dv-breadcrumb a:hover{ border-bottom-color: rgba(34,49,64,.42); }

.dv-page-title{
  font-family: var(--dv-title);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  color: var(--dv-navy);
  margin: 0;
}

/* Layout principal artículo + sidebar */
.dv-article-wrap{
  width: min(var(--dv-max), 92vw);
  margin: 0 auto;
  padding: 18px 0 80px;
}
.dv-article-layout{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items:start;
}

/* Encabezado del artículo */
.dv-kicker{
  font-family: var(--dv-body);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(34,49,64,.55);
  text-align:center;
  margin: 0 0 10px;
}
.dv-article-title{
  font-family: var(--dv-title);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  color: var(--dv-navy);
  text-align:center;
  margin: 0 0 12px;
}
.dv-article-sub{
  font-family: var(--dv-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(34,49,64,.70);
  max-width: 72ch;
  margin: 0 auto 18px;
  text-align:center;
}
.dv-meta{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--dv-body);
  font-size: 12px;
  color: rgba(34,49,64,.55);
  margin: 0 0 22px;
}
.dv-meta .dot::before{
  content:"•";
  opacity:.6;
  margin-right: 10px;
}

/* Imagen destacada */
.dv-featured{
  background: var(--dv-card);
  border: 1px solid var(--dv-border);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--dv-shadow-soft);
  margin-bottom: 26px;
}
.dv-featured img{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:block;
}

/* Contenido */
.dv-article-content p,
.dv-article-content li{
  font-family: var(--dv-body);
  font-size: 16px;
  line-height: 1.9;
  color: rgba(34,49,64,.86);
}
.dv-article-content p{ margin: 0 0 22px; }

.dv-article-content h2{
  font-family: var(--dv-title);
  font-weight: 400;
  font-size: 28px;
  margin: 56px 0 18px;
  color: var(--dv-navy);
}
.dv-article-content h3{
  font-family: var(--dv-title);
  font-weight: 400;
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--dv-navy);
}
.dv-article-content ul{ padding-left: 18px; margin: 0 0 22px; }

/* Sidebar */
.dv-sidebar{
  background: rgba(255,255,255,.80);
  border: 1px solid var(--dv-border);
  border-radius: 18px;
  box-shadow: var(--dv-shadow-soft);
  padding: 18px;
  position: sticky;
  top: 110px;
}
.dv-sidebar__title{
  font-family: var(--dv-title);
  font-weight: 400;
  font-size: 22px;
  color: var(--dv-navy);
  margin: 6px 6px 14px;
}
.dv-side-item{
  display:grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  text-decoration:none;
  color: inherit;
  transition: background .15s ease, transform .15s ease;
}
.dv-side-item:hover{
  background: rgba(174,202,232,.18);
  transform: translateY(-1px);
}
.dv-side-item img{
  width: 86px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  display:block;
}
.dv-side-item .tag{
  font-family: var(--dv-body);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(34,49,64,.55);
  margin-bottom: 6px;
}
.dv-side-item .title{
  font-family: var(--dv-title);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--dv-navy);
  margin: 0;
}

@media (max-width: 980px){
  .dv-article-layout{ grid-template-columns: 1fr; }
  .dv-sidebar{ position: static; }
  .dv-featured img{ height: 260px; }
}
/* Ajuste visual para artículos comparativos */

.dv-article-content table{
  margin: 32px 0;
}

.dv-article-content h2{
  margin-top: 64px;
}

.dv-article-content p{
  max-width: 100%;
}

/* Hace que el texto se sienta más editorial */
.dv-article-content{
  letter-spacing: 0.01em;
}
/* =========================
   HOTFIX CTA (FORZADO)
   ========================= */
body.dv-article-page .dv-cta{
  margin: 52px 0 14px !important;
}

body.dv-article-page .dv-cta__inner{
  display:block !important;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(174,202,232,.14)) !important;
  border: 1px solid rgba(9,46,76,.10) !important;
  border-radius: 22px !important;
  padding: 26px 22px !important;
  box-shadow: 0 16px 34px rgba(10,25,40,.08) !important;
  position: relative !important;
  overflow: hidden !important;
}

body.dv-article-page .dv-cta__kicker{
  display:block !important;
  margin: 0 0 10px !important;
  font-family: var(--dv-body) !important;
  font-size: 12px !important;
  letter-spacing: .14em !important;
  font-weight: 800 !important;
  color: rgba(9,46,76,.65) !important;
}

body.dv-article-page .dv-cta__title{
  margin: 0 0 10px !important;
  font-family: var(--dv-title) !important;
  font-weight: 400 !important;
  color: #092E4C !important;
  font-size: clamp(22px, 2.2vw, 28px) !important;
  line-height: 1.25 !important;
}

body.dv-article-page .dv-cta__text{
  margin: 0 0 14px !important;
  font-family: var(--dv-body) !important;
  color: rgba(34,49,64,.78) !important;
  line-height: 1.75 !important;
  font-size: 15.5px !important;
  max-width: 62ch !important;
}

body.dv-article-page .dv-cta__bullets{
  display:flex !important;
  flex-wrap: wrap !important;
  gap: 10px 14px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}

body.dv-article-page .dv-cta__bullets span{
  display:inline-flex !important;
  align-items:center !important;
  font-family: var(--dv-body) !important;
  font-size: 13px !important;
  color: rgba(34,49,64,.78) !important;
  background: rgba(255,255,255,.75) !important;
  border: 1px solid rgba(9,46,76,.10) !important;
  padding: 8px 10px !important;
  border-radius: 999px !important;
}

body.dv-article-page a.dv-cta__btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  text-decoration:none !important;
  background: rgba(229,197,193,.78) !important;
  border: 1px solid rgba(168,116,130,.30) !important;
  color: #092E4C !important;
  font-family: var(--dv-body) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
}

body.dv-article-page a.dv-cta__btn:visited{
  color: #092E4C !important;
}

body.dv-article-page .dv-cta__note{
  margin: 12px 0 0 !important;
  font-family: var(--dv-body) !important;
  font-size: 12.5px !important;
  color: rgba(34,49,64,.60) !important;
  line-height: 1.6 !important;
}
/* ====== ARTÍCULO MÁS “EDITORIAL” (tarjeta grande como mockup) ====== */
.dv-article-layout > article{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(9,46,76,.10);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(10,25,40,.07);
  padding: 28px 26px 22px;
}

/* Separador ornamental tipo revista */
.dv-divider{
  height: 1px;
  background: rgba(9,46,76,.12);
  margin: 44px auto 18px;
  max-width: 560px;
  position: relative;
}
.dv-divider::after{
  content:"✿";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 26px;
  display:grid;
  place-items:center;
  background: var(--dv-paper, #F7F4F2);
  color: rgba(9,46,76,.45);
  font-size: 14px;
  letter-spacing: .02em;
}

/* Si tu CTA se ve centrado y lo quieres más editorial */
.dv-cta__inner{ text-align:left; }
/* =========================
   SIDEBAR estilo MOCKUP
   ========================= */

/* La tarjeta de sidebar más editorial */
.dv-sidebar{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(9,46,76,.10);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(10,25,40,.06);
  padding: 18px 18px 10px;
}

/* Título como mockup */
.dv-sidebar__title{
  font-family: var(--dv-title);
  font-size: 22px;
  margin: 6px 6px 14px;
  color: var(--dv-navy);
}

/* Cada item: menos “bloque”, más lista editorial */
.dv-side-item{
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  transform: none;
}

/* Línea separadora entre items (clave para look mockup) */
.dv-side-item + .dv-side-item{
  border-top: 1px solid rgba(9,46,76,.08);
  border-radius: 0;
}

/* Hover MUY sutil */
.dv-side-item:hover{
  background: rgba(235,237,240,.45);
  transform: none;
}

/* Thumbnail más “soft” */
.dv-side-item img{
  width: 92px;
  height: 70px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(10,25,40,.08);
}

/* Tag más discreto */
.dv-side-item .tag{
  font-family: var(--dv-body);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(34,49,64,.45);
  margin: 0 0 6px;
}

/* Título más editorial (menos pesado) */
.dv-side-item .title{
  font-family: var(--dv-title);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.15;
  color: var(--dv-navy);
  margin: 0;
  max-width: 20ch;
}

/* Flecha al final como mockup */
.dv-side-item::after{
  content: "→";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(9,46,76,.40);
  font-size: 16px;
  opacity: .9;
}

/* Evita que el texto choque con la flecha */
.dv-side-item > div{ padding-right: 22px; }

/* Botón final “Leer artículo” (opcional estilo mockup si lo usas) */
.dv-sidebar .dv-side-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px 6px 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(9,46,76,.12);
  background: rgba(255,255,255,.70);
  color: var(--dv-navy);
  text-decoration: none;
  font-family: var(--dv-body);
  font-weight: 800;
  font-size: 13px;
}
.dv-sidebar .dv-side-btn:hover{
  background: rgba(174,202,232,.18);
}

/* Ajuste fino para que el título se vea igual que en el home */
.dv-article-title, .dv-article-content h2, .dv-article-content h3 {
    font-family: 'Young Serif', serif;
    font-weight: 400;
    letter-spacing: 0.04em; /* Igual que en el home */
    line-height: 1.02; /* Igual que en el home */
}

/* Aseguramos el suavizado */
body.dv-article-page {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.dv-article-title, .dv-article-content h2, .dv-article-content h3 {
    font-family: 'Young Serif', serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em !important;
    line-height: 1.02 !important;
}
.dv-article-title {
    font-family: 'Young Serif', serif !important;
}

