:root {
    --lpled-primary: #0073e6;
    --lpled-bg: #ffffff;
    --lpled-text-main: #1a1a1a;
    --lpled-text-muted: #4a4a4a;
    --lpled-border: #eef2f6;
    --lpled-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    --lpled-shadow-hover: 0 1.5rem 4rem rgba(0, 115, 230, 0.1);
}

.lpled-wrapper {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem 0;
}

.lpled-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
}

.lpled-card {
    background: var(--lpled-bg);
    border: 0.1rem solid var(--lpled-border);
    border-radius: 1.6rem;
    padding: 3.6rem 3.2rem;
    box-shadow: var(--lpled-shadow);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(3rem);
    display: flex;
    flex-direction: column;
}

.lpled-card.lpled-visible {
    opacity: 1;
    transform: translateY(0);
}

.lpled-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--lpled-shadow-hover);
    border-color: rgba(0, 115, 230, 0.2);
}

.lpled-icon {
    width: 5.6rem;
    height: 5.6rem;
    background: rgba(0, 115, 230, 0.08);
    color: var(--lpled-primary);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
}

.lpled-icon svg {
    width: 2.8rem;
    height: 2.8rem;
}

.lpled-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lpled-text-main);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.lpled-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.lpled-list li {
    font-size: 1.6rem;
    color: var(--lpled-text-muted);
    margin-bottom: 1.4rem;
    padding-left: 2.8rem;
    position: relative;
    line-height: 1.6;
}

.lpled-list li strong {
    color: var(--lpled-text-main);
    font-weight: 600;
}

.lpled-list li:last-child {
    margin-bottom: 0;
}

.lpled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: var(--lpled-primary);
    border-radius: 50%;
}

@media (max-width: 767px) {
    .lpled-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-grid::-webkit-scrollbar {
        display: none;
    }

    .lpled-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        padding: 2.8rem 2.4rem;
    }
}