.lcc {
    position: relative;
    max-width: 100%;
}

.lcc--empty {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    
    background: #fff;
}

.lcc-viewport {
    overflow: hidden;
}

.lcc-track {
    display: flex;
    gap: var(--lcc-gap, 1rem);
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.lcc-track::-webkit-scrollbar {
    display: none;
}

.lcc-slide {
    flex: 0 0 auto;
    min-width: 0;
    scroll-snap-align: start;
}

.lcc-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    
    background: #fff;
    
}

.lcc-image {
    display: block;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: var(--lcc-image-ratio, 5 / 3);
}

.lcc-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.lcc-image:hover img {
    transform: scale(1.04);
}

.lcc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
}

.lcc-date {
    font-size: 0.85rem;
    color: #6b7280;
}

.lcc-title {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.3;
}

.lcc-title a {
    color: #01176a;
    text-decoration: none;
}

.lcc-title a:hover {
    color: #0b63ce;
    text-decoration: underline;
}

.lcc-intro {
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
}

.lcc-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    color: #111827;
    cursor: pointer;
    font-size: 1.35rem;
    transform: translateY(-50%);
}

.lcc-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.lcc-nav--prev {
    left: 0.25rem;
}

.lcc-nav--next {
    right: 0.25rem;
}

.lcc-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
}

.lcc-dot {
    width: 0.6rem;
    height: 0.6rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d1d5db;
    cursor: pointer;
}

.lcc-dot.is-active {
    width: 1.4rem;
    background: #111827;
}

@media (prefers-reduced-motion: reduce) {
    .lcc-track {
        scroll-behavior: auto;
    }

    .lcc-image img {
        transition: none;
    }
}