/*
 * SHARED — Contact items
 *
 * Styles des blocs de contact (icône teal + label + valeur verte).
 * Utilisés dans la section support de l'accueil ET de la page Chaire.
 */

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.contact-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--teal);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-muted);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.contact-value {
	font-size: 17px;
	font-weight: 700;
	color: var(--green);
	transition: color .2s ease;
}

.contact-value:hover { color: var(--green-dark); }

@media (max-width: 540px) {
	.contact-icon { width: 42px; height: 42px; border-radius: 10px; }
	.contact-label { font-size: 11px; }
	.contact-value { font-size: 15px; }
}
