.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.article-item {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.article-item .article-thumbnail {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.article-item .article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info {
    padding: 20px 0px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.article-info h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.article-info h3 a:hover {
    color: #3498db;
}

.article-info .article-summary {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-articles .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.no-articles .btn:hover {
    background-color: #2980b9;
}

.category-list a.active,
.archive-list a.active {
    color: #3498db;
    font-weight: bold;
}

.tag.active {
    background: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .article-item {
        flex-direction: column;
    }

    .article-item .article-thumbnail {
        width: 100%;
        height: 200px;
    }

    .article-info {
        padding: 15px;
    }
}
