.rent {
	/*background: linear-gradient(180deg, #f4faf7 0%, #e7f2ef 55%, #e2efeb 100%);*/
	padding-block: clamp(56px, 6vw, 96px);
	position: relative;
}

.clinics .rent > img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	background: #1a5f5f; z-index: -1; pointer-events: none;
}

.clinics .rent-overlay-top {
	position: absolute; left: 0; right: 0; top: 0; z-index: -1;
	height: 250px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}
.clinics .rent-overlay-bottom {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: -1;
	height: 250px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}


.rent-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(18px, 1.8vw, 28px);
}
.rent-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border-radius: 22px;
	padding: clamp(26px, 2.4vw, 38px) 24px 32px;
	text-align: center;
	box-shadow: 0 24px 46px -30px rgba(40, 70, 64, .45);
}
.rent-ico {
	width: 126px; height: 126px;
	margin-bottom: 22px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: #ddfbf1;
	color: var(--teal);
}
.rent-ico svg { width: 36px; height: 36px; }
.rent-title { font-weight: 700; font-size: 30px; color: #141414; }
.rent-text { margin-top: 10px; color: #1D1E20; font-size: 20px; line-height: 1.5; font-weight: 300;}

.rent-copy {
	max-width: 800px;
	margin: clamp(36px, 4vw, 56px) auto 0;
	text-align: center;
	color: #000;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.8;
}
.rent-copy p  {margin-bottom: 0; line-height: 1.8;}

.rent-divider {
	display: flex;
	align-items: center;
	gap: 18px;
	max-width: 720px;
	margin: clamp(34px, 4vw, 52px) auto 0;
}
.rent-divider::before,
.rent-divider::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: rgba(0, 0, 0, .2);
}
.leaf { width: 50px; height: 50px; color: var(--teal); }

.rent-tagline {
	margin-top: 30px;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	color: #000;
}

.rent-cta-wrap { margin-top: 26px; text-align: center; }
.cta-soft {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 10rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #c6f4f7, #a8edf7);
	box-shadow: 0 18px 34px -20px rgba(31, 79, 73, .5);
	transition: transform .18s ease, filter .18s ease;
}
.cta-soft:hover { transform: translateY(-2px); filter: brightness(1.03); }
.cta-soft strong { font-weight: 700; font-size: 22px; color: #000; }
.cta-soft span { font-size: 20px; color: #000; font-weight: 300;}

@media screen and (max-width: 40em) {
	.rent {padding: 3rem 1rem;}
	.rent-cards {display: flex; flex-direction: column;}
	.cta-soft {padding: 1.5rem 4rem;}
}
