.sl-lc-wrapper {
    position: relative;
    width: 100%;
}

/* slider */

.sl-lc-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    --sl-lc-gap: 16px;
}

.sl-lc-track {
    display: flex;
    will-change: transform;
}

.sl-lc-animating {
    transition: transform 0.4s ease;
}

.sl-lc-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    height: auto;
    padding-left: calc(var(--sl-lc-gap) / 2);
    padding-right: calc(var(--sl-lc-gap) / 2);
}

.sl-lc-item-inner {
    height: 100%;
    box-sizing: border-box;
}

.sl-lc-post-title {
    margin: 0 0 8px 0;
}

.sl-lc-post-title a {
    text-decoration: none;
}

.sl-lc-comment {
    margin-bottom: 8px;
}

.sl-lc-author {
    font-size: 0.85em;
    opacity: 0.8;
}

/* Strelice */

.sl-lc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 1;
    user-select: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sl-lc-wrapper:hover .sl-lc-arrow {
    opacity: 1;
    pointer-events: auto;
}

.sl-lc-arrow-prev {
    left: 0;
}

.sl-lc-arrow-next {
    right: 0;
}

.sl-lc-arrows-inside .sl-lc-arrow-prev {
    left: 8px;
}

.sl-lc-arrows-inside .sl-lc-arrow-next {
    right: 8px;
}

.sl-lc-arrows-outside .sl-lc-arrow-prev {
    left: -16px;
}

.sl-lc-arrows-outside .sl-lc-arrow-next {
    right: -16px;
}

/* Dots */

.sl-lc-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    gap: 8px;
}

.sl-lc-dots-inside .sl-lc-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
}

.sl-lc-dot {
    display: inline-block;
    border-radius: 999px;
    background-color: #ddd;
    width: 8px;
    height: 8px;
    cursor: pointer;
}

.sl-lc-dot-active {
    background-color: #111;
}

/* No comments */

.sl-lc-no-comments {
    font-size: 0.95em;
    opacity: 0.8;
}
