:root {
    --lrep-bg: #ffffff;
    --lrep-text-main: #1a1a1a;
    --lrep-text-muted: #4a4a4a;
    --lrep-border: #eef2f6;
    --lrep-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    --lrep-shadow-hover: 0 1.5rem 4rem rgba(0, 0, 0, 0.08);
}

.lpled-rep-wrapper {
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
    padding: 2rem 0;
}

.lpled-rep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.lpled-rep-card {
    background: var(--lrep-bg);
    border: 0.1rem solid var(--lrep-border);
    border-radius: 1.6rem;
    padding: 4rem 3.2rem;
    box-shadow: var(--lrep-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(3rem);
    display: flex;
    flex-direction: column;
}

.lpled-rep-card.lpled-rep-visible {
    opacity: 1;
    transform: translateY(0);
}

.lpled-rep-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--lrep-shadow-hover);
}

.lpled-rep-icon {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
}

.lpled-rep-icon svg {
    width: 3.2rem;
    height: 3.2rem;
}

.lpled-rep-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lrep-text-main);
    margin-bottom: 2.4rem;
    line-height: 1.4;
}

.lpled-rep-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.lpled-rep-list li {
    font-size: 1.6rem;
    color: var(--lrep-text-muted);
    margin-bottom: 1.6rem;
    padding-left: 3.2rem;
    position: relative;
    line-height: 1.6;
}

.lpled-rep-list li:last-child {
    margin-bottom: 0;
}

.lpled-rep-list li strong {
    color: var(--lrep-text-main);
}

.lpled-rep-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.lpled-rep-search li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea4335' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.lpled-rep-trust li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

@media (max-width: 767px) {
    .lpled-rep-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-rep-grid::-webkit-scrollbar {
        display: none;
    }

    .lpled-rep-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        padding: 3.2rem 2.4rem;
    }
}