/* terms.css - Стили для Terms страницы */

/* ===== ОСНОВНОЙ КОНТЕЙНЕР ===== */
.terms-container {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.terms-container .container {
	flex: 1;
	padding-top: 128px;
	padding-bottom: 48px;
}

/* ===== ЗАГОЛОВОК H1 ===== */
.terms-title {
	font-size: var(--font-size-h1);
	font-weight: var(--font-weight-h1);
	line-height: var(--line-height-h1);
	color: var(--color-text);
	margin: 0 0 24px 0;
	text-align: left;
}

/* ===== ДАТА ОБНОВЛЕНИЯ ===== */
.terms-date {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: #939393; /* ← ФОЛБЭК! */
	color: var(--color-secondary, #939393); /* ← CSS переменная */
	margin: 0 0 24px 0;
	text-align: left;
}

/* ===== КОНТЕНТ ===== */
.terms-content {
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-body);
	line-height: var(--line-height-body);
	color: var(--color-text);
	text-align: left;
	white-space: pre-line;
}
