.wh-therapy-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;

	/* Default card colors */
	--wh-light-bg: #ffffff;
	--wh-accent-bg: #f5e9d3;
}

.wh-therapy-cards__card {
	min-width: 0;
}

.wh-therapy-cards__card-inner {
	display: block;
	min-height: 156px;
	padding: 25px 24px;
	border: 1px solid #e3d8cd;
	border-radius: 22px;
	color: inherit;
	text-decoration: none;
	transition:
		transform 220ms ease,
		background-color 220ms ease,
		box-shadow 220ms ease;
}


/* ======================================================
   RESPONSIVE CARD TONES
====================================================== */


/* ---------- DESKTOP ---------- */

.wh-therapy-cards__card--desktop-light
.wh-therapy-cards__card-inner {
	background: var(--wh-light-bg, #ffffff);
}

.wh-therapy-cards__card--desktop-accent
.wh-therapy-cards__card-inner {
	background: var(--wh-accent-bg, #f5e9d3);
}


/* ======================================================
   HOVER
====================================================== */

.wh-therapy-cards__card:hover .wh-therapy-cards__card-inner {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(77, 48, 31, 0.08);
}

.wh-therapy-cards__card-inner:focus-visible {
	outline: 2px solid #704125;
	outline-offset: 3px;
}


/* ======================================================
   CONTENT
====================================================== */

.wh-therapy-cards__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: -15px;
}

.wh-therapy-cards__number,
.wh-therapy-cards__arrow {
	color: #704125;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.wh-therapy-cards__arrow {
	font-size: 17px;
	font-weight: 400;
}

.wh-therapy-cards__title {
	margin: 0 34px 8px 59px;
	color: #4a2d1f;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
}

.wh-therapy-cards__description {
	margin: 0 20px 0 59px;
	color: #8a7568;
	font-size: 15.5px;
	font-weight: 400;
	line-height: 1.45;
}


/* ======================================================
   TABLET
====================================================== */

@media (max-width: 1024px) {

	/* Tablet Light */
	.wh-therapy-cards__card--tablet-light
	.wh-therapy-cards__card-inner {
		background: var(--wh-light-bg, #ffffff);
	}

	/* Tablet Accent */
	.wh-therapy-cards__card--tablet-accent
	.wh-therapy-cards__card-inner {
		background: var(--wh-accent-bg, #f5e9d3);
	}

}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 767px) {

	.wh-therapy-cards {
		grid-template-columns: 1fr;
	}

	.wh-therapy-cards__card-inner {
		min-height: 0;
		padding: 22px 20px;
	}

	.wh-therapy-cards__title,
	.wh-therapy-cards__description {
		margin-left: 48px;
	}


	/* Mobile Light */
	.wh-therapy-cards__card--mobile-light
	.wh-therapy-cards__card-inner {
		background: var(--wh-light-bg, #ffffff);
	}

	/* Mobile Accent */
	.wh-therapy-cards__card--mobile-accent
	.wh-therapy-cards__card-inner {
		background: var(--wh-accent-bg, #f5e9d3);
	}

}