/* Scoped to service cards inside the existing Blog posts element. */
.pp-service-list {
	align-items: stretch;
}
.pp-service-list .pp-service-item {
	display: flex;
	min-width: 0;
}
.pp-service-item > .col-inner {
	display: flex;
	width: 100%;
}
.pp-service-card {
	--pp-accent: var(--color-main, #f54a00);
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e5e3e1;
	border-radius: 14px;
	background: #fff;
	color: #77716e;
	box-shadow: 0 1px 2px #0000000a;
	text-align: left;
	transition:
		box-shadow 0.2s,
		border-color 0.2s,
		transform 0.2s;
}
.pp-service-media {
	position: relative;
	flex: none;
	background: #f5f5f5;
}
.pp-service-image {
	display: block;
	aspect-ratio: 1.6;
	overflow: hidden;
}
.pp-service-image .pp-service-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
}
.pp-service-placeholder {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: #91877f;
	background: linear-gradient(135deg, #f5f3ef, #e9e4dc);
	font-size: 14px;
}
.pp-service-badge-label {
	position: absolute;
	top: 10px;
	right: 10px;
	max-width: calc(100% - 20px);
	padding: 4px 11px;
	border-radius: 30px;
	background: linear-gradient(100deg, #ff5900, #ff9900);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	box-shadow: 0 2px 4px #00000012;
}
.pp-service-number {
	position: absolute;
	left: 10px;
	bottom: 10px;
	max-width: calc(100% - 20px);
	padding: 3px 9px;
	border: 1px solid #e5e3e1;
	border-radius: 5px;
	background: #fffffff2;
	color: #44403c;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	box-shadow: 0 1px 2px #00000014;
}
.pp-service-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
	overflow-wrap: anywhere;
}
.pp-service-card .pp-service-title {
	margin: 0 0 7px;
	color: #22170f;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.3px;
	text-transform: none;
}
.pp-service-title a {
	color: inherit;
}
.pp-service-card .pp-service-subtitle {
	margin: 0 0 12px;
	color: var(--pp-accent);
    font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}
.pp-service-card .pp-service-description {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.65;
}
.pp-service-card .pp-service-features {
	list-style: none;
	padding: 11px 0 0;
	margin: 0 0 14px;
	border-top: 1px solid #f0efee;
}
.pp-service-card .pp-service-features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 6px;
	padding: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #111;
    font-weight: 500;
}
.pp-service-check {
display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin-top: 3px;
    color: var(--pp-accent);
}
.pp-service-card .pp-service-audience {
	margin: 0 0 14px;
	padding: 8px 10px;
	background: #fafafa;
	border: 1px solid #f1f0ef;
	border-radius: 7px;
	font-size: 10px;
	line-height: 1.6;
}
.pp-service-audience strong {
	color: #51433a;
	font-weight: 600;
}
.pp-service-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #f1f0ef;
}
.pp-service-card .pp-service-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	color: var(--pp-accent);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}
.pp-service-card .pp-service-call {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 7px;
	background: #fff5eb;
	color: var(--pp-accent);
	transition: background 0.2s,
			    color: 0.2s;
}
.pp-service-call svg {
	width: 17px;
	height: 17px;
}

.pp-service-card a:focus-visible {
	outline: 2px solid var(--pp-accent);
	outline-offset: -2px;
}
@media (hover: hover) {
	.pp-service-card:hover {
		border-color: #f8bc91;
		box-shadow: 0 8px 24px #592b0c12;
		transform: translatey(3px);
	}
	.pp-service-card:hover .pp-service-title a {
		color: #bb3a00;
	}
	.pp-service-cta:hover,
	.pp-service-title a:hover {
		color: #bb3a00;
	}
	
	.pp-service-call:hover {
		background: var(--pp-accent);
		color: #FFF;
	}
}
@media (max-width: 849px) {
	.margin-top-48 {
		margin-top: 0 !important;
	}
}
@media (max-width: 549px) {
	.pp-service-body {
		padding: 18px;
	}
	.pp-service-card .pp-service-title {
		font-size: 18px;
	}
	.pp-service-card .pp-service-description {
		font-size: 14px;
	}
	.pp-service-card .pp-service-features li {
		font-size: 12px;
	}
	.pp-service-card .pp-service-audience {
		font-size: 11px;
	}
	.pp-service-card .pp-service-call {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}
	.pp-service-card .pp-service-cta {
		min-height: 30px;
		font-size: 13px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.pp-service-card {
		transition: none;
	}
}
.pp-service-list .col,
.pp-service-list .col .col-inner {
	border-radius: 14px;
}