.fvps-slider {
    --fvps-accent: #a00;
    --fvps-gap: 16px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    font-family: inherit;
}

.fvps-slider *,
.fvps-slider *::before,
.fvps-slider *::after {
    box-sizing: border-box;
}

.fvps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 36px;
    margin-bottom: 12px;
}

.fvps-heading {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    color: #1c1c1c;
}

.fvps-heading-spacer {
    flex: 1 1 auto;
}

.fvps-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin-left: auto;
}

.fvps-button {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    background: #fff;
    color: var(--fvps-accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    transition: opacity .2s ease, transform .2s ease;
}

.fvps-button:hover,
.fvps-button:focus-visible {
    opacity: .85;
    transform: translateY(-1px);
}

.fvps-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.fvps-viewport {
    width: 100%;
    overflow: hidden;
    transition: height .25s ease;
}

.fvps-track {
    display: flex;
    flex-direction: column;
    gap: var(--fvps-gap);
    transform: translate3d(0, 0, 0);
    transition: transform .45s ease;
    will-change: transform;
}

.fvps-item {
    flex: 0 0 auto;
    width: 100%;
    min-height: 118px;
    margin: 0;
    padding: 10px;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    border: 1px solid #ececec;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .05);
}

.fvps-image-wrap {
    position: relative;
    width: 105px;
    height: 96px;
}

.fvps-image-link,
.fvps-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    background: #f1f1f1;
}

.fvps-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.fvps-item:hover .fvps-image {
    transform: scale(1.05);
}

.fvps-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f4f4, #e2e2e2);
}

.fvps-placeholder svg {
    width: 36px;
    height: 36px;
    fill: #aaa;
}

.fvps-number {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 2;
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    border: 3px solid #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--fvps-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .15);
}

.fvps-content {
    min-width: 0;
}

.fvps-category {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 3px;
    background: var(--fvps-accent);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .02em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.fvps-title {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.fvps-title a {
    color: #222;
    text-decoration: none !important;
}

.fvps-title a:hover,
.fvps-title a:focus {
    color: var(--fvps-accent);
}

.fvps-empty {
    padding: 15px;
    border: 1px solid #eee;
    background: #fafafa;
}

@media (max-width: 480px) {
    .fvps-item {
        min-height: 102px;
        padding: 8px;
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 12px;
    }

    .fvps-image-wrap {
        width: 84px;
        height: 82px;
    }

    .fvps-title {
        font-size: 15px;
    }

    .fvps-category {
        margin-bottom: 5px;
        font-size: 10px;
    }
}
