.lgs-20bbc50c-wrapper {
    font-family: inherit;
    background: #f4f6fa;
    padding: 60px 40px;
    border-radius: 24px;
    overflow: hidden;
}

.lgs-20bbc50c-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.lgs-20bbc50c-badge {
    display: inline-block;
    background: #e1f0fa;
    color: #0073c4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.lgs-20bbc50c-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px 0;
}

.lgs-20bbc50c-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.lgs-20bbc50c-nav {
    display: flex;
    gap: 12px;
}

.lgs-20bbc50c-prev,
.lgs-20bbc50c-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s;
}

.lgs-20bbc50c-prev:hover,
.lgs-20bbc50c-next:hover {
    background: #f0f0f0;
}

.lgs-20bbc50c-slider {
    margin: 0 -40px;
    padding: 0 40px;
}

.lgs-20bbc50c-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 24px;
}

.lgs-20bbc50c-track::-webkit-scrollbar {
    display: none;
}

.lgs-20bbc50c-card {
    flex: 0 0 380px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.lgs-20bbc50c-card:hover {
    transform: translateY(-4px);
}

.lgs-20bbc50c-card-top {
    height: 200px;
    position: relative;
}

.lgs-20bbc50c-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lgs-20bbc50c-card-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.lgs-20bbc50c-card-bottom {
    padding: 30px;
    flex-grow: 1;
}

.lgs-20bbc50c-card-meta {
    font-size: 14px;
    color: #0052cc;
    font-weight: 700;
    margin-bottom: 12px;
}

.lgs-20bbc50c-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.lgs-20bbc50c-card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.lgs-20bbc50c-scrollbar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.lgs-20bbc50c-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #999;
    border-radius: 3px;
    width: 20%;
    transition: transform 0.1s;
}

@media (max-width: 768px) {
    .lgs-20bbc50c-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .lgs-20bbc50c-card {
        flex: 0 0 85vw;
    }
}