/* ==========================================================
   GOOGLE BUSINESS PROFILE INTRO CARDS
========================================================== */

body.page-gmb-profile .svc-intro__body,
.svc-intro:has(.gmb-intro-cards) .svc-intro__body{
	width:100%;
	max-width:1200px;
}

.gmb-intro-cards{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:26px;
	width:100%;
	margin:42px auto 0;
}

.gmb-intro-card{
	position:relative;
	min-height:300px;
	padding:34px 30px;
	background:#D5E3F2;
	border-radius:16px;
	box-sizing:border-box;
	overflow:hidden;
	transition:
		transform .3s ease,
		box-shadow .3s ease;
}

.gmb-intro-card:hover{
	transform:translateY(-7px);
	box-shadow:0 18px 38px rgba(0,21,38,.15);
}

/* Animated icon */

.gmb-intro-card__icon{
	display:grid;
	place-items:center;
	width:58px;
	height:58px;
	margin-bottom:24px;
	border-radius:50%;
	background:rgba(255,255,255,.55);
	color:#001526;
	transition:
		transform .35s ease,
		background .35s ease,
		color .35s ease;
}

.gmb-intro-card__icon svg{
	width:30px;
	height:30px;
}

.gmb-intro-card:hover .gmb-intro-card__icon{
	transform:translateY(-4px) rotate(-5deg) scale(1.08);
	background:#7B0A06;
	color:#FBF5E5;
}

.gmb-intro-card h3{
	margin:0 0 14px;
	color:#001526;
	font-size:22px;
	font-weight:700;
	line-height:1.25;
	text-transform:none;
}

.gmb-intro-card p{
	margin:0 !important;
	color:#001526;
	font-size:17px;
	line-height:1.7;
}

/* Tablet */

@media (max-width:900px){
	.gmb-intro-cards{
		grid-template-columns:1fr;
		gap:20px;
	}

	.gmb-intro-card{
		min-height:0;
		padding:30px;
	}
}