.pse-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.pse-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px dashed #d8d3c9;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.pse-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.pse-card-image {
	position: relative;
	height: 230px;
	background-color: #f2f1ee;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.pse-badge {
	display: inline-block;
	margin: 16px;
	padding: 6px 14px;
	background-color: #cb9a50;
	color: #2b2b2b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	border-radius: 999px;
	white-space: nowrap;
}

.pse-card-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.pse-card-title {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 600;
	color: #1f1f1f;
	line-height: 1.3;
}

.pse-card-location {
	margin: 0;
	font-size: 14px;
	color: #8a8478;
}

.pse-card-divider {
	border: none;
	border-top: 1px solid #e7e2d8;
	margin: 16px 0;
}

.pse-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	color: #8a8478;
	margin-top: auto;
}

.pse-card-area,
.pse-card-year {
	white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
	.pse-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.pse-grid {
		grid-template-columns: 1fr;
	}
}
