.website-article-list-page {
    padding-bottom: 48px;
}

.website-article-list-page .list-header {
    margin: 24px 0 20px;
}

.website-article-list-page .list-header h1 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
}

.website-article-list-page .list-header p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.website-article-list-page .tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.website-article-list-page .tag-filter-item {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.website-article-list-page .tag-filter-item:hover,
.website-article-list-page .tag-filter-item:focus {
    text-decoration: none;
    color: #1e88e5;
    border-color: #b3d9ff;
}

.website-article-list-page .tag-filter-item.active {
    background: #1e88e5;
    border-color: #1e88e5;
    color: #fff;
}

.website-article-list-page .article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.website-article-list-page .article-list-item {
    margin-bottom: 16px;
}

.website-article-list-page .article-list-link {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    color: inherit;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.website-article-list-page .article-list-link:hover,
.website-article-list-page .article-list-link:focus {
    text-decoration: none;
    color: inherit;
    border-color: #d0e8ff;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.08);
}

.website-article-list-page .article-list-cover {
    flex: 0 0 160px;
    width: 160px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
}

.website-article-list-page .article-list-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.website-article-list-page .article-list-body {
    flex: 1;
    min-width: 0;
}

.website-article-list-page .article-list-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin: 0 0 8px;
}

.website-article-list-page .article-list-summary {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.website-article-list-page .article-list-meta {
    font-size: 13px;
    color: #999;
}

.website-article-list-page .article-list-meta .tag {
    display: inline-block;
    padding: 1px 8px;
    margin-right: 8px;
    background: #e8f4ff;
    color: #1e88e5;
    border-radius: 3px;
}

.website-article-list-page .list-empty {
    padding: 48px 24px;
    text-align: center;
    color: #999;
    background: #fff;
    border: 1px dashed #e0e0e0;
    border-radius: 6px;
}

.website-article-list-page .list-pagination {
    margin-top: 28px;
    text-align: center;
}

.website-article-list-page .list-pagination .btn + .btn {
    margin-left: 12px;
}

@media (max-width: 767px) {
    .website-article-list-page .article-list-link {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }

    .website-article-list-page .article-list-cover {
        flex: none;
        width: 100%;
        height: 180px;
    }

    .website-article-list-page .list-header h1 {
        font-size: 22px;
    }
}
