/**************************
 * Page Présentation Élus *
 **************************/
.prs-container{
	max-width: 1280px;
	margin: 20px auto;
	padding: 0 10px;
}

.prs-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.prs-card{
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 15px 10px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.prs-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.prs-card img{
	width: 100%;
	max-width: 200px;
	height: auto;
	border-radius: 50%;
	margin-bottom: 10px;
}

.prs-card h3{
	margin: 10px 0 5px;
	font-size: 1.2em;
	color: var(--Neutre);
}

.prs-card p{
	margin: 5px 0;
	font-size: 0.95em;
	color: #555;
}

.prs-card p strong{
	color: var(--Primaire);
}

.prs-card a{
	color: var(--Secondaire);
	text-decoration: none;
	font-size: 0.95em;
	word-break: break-word;
}

.prs-card a:hover{
	text-decoration: underline;
}

.prs-card .social-links{
	display: flex;
	gap: 10px;
	margin-top: 10px;
	justify-content: center;
}

.prs-card .social-links a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: #f0f0f0;
	border-radius: 50%;
	transition: background 0.2s ease;
}

.prs-card .social-links a:hover{
	background-color: var(--Secondaire);
	color: white;
}