.reseau-container {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 24px 60px;
}

.reseau-title {
	font-size: 32px;
	font-family: 'ChooseSpaces', sans-serif;
	font-weight: normal;
	font-style: italic;
	color: #fff;
	margin-bottom: 4px;
}

.reseau-subtitle {
	font-size: 14px;
	color: #8491AF;
	font-family: 'Inter', sans-serif;
	margin-bottom: 28px;
}

.reseau-toolbar {
	margin-bottom: 28px;
}

/* ── Member grid ─────────────────────────────────────── */
.members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 14px;
}

.member-card {
	background: #161C2D;
	border: 1px solid #252C40;
	border-left: 3px solid #5380FF;
	border-radius: 10px;
	overflow: hidden;
	cursor: default;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}

.member-card:hover {
	background: #1a2035;
	border-color: #5380FF;
	border-left-color: #5380FF;
}

/* top section */
.member-top {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px 16px;
}

.member-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid #5380FF;
	background: #1D2438;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-family: 'ChooseSpaces', sans-serif;
	color: #fff;
	flex-shrink: 0;
	overflow: hidden;
}

.member-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.member-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.member-name {
	font-size: 16px;
	font-family: 'ChooseSpaces', sans-serif;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.member-sub {
	font-size: 12px;
	color: #8491AF;
	font-family: 'Inter', sans-serif;
}

/* stats row */
.member-stats {
	display: flex;
	border-top: 1px solid #252C40;
}

.member-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 8px;
	gap: 2px;
}

.member-stat + .member-stat {
	border-left: 1px solid #252C40;
}

.member-stat-num {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #fff;
}

.member-stat-lbl {
	font-size: 11px;
	color: #8491AF;
	font-family: 'Inter', sans-serif;
}

/* empty state */
.reseau-empty {
	text-align: center;
	color: #8491AF;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	padding: 60px 0;
	grid-column: 1 / -1;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
	.header-nav {
		display: none;
	}

	.members-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}
}

@media (max-width: 480px) {
	.reseau-container {
		padding: 28px 16px 48px;
	}

	.reseau-title {
		font-size: 26px;
	}

	.members-grid {
		grid-template-columns: 1fr;
	}
}
