/**
 * ATB Block: Home Text
 *
 * Назначение:
 * - текстовый блок с H2 и контентом;
 * - ширина задаётся через .atb-container / .atb-container--wide;
 * - файл отвечает только за визуал блока.
 */

.atb-home-text {
	padding: 0 0 72px;
	background: #f4f7fb;
	color: #0f172a;
}
.atb-home-text__container {
        width: min(calc(100% - 40px), 1320px);
        max-width: 1320px;
        margin-right: auto;
        margin-left: auto;
}


.atb-home-text__inner {
	padding: 34px 38px;
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.atb-home-text__title {
	margin: 0;
	color: #0f172a;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.atb-home-text__content {
	width: 100%;	margin-top: 16px;
	color: #475569;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
}

.atb-home-text__content > * {
	margin-top: 0;
	margin-bottom: 16px;
}

.atb-home-text__content > *:last-child {
	margin-bottom: 0;
}

.atb-home-text__content a {
	color: #2563eb;
	font-weight: 700;
	text-decoration: none;
}

.atb-home-text__content a:hover,
.atb-home-text__content a:focus {
	color: #1d4ed8;
	text-decoration: underline;
}

@media (max-width: 768px) {
        .atb-home-text__container {
                width: min(calc(100% - 32px), 100%);
        }

	.atb-home-text {
		padding-bottom: 52px;
	}

	.atb-home-text__inner {
		padding: 26px 22px;
	}

	.atb-home-text__content {
		font-size: 15px;
		line-height: 1.65;
	}
}
