/*
 * FRONT-PAGE — Support
 *
 * Section sur fond clair avec 3 colonnes :
 * texte | boutons de don | contact.
 * Les styles .contact-* sont dans shared/contact.css.
 */

.support {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.2fr;
	gap: 56px;
	align-items: center;
}

.support-text h2 {
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.15;
	margin-bottom: 16px;
}

.support-text p {
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
}

.support-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.support-actions .btn-dark {
	width: 280px;
	max-width: 100%;
	padding: 18px 28px;
	justify-content: center;
	text-align: center;
	line-height: 1.35;
	font-size: 15px;
	white-space: normal;
}

.support-contact {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (max-width: 968px) {
	.support { grid-template-columns: 1fr; gap: 32px; text-align: center; }
	.support-text { text-align: center; }
	.support-text p { margin-left: auto; margin-right: auto; max-width: 540px; }
	.support-actions { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
	.support-actions .btn-dark { width: auto; min-width: 200px; flex: 1; max-width: 260px; padding: 16px 20px; font-size: 14.5px; }
	.support-contact { align-items: center; }
	.contact-item { justify-content: center; }
}

@media (max-width: 540px) {
	.support-text h2 { font-size: 26px; margin-bottom: 12px; }
	.support-text p { font-size: 14px; }
	.support-actions { flex-direction: column; align-items: center; }
	.support-actions .btn-dark { width: 260px; max-width: 100%; padding: 14px 20px; font-size: 14px; }
}
