/**
 * Styles pour la zone Domaines d'activités du footer
 */

.fusion-footer-domains-area {
	background-color: #f8f8f8;
	padding: 30px 0;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
}

.domains-tags-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: center;
}

.domains-tag {
	display: inline-block;
	padding: 8px 16px;
	background-color: #fff;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.domains-tag:hover {
	background-color: #333;
	color: #fff;
	border-color: #333;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
	.fusion-footer-domains-area {
		padding: 20px 0;
	}

	.domains-tags-wrapper {
		gap: 8px;
	}

	.domains-tag {
		padding: 6px 12px;
		font-size: 13px;
	}
}
