
.szlsp-wrapper {
    --szlsp-visible-desktop: 5;
    --szlsp-visible-tablet: 3;
    --szlsp-visible-mobile: 2;
    --szlsp-gap: 18px;
    --szlsp-box-padding: 18px;
    --szlsp-logo-height: 42px;
    width: 100%;
}
.szlsp-heading {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
}
.szlsp-viewport {
    width: 100%;
    overflow: hidden;
}
.szlsp-track {
    display: flex;
    align-items: stretch;
    gap: var(--szlsp-gap);
    will-change: transform;
}
.szlsp-type-grid .szlsp-track {
    flex-wrap: wrap;
}
.szlsp-item {
    flex: 0 0 calc((100% - (var(--szlsp-gap) * (var(--szlsp-visible-desktop) - 1))) / var(--szlsp-visible-desktop));
    min-width: 0;
}
.szlsp-card {
    height: 100%;
    min-height: calc(var(--szlsp-logo-height) + (var(--szlsp-box-padding) * 2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--szlsp-box-padding);
    box-sizing: border-box;
    border: 1px solid #e8ecf3;
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.szlsp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border-color: #d7dfeb;
}
.szlsp-no-box .szlsp-card {
    padding: 0;
    border: 0;
    background: transparent;
    min-height: auto;
    box-shadow: none;
}
.szlsp-no-box .szlsp-card:hover {
    transform: none;
}
.szlsp-card img {
    display: block;
    max-width: 100%;
    height: var(--szlsp-logo-height);
    object-fit: contain;
    width: auto;
    filter: saturate(1);
    opacity: 0.96;
}
.szlsp-type-grid .szlsp-item {
    margin-bottom: var(--szlsp-gap);
}
@media (max-width: 1024px) {
    .szlsp-item {
        flex-basis: calc((100% - (var(--szlsp-gap) * (var(--szlsp-visible-tablet) - 1))) / var(--szlsp-visible-tablet));
    }
    .szlsp-heading {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .szlsp-item {
        flex-basis: calc((100% - (var(--szlsp-gap) * (var(--szlsp-visible-mobile) - 1))) / var(--szlsp-visible-mobile));
    }
    .szlsp-heading {
        font-size: 20px;
    }
    .szlsp-card {
        border-radius: 14px;
    }
}
