/* Treatments Grid Section */
.treatments-grid {
	background-color: #000;
	padding-top: 80px;
}

@media (max-width: 767px) {
	.treatments-grid {
		border-top: 1px solid rgba(255, 255, 255, 0.25);
		padding-top: 48px;
	}
}

.treatments-grid__inner {
	text-align: center;
}

.treatments-grid__title {
	color: #fff !important;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 16px;
}

.treatments-grid__title-desktop {
	color: #FFF;
	font-family: Playfair;
	font-size: 42px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
}

/* Desktop: show full title, hide mobile title */
.treatments-grid__title-mobile {
	display: none;
}

/* Mobile: show short title, hide desktop title, ensure white color */
@media (max-width: 767px) {
	.treatments-grid__title-desktop {
		display: none;
	}

	.treatments-grid__title-mobile {
		display: inline;
		color: #fff !important;
	}

	.treatments-grid__title {
		color: #fff !important;
	}

}


.treatments-grid__desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 48px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.treatments-grid__card-content.section--btn-center {
	margin-top: 10px;
}

.treatments-grid__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

@media (min-width: 768px) {
	.treatments-grid__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.treatments-grid__cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}

	.treatments-grid__title {
		font-size: 36px;
	}
}

.treatments-grid__card {
	background: transparent;
	overflow: hidden;
}

@media (max-width: 768px) {
	.treatments-grid__card {
		margin: 20px 0;
		height: fit-content;
	}
}

.treatments-grid__card-image {
	aspect-ratio: 1;
	overflow: hidden;
	height: 70%;
	margin: 0 auto;
}

.treatments-grid__card-image img {
	margin: 20px auto;
	width: stretch;
	height: stretch;
	object-fit: cover;
}

.treatments-grid__card-image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 200px;
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}


.treatments-grid__card-title {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 16px;
}

.treatments-grid__card-btn {
	padding: 10px 20px;
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	border-radius: 8px;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-align: center;
	font-family: Nunito !important;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	text-transform: capitalize;
	height: 45px;
}

.treatments-grid__card-btn:hover {
	background-color: #000000;
	color: white;
	text-decoration: none;
}