.section-glossary {
    overflow: inherit;
    padding-top: 0;
}

.glossary-navigation {
    list-style: none;
    overflow: inherit;
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #F0F0F0;
    overflow-x: auto;
    padding: 16px;
    background: #ffffff;
}

.glossary-letter {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 52px;
    width: 52px;
    height: 52px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    background: var(--white);
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

.glossary-letter:hover,
.glossary-letter:focus {
    text-decoration: none;
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
}

.glossary-letter.active {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
}

.glossary-letter.disabled {
    color: #F0F0F0;
    pointer-events: none;
    cursor: default;
}

.glossary-table {
    overflow-x: auto;
    margin: 64px 64px 0;
}

table {
    width: 100%;
    border: 1px solid #F0F0F0;
}

tbody tr:nth-child(odd)  {
    background: #FAFAFA;
}

th {
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    color: var(--black);
    text-align: left;
    padding: 16px 24px;
}

td {
    height: 128px;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    padding: 24px;
}

th:nth-child(1),
td:nth-child(1) {
    border-right: 1px solid #F0F0F0;
}

td:nth-child(1) {
    color: var(--black);
    font-weight: 700;
    width: 300px;
}

td:nth-child(2) {
    width: 900px;
}

@media (max-width: 1439px) {
    .glossary-table {
        margin: 0;
    }

    table {
        margin: 64px 64px 0;
    }
}

@media (max-width: 1024px) {
    table {
        margin: 56px 32px 0;
    }
    .glossary-navigation {
        top: 64px;
    }
}

@media (max-width: 640px) {
    .glossary-letter {
        min-width: 44px;
        width: 44px;
        height: 44px;
    }

    table {
        margin: 48px 24px 0;
    }

    td:nth-child(1) {
        width: 250px;
    }

    td:nth-child(2) {
        width: 700px;
    }
}