.cert-aff-left .cert-aff__title {
    color: var(--color-blue);
    padding-bottom: 2rem;
    text-align: center;

    &::before {
        content: "[ ";
    }

    &::after {
        content: " ]";
    }
}

.cert-aff-left__slider {
    position: relative;
    left: 50%;
    width: min(100vw);
    overflow: hidden;
    transform: translateX(-50%);
    /* Splide's stylesheet hides un-mounted sliders; keep the
       server-rendered row visible until the script takes over */
    visibility: visible;

    .splide__track {
        overflow: hidden;
    }

    .splide__list {
        display: flex;
        align-items: center;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
        visibility: visible;
    }

    .splide__slide {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: auto;
        height: 100px;
        margin: 0;
    }

    figure {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        margin: 0;
    }

    img {
        display: block;
        width: auto;
        height: auto;
        max-width: none;
        max-height: 100px;
        object-fit: contain;
    }
}

.cert-aff-left__slider--clone {
    display: none;
}

@media (max-width: 767px) {
    .cert-aff-left__slider--clone {
        display: block;
    }
}
