/* True Calm Telehealth section — homepage only */

.true-calm-telehealth-section {
	padding: 24px 0 56px;
}

.true-calm-telehealth-section__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.true-calm-telehealth-section__card {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 28px 32px;
	align-items: center;
	background-color: #f5fbf7;
	border: 1px solid rgba(12, 47, 37, 0.08);
	border-radius: 20px;
	padding: 36px 40px;
}

.true-calm-telehealth-section__title {
	margin-bottom: 14px;
}

.true-calm-telehealth-section__title .title {
	margin-bottom: 0;
}

.true-calm-telehealth-section__description {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-color, #5f6b66);
	max-width: 540px;
}

.true-calm-telehealth-section__support {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color, #5f6b66);
	max-width: 520px;
}

.true-calm-telehealth-section__content .true-calm-insurance-notice {
	max-width: 540px;
}

.true-calm-telehealth-section__states {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.true-calm-telehealth-section__state {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 56px;
	padding: 14px 18px;
	background-color: var(--theme-color-white, #fff);
	border: 1px solid rgba(12, 47, 37, 0.1);
	border-radius: 14px;
}

.true-calm-telehealth-section__state-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: rgba(16, 85, 31, 0.1);
	color: #10551f;
	font-size: 14px;
}

.true-calm-telehealth-section__state-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--theme-color2, #0c2f25);
	line-height: 1.2;
}

@media (max-width: 1024px) {
	.true-calm-telehealth-section__card {
		grid-template-columns: 1fr;
		padding: 28px 24px;
	}

	.true-calm-telehealth-section__states {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.true-calm-telehealth-section__state {
		min-height: 52px;
		padding: 12px 14px;
	}
}

@media (max-width: 767px) {
	.true-calm-telehealth-section {
		padding: 16px 0 40px;
	}

	.true-calm-telehealth-section__card {
		padding: 24px 18px;
		gap: 20px;
	}

	.true-calm-telehealth-section__states {
		grid-template-columns: 1fr;
	}
}
