.glossary-items-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin: auto;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.tabs-container {
  display: flex;
  overflow-x: auto;
  gap: .5rem;
  position: sticky;
  top: 5.5rem;
  background: #FFF;
}

.tabs-container::-webkit-scrollbar {
  height: 0.25rem;
}

.tabs-container::-webkit-scrollbar-thumb {
  background: #AAA;
  border-radius: 10px;
}

div#content h2.glossary-term, div#content h2.glossary-term a {
  padding: 0.5rem 0.875rem;
  border-bottom: 2px solid #fff;

  font-family: var(--site-font-normal);
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: none;

  box-sizing: content-box;
  white-space: nowrap;
  color: #092B66;
}

div#content h2.glossary-term:hover {
    cursor: pointer;
}

.definition-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

div#content .definition-container h2 {
  font-size: 2rem;
  line-height: 38.4px;
  font-family: var(--site-font-bold);
}

div#content .definition-container p {
  font-size: var(--site-font-normal);
  font-size: 1.5rem;
  line-height: 2.25rem;
  max-width: 680px;
}

div#content h2.active-glossary-term {
  font-family: var(--site-font-bold);
  border-color: #f17c00;
}

@media (max-width: 412px) {
    .definition-container {
        flex-direction: column;
        gap: 1rem;
    }

    div#content h2.glossary-term {
        white-space: nowrap;
        width: fit-content;
    }

    .glossary-items-container {
        gap: 1.5rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;     
    }
}