.lp-container-e793976f {
    font-family: inherit;
}
.lp-main-title-e793976f {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}
.lp-grid-e793976f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.lp-item-e793976f {
    display: block;
    text-decoration: none;
    background: #1e1e1e; /* dark mode card background */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}
.lp-item-e793976f:hover {
    transform: translateY(-5px);
}
.lp-item-e793976f img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.lp-title-e793976f {
    padding: 15px;
    margin: 0;
    font-size: 18px;
    color: #ffffff; /* dark mode text */
}