/* Community item — fiche reseau */
.community-items-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 880px;
	margin: 0 auto 3rem;
	padding: 0 0 1rem;
}

.community-item-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.community-item-card:hover {
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.community-item-header {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
}

.community-item-media {
	position: relative;
	min-height: 200px;
	background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}

.community-item-media img {
	width: 100%;
	height: 100%;
	min-height: 200px;
	object-fit: cover;
	display: block;
}

.community-item-content {
	padding: 1.75rem 1.85rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.community-item-content h2 {
	margin: 0 0 0.75rem;
	font-family: Outfit, Montserrat, sans-serif;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--webiste-footer-color, #0f172a);
}

.community-item-content p {
	margin: 0;
	font-family: Outfit, sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: #64748b;
}

.community-item-footer {
	padding: 0 1.85rem 1.75rem;
	border-top: 1px solid #f1f5f9;
}

.community-social {
	padding-top: 1.25rem;
}

.community-social-label {
	margin: 0 0 0.85rem;
	font-family: Outfit, sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
}

.community-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.community-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 1.2rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.community-social-link:hover {
	transform: translateY(-3px);
	color: #fff !important;
}

.community-social-link--facebook { background: #1877f2; box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35); }
.community-social-link--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 6px 16px rgba(220, 39, 67, 0.35); }
.community-social-link--twitter { background: #0f1419; box-shadow: 0 6px 16px rgba(15, 20, 25, 0.35); }
.community-social-link--linkedin { background: #0a66c2; box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35); }
.community-social-link--tiktok { background: #010101; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35); }
.community-social-link--youtube { background: #ff0000; box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35); }

.community-website-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
	padding: 0.85rem 1.65rem;
	font-family: Outfit, Montserrat, sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none !important;
	color: #fff !important;
	background: var(--webiste-second-color);
	border-radius: 999px;
	box-shadow: 0 10px 28px -8px rgba(30, 64, 127, 0.45);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.community-website-cta ion-icon {
	font-size: 1.1rem;
	transition: transform 0.25s ease;
}

.community-website-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px -10px rgba(30, 64, 127, 0.55);
	color: #fff !important;
}

.community-website-cta:hover ion-icon {
	transform: translateX(4px);
}

.community-page-intro {
	max-width: 880px;
	margin: 2rem auto 2.5rem;
	text-align: center;
	padding: 0 1rem;
}

.community-page-intro h1 {
	font-family: Outfit, Montserrat, sans-serif;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	color: var(--webiste-footer-color, #0f172a);
	margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
	.community-item-header {
		grid-template-columns: 1fr;
	}

	.community-item-media {
		min-height: 180px;
	}

	.community-item-media img {
		min-height: 180px;
		max-height: 220px;
	}

	.community-item-content {
		padding: 1.35rem 1.25rem;
	}

	.community-item-footer {
		padding: 0 1.25rem 1.35rem;
	}

	.community-website-cta {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.community-items-list {
		gap: 1.35rem;
	}

	.community-social-links {
		justify-content: center;
	}

	.community-social-label {
		text-align: center;
	}

	.community-website-cta {
		display: flex;
	}
}
.community-social, .community-social-label, .community-social-links
{
float:left !important;
width:100% !important;
}
.community-social
{
margin-bottom:50px !important;
}
.community-social-links
{
margin-bottom:20px !important;	
}