    .az-glossary {
        margin: 0 auto;
        padding-top: 60px;
    }

    /* search */
    .az-glossary__search {
        position: relative;
        margin: 4rem 2rem
    }

    .az-glossary__search input {
        font-size: 1.7rem;
		padding: 1.8rem;
		display: inline-block !important;
		border-radius: 3px !important;
		border: none;
		width: 100%;
        box-sizing: border-box;
        transition:
            border-color .2s ease,
            box-shadow .2s ease;
    }

    .az-glossary__search input:focus {
        border-color: var(--purple);
        box-shadow: 0 0 0 3px rgba(23, 37, 45, .08);
    }

    .az-glossary__result-count {
        margin: -2rem 0 0 2rem;
        font-size: 14px;
        color: #fff;
    }

    .az-glossary__result-count:empty {
        display: none;
    }

    /* letters nav */
    .az-glossary__letters {
        position: sticky;
        top: 10px;
        z-index: 10;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 7px;
        margin: 0 0 65px;
        padding: 14px;
        border: 1px solid var(--lightGrey);
        border-radius: 4px;
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
        backdrop-filter: blur(8px);
    }

    .az-glossary__letters a {
        display: flex;
        align-items: center;
        justify-content: center;
		border-radius: 50px;
        width: 40px;
        height: 40px;
        text-decoration: none;
        font-weight: 700;
        transition:
            background .2s ease,
            color .2s ease;
    }

    .az-glossary__letters a:hover,
    .az-glossary__letters a:focus {
        background: var(--purple);
		color: #fff;
    }

    /* LETTER SECTION */
    .az-letter {
        scroll-margin-top: 100px;
        margin-bottom: 65px;
    }

    .az-letter__heading {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 12px;
    }

    .az-letter__heading span {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: var(--beige);
        font-size: 25px;
        font-weight: 700;
    }

    /*.az-letter__heading::after {
        content: "";
        height: 1px;
        flex: 1;
        background: rgba(23, 37, 45, .14);
    }*/

    /* terms */
    .az-term:first-of-type {
        border-top: 1px solid rgba(23, 37, 45, .13);
    }

    .az-term summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 22px 8px;
        cursor: pointer;
        list-style: none;
        font-size: 20px;
        font-weight: 600;
		color: var(--darkPurple);
    }
	
	.az-term:hover summary, .az-term:focus summary {
		color: var(--purple);
	}

    .az-term summary::-webkit-details-marker {
        display: none;
    }

    .az-term summary::after {
        content: "+";
		color: var(--purple);
        flex: 0 0 auto;
        font-size: 25px;
        font-weight: 400;
        transition: transform .2s ease;
    }

    .az-term[open] summary::after {
        transform: rotate(45deg);
    }

    .az-term__definition {
        max-width: 850px;
        padding: 0 55px 25px 8px;
    }

    .az-term__definition p {
        margin: 0;
    }

    /*  no results found */
    .az-glossary__no-results {
        display: none;
        max-width: 650px;
        margin: 40px auto;
        padding: 40px 25px;
        border-radius: 4px;
        background: #fafafa;
    }

    /* HIDDEN STATES */
    .az-letter.is-hidden {
        display: none;
    }

    .az-term.is-hidden {
        display: none;
    }

    /*  mobile */
    @media (max-width: 768px) {
        .az-glossary {
            padding: 45px 18px 70px;
        }

        .az-glossary__intro h1 {
            font-size: 42px;
        }

        .az-glossary__intro p {
            font-size: 17px;
        }

        .az-glossary__letters {
            top: 5px;
            gap: 6px;
            margin-bottom: 45px;
            padding: 10px;
        }

        .az-glossary__letters a {
            width: 29px;
            height: 29px;
        }

        .az-letter {
            margin-bottom: 50px;
        }

        .az-letter__heading span {
            width: 50px;
            height: 50px;
            font-size: 22px;
        }

        .az-term summary {
            padding: 19px 4px;
            font-size: 16px;
        }

        .az-term__definition {
            padding: 0 35px 22px 4px;
            font-size: 15px;
        }
    }