.glossary-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.glossary-card {
  background: rgba(22, 16, 41, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #8B7CF6;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.glossary-card:hover {
  background: rgba(22, 16, 41, 0.8);
  border-color: rgba(139, 124, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 124, 246, 0.15);
}

.glossary-card__title {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F3F1F8;
  margin-top: 0;
  margin-bottom: 10px;
}

.glossary-card__description {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #D9D9D9;
  margin: 0;
  padding-bottom: 0 !important;
}