/* Grid identičan glavnim kategorijama; nazivi se prelamaju */
.szp-main-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px; margin:10px 0 40px;
}
.szp-main-grid .szp-main-cat{
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:24px; border:2px solid #0b2a84; color:#0b2a84; text-decoration:none;
  font-size:20px; font-weight:800; min-height:96px; border-radius:12px;
  transition:all .25s ease-in-out; background:transparent;
}
.szp-main-grid .szp-main-cat span{
  display:block;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
  line-height:1.2;
  max-width:100%;
}
.szp-main-grid .szp-main-cat:hover,.szp-main-grid .szp-main-cat:focus{
  background:#FFD700; color:#0b2a84; outline:0;
}