.pgc-wrap {
	width: 100%;
}

.pgc-section-header {
	text-align: left;
	margin-bottom: 24px;
	display: block;
	width: 100%;
	clear: both;
}

.pgc-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #333333;
	margin: 0 0 12px 0;
	padding: 0;
}

.pgc-section-separator {
	border-top: 1px solid #e5e5e5;
	width: 100%;
}

.pgc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 24px;
	row-gap: 40px;
	width: 100%;
	clear: both;
}

.pgc-item {
	display: flex;
	flex-direction: column;
}

.pgc-image-wrap {
	display: block;
	height: 320px;
	background-color: #f0f0f0;
	overflow: hidden;
	padding: 16px;
	box-sizing: border-box;
	text-decoration: none;
}

.pgc-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.pgc-image-wrap:hover img {
	transform: scale(1.05);
}

.pgc-title-wrap {
	text-align: center;
	margin-top: 16px;
}

.pgc-title {
	font-size: 15px;
	color: #555555;
	text-decoration: none;
	position: relative;
	display: inline;
	transition: color 0.2s ease;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0% 1px;
	transition: background-size 0.3s ease, color 0.2s ease;
	padding-bottom: 2px;
}

.pgc-title:hover {
	color: #b8860b;
	background-size: 100% 1px;
}

/* 分页样式 */
.pgc-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
}

.pgc-pagination-btn {
	font-size: 14px;
	padding: 12px 16px;
	border: 1px solid #333333;
	background-color: #ffffff;
	color: #333333;
	cursor: pointer;
	transition: all 0.2s ease;
	min-width: 44px;
	text-align: center;
}

.pgc-pagination-btn:hover {
	background-color: #333333;
	color: #ffffff;
}

.pgc-pagination-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: #cccccc;
	border-color: #cccccc;
	color: #ffffff;
}

.pgc-pagination-btn.is-active {
	background-color: #000000;
	color: #ffffff;
	border-color: #000000;
}

@media (max-width: 767px) {
	.pgc-grid {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 12px;
		row-gap: 24px;
	}

	.pgc-image-wrap {
		height: 200px;
		padding: 10px;
	}

	.pgc-title {
		font-size: 13px;
	}

	.pgc-pagination-btn {
		padding: 10px 12px;
		font-size: 12px;
		min-width: 36px;
	}
}
