
.lu-section {
    background: #0e0e0e;
    padding: 56px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lu-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.lu-scroller {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px;
}

.lu-scroller::-webkit-scrollbar { display: none; }
.lu-card:first-child { margin-left: auto; }
.lu-card:last-child  { margin-right: auto; }

.lu-card {
    flex: 0 0 auto;
    width: 380px;
    display: flex;
    gap: 16px;
    align-items: center;
    background: #161616;
    border: 1px solid #262626;
    border-radius: 14px;
    padding: 12px;
    text-decoration: none;
    scroll-snap-align: start;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lu-card:hover { border-color: rgba(255, 255, 255, 0.18); background: #191919; }

.lu-thumb {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.lu-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    justify-content: center;
}

.lu-card-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lu-read {
    color: #a0a0a0;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .lu-section { padding: 48px 16px; }
    .lu-scroller { justify-content: flex-start; }
    .lu-card { width: 88%; }
    .lu-thumb { width: 104px; height: 104px; }
}
