/* ==========================================================================
   Page Membres du bureau
   ========================================================================== */

.scn-bureau {
	background:
		radial-gradient(circle at top right, rgba(66, 144, 185, 0.08), transparent 42%),
		var(--scn-bg);
}

.scn-bureau__hero {
	background:
		radial-gradient(circle at 80% 25%, rgba(66, 144, 185, 0.26), transparent 34%),
		linear-gradient(125deg, #051421 0%, #0a2740 55%, #14324d 100%);
	color: #fff;
	padding: 3.25rem 0 4.5rem;
	position: relative;
	overflow: hidden;
}

.scn-bureau__hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 48px;
	background: linear-gradient(to bottom right, transparent 49%, var(--scn-bg) 50%);
}

.scn-bureau__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.scn-bureau__eyebrow {
	margin: 0 0 0.65rem;
	color: #7eb7d8;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.scn-bureau__title {
	margin: 0 0 0.75rem;
	font-family: var(--scn-display);
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.scn-bureau__lead {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.02rem;
	max-width: 36rem;
}

.scn-bureau__body {
	position: relative;
	z-index: 2;
	margin-top: -1.4rem;
	padding: 0 0 4.5rem;
}

/* Président mis en avant */
.scn-bureau__president {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.75rem;
	align-items: center;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(7, 26, 43, 0.12);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	overflow: hidden;
	animation: scn-rise 0.55s ease both;
}

.scn-bureau__president-media {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 14px;
	overflow: hidden;
	background: #e8eef4;
}

.scn-bureau__president-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.45s ease;
}

.scn-bureau__president:hover .scn-bureau__president-media img {
	transform: scale(1.04);
}

.scn-bureau__president-copy {
	padding-right: 0.5rem;
}

.scn-bureau__president .scn-bureau__role {
	font-size: 0.82rem;
}

.scn-bureau__president .scn-bureau__name {
	font-size: clamp(1.45rem, 2.5vw, 2rem);
	margin: 0;
}

/* Grille des autres membres */
.scn-bureau__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.scn-bureau__card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(7, 26, 43, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.25rem 1.1rem 1.2rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	animation: scn-rise 0.55s ease both;
}

.scn-bureau__card:nth-child(2) { animation-delay: 0.05s; }
.scn-bureau__card:nth-child(3) { animation-delay: 0.1s; }
.scn-bureau__card:nth-child(4) { animation-delay: 0.15s; }
.scn-bureau__card:nth-child(5) { animation-delay: 0.2s; }
.scn-bureau__card:nth-child(6) { animation-delay: 0.25s; }

.scn-bureau__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(7, 26, 43, 0.12);
}

/* Vignette carrée fixe : visage bien visible, taille maîtrisée */
.scn-bureau__photo {
	width: 132px;
	height: 132px;
	max-height: none;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(180deg, #dce7f0, #eef3f7);
	border: 3px solid rgba(66, 144, 185, 0.2);
	flex-shrink: 0;
}

.scn-bureau__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
	display: block;
	transition: transform 0.45s ease;
}

.scn-bureau__card:hover .scn-bureau__photo img {
	transform: scale(1.05);
}

.scn-bureau__card-body {
	padding: 0.9rem 0.25rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	flex: 1;
	width: 100%;
	align-items: center;
}

.scn-bureau__role {
	margin: 0;
	color: var(--scn-teal-dark);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.scn-bureau__name {
	margin: 0;
	color: var(--scn-navy);
	font-family: var(--scn-display);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.25;
}

.scn-bureau__fallback {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(7, 26, 43, 0.12);
	padding: 2rem;
}

@media (max-width: 1000px) {
	.scn-bureau__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 700px) {
	.scn-bureau__hero {
		padding: 2.5rem 0 3.75rem;
	}

	.scn-bureau__president {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 1.15rem;
	}

	.scn-bureau__president-media {
		max-width: 220px;
		margin: 0 auto;
	}

	.scn-bureau__president-copy {
		padding: 0;
	}

	.scn-bureau__grid {
		grid-template-columns: 1fr;
	}

	.scn-bureau__card {
		flex-direction: row;
		text-align: left;
		align-items: center;
		gap: 0.9rem;
		padding: 0.9rem 1rem;
	}

	.scn-bureau__photo {
		width: 84px;
		height: 84px;
	}

	.scn-bureau__card-body {
		padding: 0;
		align-items: flex-start;
		text-align: left;
	}
}
