/* Glossary layout */
/* Related Terms grid: consistent cards */
.related-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}
.related-card{display:flex;flex-direction:column;gap:8px;min-height:120px;padding:16px;border:1px solid #e5e7eb;border-radius:12px;background:#fff}
.related-card h3{margin:0 0 6px;line-height:1.25}
.related-card .excerpt{
  color:#475569;font-size:14px;line-height:1.5;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;
  overflow:hidden;max-height:4.6em; /* 3 satýr civarý */
}
.related-card:hover{box-shadow:0 1px 8px rgba(2,6,23,.06)}
.button.disabled{opacity:.45;cursor:default}