.glossary__search {
    input {
        width: 28rem;
        height: 3rem;
        padding: 0.875rem 1rem;
        border-radius: 0.25rem;
        border: 1px solid var(--gray-200);

        &:focus::placeholder {
            opacity: .8;
        }

        &::placeholder {
            color: var(--gray-500);
        }
    }
}

.glossary__quicklinks {
    a {
        padding: .5rem .745rem;
        text-decoration: none;
        font-family: var(--museo);
        font-size: 1.6875rem;
        font-weight: 700;

        &:hover {
            text-decoration: underline;
            color: var(--primary-500);
        }
    }
}

.glossary__list {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;

    &>li {
        width: calc(50% - 2rem);
        @media (min-width: 768px) {
            width: calc(25% - 3rem);
        }
    }
}

.glossary__letter {
    &>li:first-child {
        font-family: var(--museo);
        font-size: 1.6875rem;
        font-weight: 700;
        color: var(--primary-300);
        position: relative;
        background: var(--white);
        z-index: 1;

        &:after {
            content: "";
            width: 100%;
            height: 1px;
            position: absolute;
            background: var(--gray-200);
            top: calc(50% - 0.5px);
            left: 0;
            z-index: 0;
        }
    }

    a {
        text-decoration: none;
        color: var(--gray-500);
        font-size: 1.125rem;

        &:hover {
            text-decoration: underline;
        }
    }

    span {
        background: #FFF;
        z-index: 1;
        padding: 0 0.5rem 0 0;
        position: relative;
    }
}

.glossary-article {
    .ttb {

        h2,
        h3,
        .text {
            color: var(--white);
        }

        .text {
            text-align: center;
        }

        .btn {
            margin: auto;
        }

        &.bg--img::after {
            background-color: var(--primary-500);
            opacity: .6;
        }

        &.bg--img:not(.full-width) {
            &>picture>img {
                border-radius: 0.5rem;
            }

            &::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: -1;
                border-radius: 0.5rem;
            }
        }
    }

    .header_video {
        h1 {
            color: var(--white);
        }

        &.section-with-bg.section {
            @media (min-width: 768px) {
                padding: 2rem;
            }
        }
    }

    .header_video__inner {
        min-height: 13rem;
    }

    .header_video__youtube {
        width: 100%;
        max-width: 35rem;
        aspect-ratio: 1.77777777;
        padding: 1.5rem 0 0;

        @media (min-width: 768px) {
            width: calc(50% - 2.5rem);
            padding: 0;
        }
    }

    .cards__list {
        .card {
            img {
                aspect-ratio: 2;
                object-position: center;
            }

            h3 {
                min-height: auto;
            }
        }

        .card__content {
            gap: 1rem;
        }

        .card__description {
            line-clamp: 3;
            -webkit-line-clamp: 3;
            height: 3.5rem;
        }
    }
}