/* NEWS */
.news-product-count {
	position: absolute;
	right: 16px;
	bottom: 0;
	color: #aab2bd;
	font-size: 14px;
}

.news-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

@media (max-width: 1024px) {
	.news-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.news-product-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}




.news-pagination-wrapper {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.news-pagination-info {
	color: #aab2bd;
	font-size: 14px;
	margin-bottom: 12px;
}

.news-pagination-progress {
	width: 320px;
	height: 2px;
	background: #333;
	margin-bottom: 30px;
	position: relative;
}

.news-pagination-progress-bar {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--color-primary);
}

.news-pagination-controls {
	display: flex;
	align-items: center;
	gap: 6px;
}

.news-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: none;
	background: #333;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	border-radius: 2px;
	transition: all 0.2s ease;
}

.news-page-btn:hover {
	background: #555;
}

.news-page-btn.is-active {
	background: transparent;
	color: #fff;
}

.news-page-dots {
	color: #666;
	padding: 0 4px;
}


/* exhibitions 页面相关样式 */
.news-row {
	display: grid;
	grid-template-columns: 140px 1fr 340px;
	align-items: center;
	margin: 20px 0;
	background: #212121;
	border: 1px solid #2f2f2f;
	border-radius: 6px;
	overflow: hidden;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	text-decoration: none;
	color: inherit;
}

.news-row:hover {
	background: #111;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
	transform: translateY(-1px);
}

.news-date {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	height: 100%;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	padding: 22px 10px;
	color: rgba(255, 255, 255, 0.9);
	transition: background 0.2s ease;
}

.news-row:hover .news-date {
	background: var(--color-primary);
	color: #000;
}

.news-date-day {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 1px;
}

.news-date-year {
	font-size: 12px;
}

.news-main {
	padding: 16px 18px;
}

.news-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.2px;
	color: #f1f1f1;
}

.news-desc {
	margin: 0;
	color: #aeb6bf;
	line-height: 1.6;
}

.news-thumb {
	padding: 16px;
}

.news-thumb img {
	width: 333px;
	height: 165px;
	object-fit: cover;
	border-radius: 6px;
	background: #000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
	transform: scale(1);
	transition: transform 0.28s ease, filter 0.28s ease;
}

.news-row:hover .news-thumb img {
	transform: scale(1.04);
	filter: brightness(0.92);
}

@media (max-width: 1024px) {
	.news-row {
		grid-template-columns: 120px 1fr 280px;
	}
	.news-thumb img {
		width: 280px;
		height: 150px;
	}
}

@media (max-width: 640px) {
	.news-row {
		grid-template-columns: 1fr;
	}
	.news-date {
		flex-direction: row;
		justify-content: flex-start;
		gap: 12px;
		border-right: 0;
		padding: 14px 14px 0 14px;
	}
	.news-thumb {
		padding: 14px;
	}
	.news-thumb img {
		width: 100%;
		height: 180px;
	}
}

.details-title{	
	margin: 40px auto;
	padding-bottom: 1.875rem;
	font-size: clamp(12px, 3vw, 32px);
	text-align: center;
	border-bottom: 4px solid var(--color-primary);
}

.news-detail {
	max-width: 920px;
	margin: 0 auto 80px;
}

.news-detail-meta {
	color: #aab2bd;
	margin-bottom: 10px;
	font-size: 14px;
}

.news-detail-hero {
	margin: 0 0 20px;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	overflow: hidden;
}

.news-detail-hero img {
	width: 100%;
	height: auto;
	display: block;
}

.news-detail-content {
	color: #e9eef3;
	line-height: 1.85;
	font-size: 16px;
}

.news-detail-content h2 {
	margin: 22px 0 10px;
	font-size: 22px;
}

.news-detail-list {
	padding-left: 18px;
}

.news-detail-figure {
	margin: 18px 0;
}

.news-detail-figure img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.news-detail-figure figcaption {
	color: #aab2bd;
	font-size: 13px;
	margin-top: 6px;
	text-align: center;
}
