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

.glossary-navigation {
    overflow: inherit;
    position: sticky;
    top: 0;
    z-index: 1;
    max-width: 1312px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #8d8d8d transparent;
}

.glossary-navigation_wrap {
    width: 100%;
    list-style: none;
    display: flex;
    gap: 8px;
    padding-right: 12px;
    padding-bottom: 24px;
}

.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-top: 32px;
}

table {
    width: 100%;
    min-width: 500px;
    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: 1440px) {
    .glossary-navigation {
        max-width: 1440px;
        padding: 0 64px;
        margin: inherit;
    }
}

@media (max-width: 1024px) {
    .glossary-navigation {
        top: 65px;
        padding: 0 32px;
        background-color: white;
        padding-top: 16px;
    }
}

@media (max-width: 640px) {
    .glossary-navigation {
        padding: 16px 24px 0;
        top: 55px;
    }

    .glossary-letter {
        min-width: 44px;
        width: 44px;
        height: 44px;
    }

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

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

    .glossary-table {
        margin-top: 32px;
    }
}