/* Home section 07 — Services (Figma node 1:2168) */

.services {
	background: var(--color-bg-light);
	padding: 80px 20px;
}

.services__header {
	text-align: center;
	max-width: 940px;
	margin: 0 auto;
}

.services .section-eyebrow p {
	color: var(--color-orange);
}

.services .section-subtitle p {
	color: #374151;
}

.services__grid,
body .services__grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 44px;
	margin-top: 50px;
}

.service-card,
body .service-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	background-color: #011549;
}

.service-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__title {
	font-weight: 700;
	font-size: 23px;
	color: var(--color-navy);
}

.service-card__text p {
	font-size: 16px;
	color: #374151;
}

.services__cta {
	display: table;
	margin: 50px auto 0;
}

@media ( max-width: 900px ) {
	.services__grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}
}

@media ( max-width: 640px ) {
	.services {
		padding: 60px 20px;
	}
}
