.lpd-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lpd-item {
    width: 32%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.lpd-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.lpd-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lpd-content {
    padding: 15px;
}

.lpd-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.lpd-excerpt {
    font-size: 14px;
    color: #666;
}

.lpd-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}