.ohio-treatment-table {
	--treatment-header-bg: var(--primary-bg-color, #f8f6f5);
	--treatment-border-color: #e8e0d5;
	--treatment-col-width: minmax(0, 1fr);
	--treatment-card-radius: 16px;
	width: 100%;
}

.ohio-treatment-table__title {
	margin: 0 0 1.25rem;
}

.ohio-treatment-table__desktop {
	overflow-x: auto;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.ohio-treatment-table__grid {
	display: grid;
	min-width: 100%;
	width: max-content;
}

.ohio-treatment-table__cell {
	padding: 13px 18px;
	text-align: left;
	border-bottom: 1px solid var(--treatment-border-color);
	font-size: 15px;
	line-height: 1.45;
}

.ohio-treatment-table__cell--header {
	font-weight: 600;
	background-color: var(--treatment-header-bg);
}

.ohio-treatment-table__empty {
	opacity: 0.4;
	font-style: italic;
}

.ohio-treatment-table__mobile {
	display: none !important;
}

.ohio-treatment-table__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.ohio-treatment-table__card {
	background-color: #fff;
	border: 1px solid var(--treatment-border-color);
	border-radius: var(--treatment-card-radius);
	overflow: hidden;
}

.ohio-treatment-table__card-body {
	padding: 4px 20px 12px;
}

.ohio-treatment-table__card-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--treatment-border-color);
	font-size: 15px;
	line-height: 1.45;
}

.ohio-treatment-table__card-row:last-child {
	border-bottom: none;
}

.ohio-treatment-table__card-row-label {
	flex: 0 1 42%;
	font-weight: 600;
	color: inherit;
}

.ohio-treatment-table__card-row-value {
	flex: 1 1 58%;
	text-align: right;
}

@media screen and (max-width: 767px) {
	.ohio-treatment-table--mobile-cards .ohio-treatment-table__desktop {
		display: none;
	}

	.ohio-treatment-table--mobile-cards .ohio-treatment-table__mobile {
		display: flex !important;
		flex-direction: column;
		gap: 16px;
	}
}

@media screen and (min-width: 768px) {
	.ohio-treatment-table__desktop .ohio-treatment-table__cell {
		padding: 13px 18px;
	}
}
