.lk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.lk-card {
    border: 2px solid #d6111e;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.lk-btn {
    background: #d6111e;
    color: #fff;
    padding: 10px 15px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
}
.lk-btn:hover {
    background: #a20d13;
}
.lk-votes {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.lk-vote {
    background: #f4f4f4;
    border: 2px solid #d6111e;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}
.lk-vote:hover {
    background: #d6111e;
    color: #fff;
}

#lk-search-container {
    margin-bottom: 20px;
}
#lk-search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.lk-pagination {
    margin-top: 30px;
    text-align: center;
}
.lk-pagination-inner button.lk-page {
    background: #fff;
    border: 2px solid #d6111e;
    color: #d6111e;
    padding: 8px 14px;
    margin: 0 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lk-pagination-inner button.lk-page:hover {
    background: #d6111e;
    color: #fff;
}
.lk-pagination-inner button.lk-page.lk-page-active {
    background: #d6111e;
    color: #fff;
}

@media (max-width: 900px) {
    .lk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .lk-grid {
        grid-template-columns: 1fr;
    }
}
