/* Container Styling */
.glossary-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

/* Footer */
.cu-footer .wp-block-column{
	width: 33%;
}

/* Index Styling */
.glossary-index {
  top: 0;
  background: #ffffff;
  z-index: 999;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.glossary-index a {
  color: #030067;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.glossary-index a:hover,
.glossary-index a.active {
  color: #69a237;
  text-decoration: underline;
}

/* Letter Section Headers */
.glossary-group h2 {
  font-size: 24px;
  background: #f8f8f8;
  padding: 10px 15px;
  border-left: 5px solid #69a237;
  margin: 30px 0 15px;
  font-weight: bold;
  color: #030067;
}


/* Glossary Item */
.glossary-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.glossary-item strong {
  font-weight: bold;
  color: #030067;
  font-size: 20px;
  margin-bottom: 5px;
}
.glossary-item p {
  margin: 5px 0 10px 0;
  line-height: 1.6;
}

/*
.glossary-item::before {
  content: "";
  display: block;
  width: 5px;
  background: #c0392b;
  margin-right: 10px;
  border-radius: 3px;
}*/

/* Responsive */
@media (max-width: 600px) {
  .glossary-item {
    flex-direction: column;
  }

  .glossary-item strong {
    margin-bottom: 5px;
  }

  .glossary-index a {
    font-size: 16px;
  }
	
	/* Footer */
	.cu-footer{
		flex-direction: column;
	}
.cu-footer .wp-block-column{
	width: 100%;
}
}

.back-to-top {
  bottom: 60px !important; /* 👈 Adjust this value as you like */
  right: 30px !important;   /* Optional: You can tweak this too */
}
/* Problematic term - red box */
.problematic {
  background: #f8d7da;
  padding: 10px 15px;
  border-radius: 4px;
  margin: 5px 0 10px 0;
 display: block;
}

/* Better alternative - green box */
.alternative {
  background: #d4edda;
  padding: 10px 15px;
  border-radius: 4px;
  margin: 10px 0 5px 0;
 display: block;
}
.glossary-item {
    margin-bottom: 25px;
}

.glossary-item p,
.glossary-item ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.glossary-item ul {
    padding-left: 20px;
}