.llc-block {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.llc-block *,
.llc-block *::before,
.llc-block *::after {
    box-sizing: border-box;
}

.llc-title {
    margin: 0 0 42px;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.2;
    text-transform: uppercase;
}

.llc-carousel-shell {
    position: relative;
    padding: 0 52px;
}

.llc-viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.llc-track {
    display: flex;
    align-items: stretch;
    gap: var(--llc-gap, 30px);
    will-change: transform;
}

.llc-track.is-animating {
    transition: transform 520ms cubic-bezier(.22, .61, .36, 1);
}

.llc-block.is-static .llc-track {
    justify-content: center;
}

.llc-slide {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.llc-logo-link,
.llc-logo-static {
    display: flex;
    width: 100%;
    min-height: calc(var(--llc-max-height, 120px) + 40px);
    padding: 20px 12px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.llc-logo-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: var(--llc-max-height, 120px);
    object-fit: contain;
    margin: 0 auto;
    transition: transform 180ms ease, opacity 180ms ease;
}

.llc-logo-link:hover .llc-logo-image,
.llc-logo-link:focus-visible .llc-logo-image {
    transform: scale(1.035);
    opacity: .88;
}

.llc-logo-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.llc-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: .75;
    transition: opacity 150ms ease, transform 150ms ease;
}

.llc-arrow:hover,
.llc-arrow:focus-visible {
    opacity: 1;
}

.llc-arrow:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.llc-arrow-prev {
    left: 0;
}

.llc-arrow-next {
    right: 0;
}

.llc-block.is-static .llc-arrow {
    display: none;
}

@media (max-width: 767px) {
    .llc-title {
        margin-bottom: 24px;
    }

    .llc-carousel-shell {
        padding: 0 38px;
    }

    .llc-arrow {
        width: 32px;
        height: 32px;
        font-size: 26px;
    }

    .llc-logo-link,
    .llc-logo-static {
        padding: 14px 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .llc-track.is-animating,
    .llc-logo-image,
    .llc-arrow {
        transition: none !important;
    }
}
