/* =========================================================
  ESTILOS GENERALES
  ========================================================= */
.ndm-sidebar .ndm-widget{padding: 1.5em 1.2em;background-color: var(--paper);box-shadow: var(--shadow);margin-bottom: 2em;border-radius: 4px;}
.ndm-sidebar h3 {
  border-left: 4px solid var(--brand-dark);
  padding-left: 0.4em;
  margin: 1.5em 0 1em;
  color: var(--brand-dark);
  margin-top: 0;
}
.ndm-sidebar h3::before {
  width: 3px;
  opacity: 0.8;
}
#aside_categorias .ndm-list,
#aside_categorias .ndm-list ul,
#aside_categorias .children {
	list-style: none;
	padding: 0;
	margin: 0;
}
/* aplana jerarquía */
#aside_categorias .children {
	display: contents;
}
#aside_categorias li a {
	display: block;
	width: 100%;
  background: #e0e0e0;
	color: #6b7280;
	text-decoration: none;
	padding: 0.6em 1.2em;
	border-radius: 999px;
	font-size: 0.9rem;
	text-align: center;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
#aside_categorias li:last-child a {
	margin-bottom: 1em;
}
#aside_categorias li a:hover {
	background: #d1d5db;
	color: #111;
}
/* CONTENEDOR */
.ndm-widget--latest{
  background:#f1f1f1;
  padding:25px;
  border-radius:12px;
}

/* LISTADO */
.ndm-latest{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* ITEM */
.ndm-latest__item{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* IMAGEN */
.ndm-latest__thumb img{
  width:100%;
  height:auto;
  border-radius:6px;
  display:block;
}

/* TITULO POST */
.ndm-latest__title{
  font-size:22px;
  font-weight:700;
  color:#6b7b8a;
  margin:0;
}

.ndm-latest__title a{
  text-decoration:none;
  color:inherit;
}

.ndm-latest__title a:hover{
  color:var(--brand, #5b5db8);
}

/* FECHA */
.ndm-latest__date{
  font-size:14px;
  color:#8a99a6;
}
.ndm-latest__item{
  transition:.3s;
}

.ndm-latest__item:hover{
  transform:translateY(-4px);
}
