/**
 * 2012-2025 ElfsightIntegration
 * Front-office styles
 */

/* Header avec titre */
.elfsight-header {
	text-align: center;
	margin-top:30px;
	margin-bottom: 20px;
	position: relative;
}

.elfsight-title span.h2  {width:100%;min-width: 370px;max-width: 420px;}

.elfsight-title {
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 40px 0 0 0;
	line-height: 1.4;
	position: relative;
	display: inline-block;
	background: #fff;
	z-index: 2;
}



/* Effet gradient sur "SUR INSTA" */
.elfsight-highlight {
	background: linear-gradient(135deg, #71ceda 0%, #7962bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	display: inline-block;
}

/* Conteneur des boutons marques */
.elfsight-brands {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

/* Bouton individuel de marque */
.elfsight-brand-btn {
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.elfsight-brand-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
	z-index: 1;
}

.elfsight-brand-btn:hover::before {
	left: 100%;
}

.elfsight-brand-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.elfsight-brand-btn img {
	display: block;
	height: 37px;
	width: auto;
	position: relative;
	z-index: 0;
}

/* Conteneur du widget */
.elfsight-widget-container {
	margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
	.elfsight-title {
		font-size: 22px;
		padding: 0;
		margin-top: 0;
	}
	
	.elfsight-brands {
		gap: 10px;
	}
	
	.elfsight-brand-btn img {
		height: 38px;
	}
}

@media (max-width: 480px) {
	.elfsight-title span.h2 {font-size: 18px !important;}
	
	.elfsight-brands {
		gap: 8px;
	}
	
	.elfsight-brand-btn img {
		height: 32px;
	}
}