.lsm-vfl-news-carousel {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    --lsm-vfl-gap: 24px;
    --lsm-vfl-slides: 3;
}

.lsm-vfl-news-carousel * {
    box-sizing: border-box;
}

.lsm-vfl-news-viewport {
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
}

.lsm-vfl-news-track {
    display: flex;
    gap: var(--lsm-vfl-gap);
    transform: translate3d(0, 0, 0);
    transition: transform 280ms ease;
    will-change: transform;
}

.lsm-vfl-news-card {
    flex: 0 0 calc((100% - (var(--lsm-vfl-gap) * (var(--lsm-vfl-slides) - 1))) / var(--lsm-vfl-slides));
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-width: 0;
}

.lsm-vfl-news-image {
    display: block;
    width: 100%;
    background: #f2f2f2;
    overflow: hidden;
    text-decoration: none;
}

.lsm-vfl-news-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.lsm-vfl-news-image img.is-cover {
    object-fit: cover;
}

.lsm-vfl-news-image img.is-fit {
    object-fit: contain;
}

.lsm-vfl-news-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eeeeee, #d9d9d9);
}

.lsm-vfl-news-content {
    padding: 16px;
}

.lsm-vfl-news-category,
.lsm-vfl-news-meta {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.lsm-vfl-news-title {
    font-size: 16px;
    line-height: 1.25;
    margin: 0 0 8px;
    font-weight: 800;
}

.lsm-vfl-news-title a {
    color: #003b7a;
    text-decoration: none;
}

.lsm-vfl-news-title a:hover {
    text-decoration: underline;
}

.lsm-vfl-news-excerpt {
    font-size: 13px;
    line-height: 1.45;
    color: #333;
    margin: 0 0 12px;
}

.lsm-vfl-news-more {
    display: inline-block;
    color: #003b7a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.lsm-vfl-news-more:hover {
    text-decoration: underline;
}

.lsm-vfl-news-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 28px;
    height: 38px;
    transform: translateY(-50%);
    border: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lsm-vfl-news-prev {
    left: -12px;
}

.lsm-vfl-news-next {
    right: -12px;
}

.lsm-vfl-news-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.lsm-vfl-news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.lsm-vfl-news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #bbb;
    padding: 0;
    cursor: pointer;
}

.lsm-vfl-news-dot.is-active {
    background: #003b7a;
}

@media (max-width: 1024px) {
    .lsm-vfl-news-carousel {
        --lsm-vfl-slides: 2 !important;
    }
}

@media (max-width: 640px) {
    .lsm-vfl-news-carousel {
        --lsm-vfl-slides: 1 !important;
        --lsm-vfl-gap: 16px;
    }

    .lsm-vfl-news-prev {
        left: 0;
    }

    .lsm-vfl-news-next {
        right: 0;
    }
}
