.tt24-configurator {
	display: grid;
	gap: 22px;
	margin: 22px 0;
}

.tt24-config-group {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.tt24-config-group legend {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 800;
	color: #17221c;
}

.tt24-option-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.tt24-option-card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	align-items: center;
	min-height: 74px;
	margin: 0;
	padding: 13px 14px;
	border: 1.5px solid #d8e1da;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}

.tt24-option-image {
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	object-fit: contain;
	border-radius: 7px;
	background: #fff;
}

.tt24-option-link {
	display: inline-block;
	margin-top: 5px;
	font-size: 12px;
	font-weight: 700;
	color: #0f7a45;
}

.tt24-downloads,
.tt24-content-blocks {
	width: min(1280px, calc(100% - 30px));
	margin: 54px auto 0;
}

.tt24-download-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.tt24-download-card { display: grid; grid-template-columns: 46px 1fr 24px; gap: 12px; align-items: center; padding: 16px; border: 1px solid #dde5df; border-radius: 10px; color: #17221c; background: #fff; text-decoration: none; }
.tt24-download-card:hover { border-color: #0f7a45; box-shadow: 0 8px 20px rgba(15,122,69,.1); }
.tt24-download-card small { display: block; margin-top: 3px; color: #657169; }
.tt24-download-icon { display: grid; place-items: center; height: 46px; border-radius: 7px; background: #fff0ed; color: #b42318; font-weight: 800; font-size: 12px; }

.tt24-content-block { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr); gap: clamp(25px, 5vw, 70px); align-items: center; margin-bottom: 56px; }
.tt24-content-block.is-reverse > :first-child { order: 2; }
.tt24-content-block img { width: 100%; height: auto; border-radius: 14px; }
@media (max-width: 760px) { .tt24-content-block { grid-template-columns: 1fr; } .tt24-content-block.is-reverse > :first-child { order: initial; } }

.tt24-option-card:has(input:checked) {
	border-color: #0f7a45;
	background: #f0f8f3;
	box-shadow: 0 0 0 2px rgba(15, 122, 69, .12);
}

.tt24-option-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tt24-option-copy {
	display: grid;
	gap: 2px;
}

.tt24-option-copy strong {
	font-size: 14px;
	line-height: 1.25;
}

.tt24-option-copy small {
	color: #657169;
}

.tt24-option-price {
	font-size: 13px;
	font-weight: 800;
	color: #0f7a45;
}

.tt24-config-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 15px 17px;
	border-radius: 10px;
	background: #17221c;
	color: #fff;
}

.tt24-config-total strong {
	font-size: 24px;
}

@media (max-width: 520px) {
	.tt24-option-grid {
		grid-template-columns: 1fr;
	}
}
