/**
 * TacTacFact - Styles pour la page des Mentions Légales
 */

/* En-tête de la page des mentions légales */
.mentions-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: var(--text-light);
	padding: var(--spacing-12) 0 var(--spacing-8);
	text-align: center;
	margin-bottom: var(--spacing-8);
}

.mentions-header h1 {
	font-size: var(--font-size-4xl);
	font-weight: var(--font-weight-bold);
	margin-bottom: var(--spacing-3);
}

.mentions-header .subtitle {
	font-size: var(--font-size-xl);
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

/* Contenu principal */
.mentions-content {
	padding-bottom: var(--spacing-16);
}

.mentions-content .card {
	max-width: 900px;
	margin: 0 auto;
}

/* Sections */
.mentions-section {
	margin-bottom: var(--spacing-8);
	border-bottom: 1px solid var(--border-color);
	padding-bottom: var(--spacing-6);
}

.mentions-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.mentions-section h2 {
	color: var(--primary);
	font-size: var(--font-size-2xl);
	margin-bottom: var(--spacing-4);
	font-weight: var(--font-weight-semibold);
}

.mentions-section h3 {
	color: var(--text-dark);
	font-size: var(--font-size-lg);
	margin-top: var(--spacing-5);
	margin-bottom: var(--spacing-3);
	font-weight: var(--font-weight-semibold);
}

/* Cartes d'information avec icônes */
.info-card {
	display: flex;
	background-color: rgba(67, 97, 238, 0.05);
	border-radius: var(--border-radius);
	padding: var(--spacing-5);
	margin-bottom: var(--spacing-4);
	gap: var(--spacing-5);
}

.info-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(67, 97, 238, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary);
	font-size: var(--font-size-2xl);
}

.info-content {
	flex-grow: 1;
}

.info-content h3 {
	margin-top: 0;
	color: var(--primary);
	font-size: var(--font-size-lg);
	margin-bottom: var(--spacing-3);
}

.info-content p {
	margin-bottom: var(--spacing-3);
}

.info-content p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.info-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.info-icon {
		margin-bottom: var(--spacing-4);
	}
	
	.mentions-header {
		padding: var(--spacing-8) 0 var(--spacing-6);
	}
	
	.mentions-header h1 {
		font-size: var(--font-size-3xl);
	}
}