.pure-flavor {

    --pure-flavor-charcoal: #414042;
    --pure-flavor-chartreuse: #e7ed00;
    --pure-flavor-light-green: #429892;
    --pure-flavor-pink: #c257a0;
    --pure-flavor-orange: #fe803a;

    .subsection-heading {
        font-family: var(--fontFamily-bold);
        font-stretch: unset;
        font-size: 1rem;
        text-transform: none;
        margin-bottom: 0;
    }
    .subsection-heading + p {
        margin-top: 0.25rem;
    }

    .logos-new-old .content-group {
        border-top: 1px solid #aaa;
        border-bottom: 1px solid #aaa;
    }

    .logos-new-old .logo-list {
        width: min(var(--contentWidthMax), 100%);
        margin: 0 auto;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 1px;
        background-color: #aaa;
    }

    .logos-new-old .logo-list li {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 6rem;
        grid-template-areas: "logo" "label";
        background-color: white;
    }

    .logos-new-old .logo-list li img {
        display: block;
        margin: 6rem auto 3rem auto !important;
        height: auto;
    }

    .logos-new-old .logo-list .logo-old img {
        width: min(300px, 80%);
    }

    .logos-new-old .logo-list .logo-new img {
        width: min(300px, 80%);
    }

    .logos-new-old .logo-list .label {
        font-family: var(--fontFamily-boldExtended);
        font-stretch: var(--fontStretch-expanded);
        text-transform: uppercase;
        color: #aaa;
        text-align: center;
    }

    @media (width > 700px) {
        .logos-new-old .logo-list {
            grid-template-columns: 1fr 1fr;
        }
    }


    .color-sample {

        padding-top: calc(var(--subsectionSpacing-height) / 2);

        .color-swatches {
            border: 1px solid black;
            display: grid;
            grid-template-columns: 70% 18% 9% 1% 1% 2%;
            gap: 0;
            background-color: white;
            margin-bottom: 2rem;
            border-radius: 0.5rem;
            overflow: clip;

            .color-swatch {
                height: 4rem;
            }

            .pure-flavor-charcoal {
                background-color: var(--pure-flavor-charcoal);
            }
            .pure-flavor-chartreuse {
                background-color: var(--pure-flavor-chartreuse);
            }
            .pure-flavor-light-green {
                background-color: var(--pure-flavor-light-green);
            }
            .pure-flavor-pink {
                background-color: var(--pure-flavor-pink);
            }
            .pure-flavor-orange {
                background-color: var(--pure-flavor-orange);
            }

            .color-label, .color-value {
                visibility: hidden;
            }
        }
        
    }

    .typography-sample {

        font-family: neulis-sans, sans-serif;
        font-weight: 700;
        font-size: 9rem;
        line-height: 1;
    }


    .image-carousel {
        background-color: white;
        overflow: clip;
        width: 100%;
    }
    .image-carousel .glide__bullets {
        position: absolute;
        bottom: 0;
    }
    .image-carousel .glide__bullet {
        padding: 0;
    }
    .image-carousel .glide__bullet::before {
        transform: none;
        background-color: var(--pure-flavor-charcoal);
    }
    .image-carousel .glide__bullet:hover::before {
        transform: none;
        background-color: var(--pure-flavor-chartreuse);
    }
    .image-carousel .glide__bullet.glide__bullet--active::before {
        transform: none;
        background-color: var(--pure-flavor-charcoal);
    }
    .image-carousel .image-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }
    .image-carousel .glide__bullets {
        position: relative;
    }
    .image-carousel .glide__bullet {
        width: 2rem;
        height: 2rem;
    }
    .image-carousel .glide__bullet::before {
        background-color: #e5e5e5;
        width:2rem;
        height: 2rem;
    }
    .image-carousel .glide__bullet.glide__bullet--active::before {
        background-color: var(--pure-flavor-chartreuse);
    }


    .testimonial {
        font-family: neulis-sans, sans-serif;
        font-style: italic;
        font-size: 2rem;
        line-height: 1.4;
        margin: 0;
        padding: 0;

        blockquote {
            margin: 0 auto;
            padding: 0;
            width: (100%, 60ch);
        }

        cite {
            display: block;
            font-family: neulis-sans, sans-serif;
            font-style: normal;
            font-size: 1.6rem;
            line-height: 1.4;
            margin: 0;
            padding: 0;
            text-indent: -2rem;
            padding-left: 2.4rem;

            .title {
                font-family: neulis-sans, sans-serif;
                font-weight: 300;
            }
        }
    }

    .section.summary {

        background-color: var(--pure-flavor-charcoal);
        color: white;

        .heading-summary {
            color: var(--pure-flavor-chartreuse);
            margin-bottom: 1rem;
        }

        .summary-services {
            margin-top: 2rem;

            .heading-services {
                color: var(--pure-flavor-chartreuse);
                margin-bottom: 0.5rem;
            }

            .services-list {
                list-style: none;
                padding: 0;
                margin: 0;

                li {
                    margin-bottom: 0.25rem;
                }
            }
        }
    }
}