
:root{
  --brand-blue:#0e2453;
  --brand-red:#f42635;
  --text-dark:#1f2937;
  --text-gray:#6b7280;
  --light-bg:#f6f8fb;
  --border-light:#e5e7eb;
}

.page-node-type-article .post-thumbnail img{
  border-radius:10px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* TITULOS */
.page-node-type-article h2{
  font-size:30px;
  padding-bottom:10px;
  border-bottom:3px solid var(--brand-blue);
  color:var(--brand-blue);
}
.page-node-type-article h3{
  font-size:22px;
  color:var(--brand-blue);
}

/* PARRAFOS */
.page-node-type-article p{
  margin-bottom:10px;
  color:var(--text-dark);
}

/* LISTAS */
.page-node-type-article ul{
  padding-left:20px;
}

/* MARCADOR DE LISTA */
.page-node-type-article ul li::marker{
  color:var(--brand-red);
}

/* TABLAS */
.page-node-type-article table{
  width:100%;
  border-collapse:collapse;
  margin:30px 0;
  font-size:15px;
  border-radius:8px;
  overflow:hidden;
}
.page-node-type-article table thead{
  background:var(--brand-blue);
  color:white;
}
.page-node-type-article table th{
  padding:12px;
  text-align:left;
}
.page-node-type-article table td{
  padding:12px;
  border-bottom:1px solid var(--border-light);
}
.page-node-type-article table tbody tr:nth-child(even){
  background:var(--light-bg);
}

/* BLOQUE DESTACADO */
.page-node-type-article .iso-insight{
  border-left:5px solid var(--brand-red);
  background:var(--light-bg);
  padding:18px 22px;
  margin:30px 0;
  font-size:18px;
  font-weight:500;
}

/* CHECKLIST */
.page-node-type-article .iso-checklist li{
  list-style:none;
  position:relative;
  padding-left:28px;
  margin-bottom:12px;
}
.page-node-type-article .iso-checklist li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--brand-red);
  font-weight:bold;
}

/* ALERTA */
.page-node-type-article .iso-alert{
  border-left:5px solid var(--brand-red);
  background:#fff4f4;
  padding:18px;
  margin:30px 0;
}

/* ESPACIADO GENERAL */
.page-node-type-article .pbmit-blog-classic-inner{
  padding:20px 10px;
}
