/* ===== Trusting What's Inside — Left Column (fixed typography, fluid widths) ===== */
.retinol-twi-left {
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #475467;
}

.retinol-twi-left__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px; /* по фигме spacing между блоками текста */
	width: 100%; /* тянется на всю доступную ширину */
}

/* Заголовки h3 = Display xs / Semibold (24/32) */
.retinol-twi-left__title {
	margin: 0 0 8px 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	color: #101828;
}

/* Параграфы = Text lg / Regular (18/28) */
.retinol-twi-left__text {
	margin: 0 0 16px 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: #475467;
}

/* Список */
.retinol-twi-left__list {
	margin: 0 0 16px 1.2em;
	padding: 0;
	list-style: disc;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: #475467;
}
.retinol-twi-left__list li + li {
	margin-top: 8px;
}

/* === Adaptive adjustments === */
@media (max-width: 768px) {
	.retinol-twi-left__title {
		font-size: 20px;
		line-height: 28px;
	}
	.retinol-twi-left__text,
	.retinol-twi-left__list {
		font-size: 16px;
		line-height: 24px;
	}
}
