/*
 * blocks/text-block.css — section texte simple (titre réduit + paragraphe).
 * Complète guest.css, ne redéfinit aucune primitive existante.
 */

.text-block__container { max-width: 760px; }
.text-block__title { font-size: 1.2rem; }
.text-block__text { margin-top: var(--s3); }

.text-block__container--icon { display: flex; align-items: center; gap: var(--s5); width: 50%; }
.text-block__icon {
	width: 48px; height: 48px; flex-shrink: 0;
	border-radius: 50%;
	background: #f0f0f0;
	display: flex; align-items: center; justify-content: center;
	color: var(--teal);
}
.text-block__icon i { width: 22px; height: 22px; }

@media (max-width: 768px) {
	.text-block__container--icon { flex-direction: column; align-items: flex-start; width: 100%; }
}
