.slc-carousel-wrapper {
    --slc-height: 100px;
    --slc-spacing: 50px;
    --slc-hover-scale: 1.05;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slc-carousel-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

.slc-logo {
    /* Viktig for høyde og horisontal layout */
    flex-shrink: 0;
    height: var(--slc-height);
    max-height: var(--slc-height);
    width: auto;
    object-fit: contain;

    margin: 0 var(--slc-spacing);
    transition: transform 0.3s ease;
    mix-blend-mode: var(--slc-blend-mode, multiply);

    /* Nullstill potensielle tema-stiler */
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-block;
    vertical-align: middle;
}

.slc-logo:hover {
    transform: scale(var(--slc-hover-scale));
}

@media (max-width: 768px) {
    .slc-carousel-wrapper {
        --slc-height: 70px;
        --slc-spacing: 30px;
    }
}
