.pja-wrap {
	max-width: 1200px;
	margin: 0 auto;
}

/* ===== Barre de recherche ===== */

.pja-hero {
	background: #fdfaf3;
	border: 1px solid #f0e2bb;
	padding: 40px 24px;
	border-radius: 10px;
}

.pja-hero-inner {
	max-width: 460px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pja-field {
	background: #fff;
	border: 1px solid #e7d9ab;
	border-radius: 6px;
	display: flex;
	align-items: center;
	padding: 0 14px;
	height: 48px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.pja-field:focus-within {
	border-color: #d4a017;
	box-shadow: 0 0 0 3px rgba(212, 160, 23, .15);
}

.pja-field .pja-icon {
	margin-right: 10px;
	opacity: .55;
}

.pja-field input,
.pja-field select {
	border: none;
	outline: none;
	width: 100%;
	height: 100%;
	font-size: 15px;
	background: transparent;
	color: #2a2a2a;
}

#pja-search-btn {
	height: 48px;
	background: #d4a017;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 700;
	letter-spacing: .5px;
	cursor: pointer;
	transition: background .15s ease, transform .1s ease;
}

#pja-search-btn:hover {
	background: #b8860b;
}

#pja-search-btn:active {
	transform: translateY(1px);
}

/* ===== Résultats ===== */

.pja-results {
	margin-top: 40px;
}

.pja-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

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

.pja-card {
	background: #fff;
	border: 1px solid #eee;
	border-top: 3px solid #d4a017;
	border-radius: 8px;
	padding: 22px 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
	transition: box-shadow .15s ease, transform .15s ease;
}

.pja-card:hover {
	box-shadow: 0 6px 16px rgba(212, 160, 23, .15);
	transform: translateY(-2px);
}

.pja-card-title {
	color: #1c2539;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px;
}

.pja-card-meta {
	margin-bottom: 12px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pja-badge {
	background: #fdf3da;
	color: #8a6700;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 12px;
	border: 1px solid #f0dca1;
}

.pja-card-excerpt {
	color: #5d666f;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 14px;
}

.pja-card-link {
	display: inline-block;
	color: #b8860b;
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
	border-bottom: 2px solid transparent;
	transition: border-color .15s ease;
}

.pja-card-link:hover {
	color: #8a6700;
	border-color: #d4a017;
}

.pja-no-results {
	text-align: center;
	color: #777;
	padding: 50px 0;
	font-size: 15px;
}

.pja-loadmore-trigger {
	grid-column: 1 / -1;
	text-align: center;
	margin-top: 10px;
	padding: 12px 0;
	cursor: pointer;
	color: #b8860b;
	font-weight: 700;
	border: 1px solid #e7d9ab;
	border-radius: 6px;
	background: #fdfaf3;
	transition: background .15s ease;
}

.pja-loadmore-trigger:hover {
	background: #fdf3da;
}

.pja-loading {
	text-align: center;
	padding: 40px 0;
	color: #b8860b;
	font-weight: 600;
}
