
/* Automatske kartice hijerarhije */
.hierarchy-children{margin-top:8px}
.hierarchy-children__head{max-width:820px;margin-bottom:20px}
.hierarchy-children__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.hierarchy-child-card{
  display:block;color:inherit;text-decoration:none;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;padding:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.045);
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.hierarchy-child-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.075);
  border-color:rgba(11,45,214,.18);
}
.hierarchy-child-card__icon{font-size:1.45rem;line-height:1;margin-bottom:9px}
.hierarchy-child-card h3{margin:0 0 8px}
.hierarchy-child-card p{margin:0;line-height:1.6;opacity:.86}
@media(max-width:900px){.hierarchy-children__grid{grid-template-columns:1fr}}
