.shen-article-list { --shen-list-accent: #001f55; position: relative; }
.shen-article-list__toolbar {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.shen-article-list__count { margin: 0; color: #172033; font-size: 15px; font-weight: 600; }
.shen-article-list__total { color: var(--shen-list-accent); }
.shen-article-list__chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 auto; }
.shen-article-list__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 9px;
	border: 0;
	background: var(--shen-list-accent);
	color: #fff;
	font-size:13px;
	cursor: pointer;
}
.shen-article-list__chip i { font-style: normal; opacity: .8; }
.shen-article-list__orderby {
	padding: 8px 12px;
	border: 1px solid #dfe2e8;
	background: #fff;
	color: #48505f;
	font-size: 13px;
}
.shen-article-list__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.shen-article-list__empty { padding: 40px 0; color: #6b7280; text-align: center; }

.shen-article-card { display: flex; flex-direction: column; border: 1px solid #e6e8ec; background: #fff; overflow: hidden; }
.shen-article-card__media { position: relative; display: block; aspect-ratio: 16 / 9; background: #eef1f5; overflow: hidden; }
.shen-article-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.shen-article-card:hover .shen-article-card__media img { transform: scale(1.04); }
.shen-article-card__placeholder { position: absolute; inset: 0; background: linear-gradient(120deg, #dbe3ee, #eef1f5); }
.shen-article-card__badges { position: absolute; left: 12px; bottom: 12px; display: flex; gap: 6px; }
.shen-article-card__badge { padding: 3px 8px; font-size:13px; color: #fff; background: rgba(23, 32, 51, .82); }
.shen-article-card__badge.is-category { background: var(--shen-list-accent); }
.shen-article-card__badge.is-country { background: rgba(255, 255, 255, .9); color: #172033; }

.shen-article-card__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 18px; }
.shen-article-card__title { margin: 0 0 12px; font-size: 19px; line-height: 1.5; font-weight: 700; }
.shen-article-card__title a { color: #172033; text-decoration: none; }
.shen-article-card__title a:hover { color: var(--shen-list-accent); }
.shen-article-card__excerpt { margin: 0 0 18px; color: #6b7280; font-size: 13px; line-height: 1.8; }
.shen-article-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.shen-article-card__footer time { color: #98a1b0; font-size:13px; }
.shen-article-card__more { padding: 6px 12px; border: 1px solid var(--shen-list-accent); color: var(--shen-list-accent); font-size:13px; text-decoration: none; }
.shen-article-card__more:hover { background: var(--shen-list-accent); color: #fff; }

.shen-article-list__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 34px;
}
.shen-article-list__page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 10px;
	border: 1px solid #e3e6eb;
	background: #fff;
	color: #48505f;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.shen-article-list__page:hover:not(.is-disabled):not(.is-active) { border-color: var(--shen-list-accent); color: var(--shen-list-accent); }
.shen-article-list__page.is-active {
	border-color: var(--shen-list-accent);
	background: var(--shen-list-accent);
	color: #fff;
	font-weight: 600;
}
.shen-article-list__page.is-disabled { opacity: .45; cursor: default; pointer-events: none; }
.shen-article-list__page--prev,
.shen-article-list__page--next { font-size: 18px; }
.shen-article-list__ellipsis {
	display: inline-flex;
	align-items: flex-end;
	min-width: 24px;
	height: 44px;
	padding-bottom: 12px;
	color: #98a1b0;
	justify-content: center;
}

/* 骨架动画 */
.shen-article-list__skeleton { display: none; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.shen-article-list.is-loading .shen-article-list__skeleton { display: grid; }
.shen-article-list.is-loading .shen-article-list__results { display: none; }
.shen-skeleton-card { padding: 0 0 18px; border: 1px solid #e6e8ec; background: #fff; }
.shen-skeleton { background: linear-gradient(90deg, #eef1f5 25%, #e2e6ec 37%, #eef1f5 63%); background-size: 400% 100%; animation: shen-skeleton 1.3s ease-in-out infinite; }
.shen-skeleton--media { aspect-ratio: 16 / 9; }
.shen-skeleton--title { height: 20px; margin: 18px 18px 12px; }
.shen-skeleton--text { height: 12px; margin: 0 18px 8px; }
.shen-skeleton--text.is-short { width: 55%; }

@keyframes shen-skeleton {
	0% { background-position: 100% 50%; }
	100% { background-position: 0 50%; }
}
@media (prefers-reduced-motion: reduce) {
	.shen-skeleton { animation: none; }
}
@media (max-width: 767px) {
	.shen-article-list__grid,
	.shen-article-list__skeleton { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px; }
	.shen-article-list__toolbar { align-items: stretch; flex-direction: column; gap: 10px; }
	.shen-article-list__orderby { width: 100%; min-height: 44px; }
	.shen-article-card__badges { left: 7px; bottom: 7px; gap: 4px; }
	.shen-article-card__badge { padding: 3px 5px; font-size: 10px; }
	.shen-article-card__body { padding: 12px 10px; }
	.shen-article-card__title { margin-bottom: 8px; font-size: 15px; line-height: 1.45; }
	.shen-article-card__excerpt { display: -webkit-box; margin-bottom: 12px; font-size: 12px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
	.shen-article-card__footer { align-items: stretch; flex-direction: column; gap: 8px; }
	.shen-article-card__footer time { font-size: 11px; }
	.shen-article-card__more { padding: 7px 6px; font-size: 12px; text-align: center; }
	.shen-article-list__pagination { gap: 5px; margin-top: 26px; }
	.shen-article-list__page { min-width: 38px; height: 40px; padding: 0 8px; }
}

@media (max-width: 390px) {
	.shen-article-list__grid,
	.shen-article-list__skeleton { gap: 9px; }
	.shen-article-card__body { padding: 10px 8px; }
	.shen-article-card__title { font-size: 14px; }
}
