:root {
    --lup-bg: #ffffff;
    --lup-text-main: #1a1a1a;
    --lup-text-muted: #4a4a4a;
    --lup-border: #eef2f6;
    --lup-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    --lup-shadow-hover: 0 1.5rem 4rem rgba(0, 0, 0, 0.08);
}

.lpled-up-wrapper {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem 0;
}

.lpled-up-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
}

.lpled-up-card {
    background: var(--lup-bg);
    border: 0.1rem solid var(--lup-border);
    border-radius: 1.6rem;
    padding: 3.6rem 3.2rem;
    box-shadow: var(--lup-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(3rem);
    display: flex;
    flex-direction: column;
}

.lpled-up-card.lpled-up-visible {
    opacity: 1;
    transform: translateY(0);
}

.lpled-up-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--lup-shadow-hover);
}

.lpled-up-highlight {
    border-color: rgba(225, 29, 72, 0.3);
}

.lpled-up-icon {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
}

.lpled-up-icon svg {
    width: 3.2rem;
    height: 3.2rem;
}

.lpled-up-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lup-text-main);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.lpled-up-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.lpled-up-list li {
    font-size: 1.6rem;
    color: var(--lup-text-muted);
    margin-bottom: 1.6rem;
    padding-left: 2.8rem;
    position: relative;
    line-height: 1.6;
}

.lpled-up-list li:last-child {
    margin-bottom: 0;
}

.lpled-up-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.lpled-up-card:nth-child(1) .lpled-up-list li::before { background-color: #0073e6; }
.lpled-up-card:nth-child(2) .lpled-up-list li::before { background-color: #e11d48; }
.lpled-up-card:nth-child(3) .lpled-up-list li::before { background-color: #10b981; }

@media (max-width: 767px) {
    .lpled-up-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.6rem;
        padding-bottom: 3rem;
        scrollbar-width: none;
    }
    
    .lpled-up-grid::-webkit-scrollbar {
        display: none;
    }

    .lpled-up-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        padding: 3.2rem 2.4rem;
    }
}