/* Articles Grid */
.ikbase-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ikbase-article-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ikbase-article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ikbase-article-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ikbase-article-item h3 {
    margin-bottom: 10px;
    color: #1e73be;
}

.ikbase-article-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.ikbase-arrow {
    color: #1e73be;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-left: 10px;
}

.ikbase-article-item:hover .ikbase-arrow {
    color: #0056b3;
}

/* Article Body */
.ikbase-article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Article Feedback */
.ikbase-feedback-container {
    margin: 40px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.ikbase-like-dislike {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.ikbase-like,
.ikbase-dislike {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ikbase-like:hover,
.ikbase-dislike:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ikbase-like.disabled,
.ikbase-dislike.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ikbase-like.voted {
    background: #28a745;
    color: #fff;
}

.ikbase-dislike.voted {
    background: #dc3545;
    color: #fff;
}

/* View Count */
.ikbase-view-container {
    text-align: right;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

/* Related Articles */
.ikbase-related-articles {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Articles */
@media screen and (max-width: 768px) {
    .ikbase-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .ikbase-article-body {
        padding: 15px;
    }
} 