.ct-table {
	display: grid;
	grid-template-columns: 280px repeat(var(--cols), 1fr);
	width: 100%;
}

.ct-col-header {
	border-bottom: 1px solid #eeeeee;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 20px;
	height: 85px;
	position: sticky;
	top: 0;
	z-index: 5;
	background: #fff;
}

.ct-product__logo {
	max-height: 45px;
	max-width: 140px;
	width: auto;
	display: block;
	object-fit: contain;
}

.ct-product__name {
	font-size: 16px;
	font-weight: 700;
	color: #121212;
	text-align: center;
}

.ct-group__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #121212;
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.ct-feature {
	display: flex;
	align-items: center;
	min-height: 45px;
	font-size: 16px;
	font-weight: 400;
	color: #121212;
	border-bottom: 1px solid #eeeeee;
	white-space: nowrap;
	padding-right: 10px;
}

.ct-feature--last {
	border-bottom: none;
}

.ct-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	border-bottom: 1px solid #eeeeee;
	padding: 10px;
}

.ct-cell--last {
	border-bottom: none;
}

.ct-check {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ct-check svg {
	display: block;
	flex-shrink: 0;
}

.ct-text-value {
	font-size: 16px;
	font-weight: 400;
	color: #121212;
	text-align: center;
	white-space: nowrap;
}

.ct-link-value {
	font-size: 16px;
	font-weight: 400;
	color: #093e6c;
	text-align: center;
	text-decoration: underline;
	white-space: nowrap;
}

.ct-link-value:hover {
	color: #1a588e;
}

.ct-footer-label {
	min-height: 45px;
	padding-top: 22px;
}

.ct-col-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	padding: 22px 10px 0;
}

.ct-wrap .ct-btn,
.ct-wrap .ct-btn:hover,
.ct-wrap .ct-btn:focus,
.ct-wrap .ct-btn:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	background-color: #093e6c;
	font-size: 16px;
	font-weight: 700;
	border-radius: 100px;
	padding: 10px 24px;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.ct-wrap .ct-btn:hover,
.ct-wrap .ct-btn:focus {
	background-color: #1a588e;
	transition: background-color 0.2s ease;
}

@media (max-width: 768px) {
	.ct-card {
		padding: 16px 16px 32px;
		border-radius: 12px;
		overflow-x: auto;
	}

	.ct-table {
		min-width: 700px;
		grid-template-columns: 150px repeat(var(--cols), 1fr);
	}

	.ct-col-header {
		height: 70px;
		padding-bottom: 12px;
	}

	.ct-group__title {
		font-size: 16px;
		padding: 18px 0 4px 0;
	}

	.ct-feature {
		font-size: 14px;
		min-height: 40px;
		white-space: normal;
		line-height: 1.3;
	}

	.ct-cell {
		min-height: 40px;
	}

	.ct-text-value {
		font-size: 14px;
		white-space: normal;
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.ct-link-value {
		font-size: 14px;
		white-space: normal;
		word-break: break-word;
	}

	.ct-product__logo {
		max-height: 32px;
		max-width: 100px;
	}
}
