/* Visually-hidden (kept in the a11y tree). Used for the services archive H1 whose visible hero was removed. */
.iv-service-page .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.iv-service-hero {
	background: #071114;
	border-radius: var(--iv-radius-md);
	color: var(--iv-color-white);
	margin-bottom: 28px;
	min-height: 300px;
	overflow: hidden;
	position: relative;
}

.iv-service-hero-media {
	inset: 0;
	position: absolute;
}

.iv-service-hero-media::after {
	background: linear-gradient(90deg, rgba(5, 15, 18, 0.9), rgba(5, 15, 18, 0.45));
	content: "";
	inset: 0;
	position: absolute;
}

.iv-service-hero-media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.iv-service-hero-content {
	padding: 40px 32px;
	position: relative;
	z-index: 1;
}

.iv-service-hero .iv-breadcrumb a,
.iv-service-hero .iv-breadcrumb span,
.iv-service-hero .iv-breadcrumb-item:not(:last-child)::after {
	color: rgba(255, 255, 255, 0.82);
}

.iv-service-hero h1 {
	color: var(--iv-color-white);
	font-size: clamp(22px, 4.8vw, 32px);
	line-height: 1.02;
	margin: 0 0 18px;
	max-width: 760px;
}

.iv-service-intro {
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
	line-height: 1.65;
	margin: 0;
	max-width: 760px;
}

.iv-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.iv-service-content,
.iv-meta-panel {
	background: var(--iv-color-white);
	border-radius: var(--iv-radius-md);
	padding: 28px;
}

.iv-service-content-body {
	color: #1f2937;
	font-size: 16px;
	line-height: 1.75;
}

.iv-service-content-body > *:first-child {
	margin-top: 0;
}

.iv-service-content-body h2 {
	border-left: 3px solid var(--iv-color-primary);
	font-size: 24px;
	line-height: 1.3;
	margin: 36px 0 14px;
	padding-left: 16px;
}

.iv-service-content-body h3 {
	font-size: 20px;
	margin: 28px 0 12px;
}

.iv-service-content-body a {
	color: var(--iv-color-primary-dark);
}

.iv-meta-panel {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 18px;
}

.iv-meta-panel span {
	color: var(--iv-color-muted);
	display: block;
	font-size: 13px;
	margin-bottom: 4px;
}

.iv-service-cta,
.iv-consult-card {
	background: linear-gradient(135deg, var(--iv-color-primary), var(--iv-color-primary-dark));
	border-radius: var(--iv-radius-md);
	color: var(--iv-color-white);
}

.iv-service-cta {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 18px;
	padding: 28px 32px;
}

.iv-service-cta h2,
.iv-service-cta p {
	color: var(--iv-color-white);
	margin: 0;
}

.iv-service-cta h2 {
	font-size: clamp(20px, 4vw, 24px);
	line-height: 1.12;
	max-width: 620px;
}

.iv-service-cta p {
	font-size: 16px;
	line-height: 1.55;
	margin-top: 8px;
	max-width: 680px;
}

.iv-service-cta .iv-button {
	flex: 0 0 auto;
	min-width: 170px;
}

.iv-consult-card {
	padding: 22px;
}

.iv-consult-card h2 {
	color: var(--iv-color-white);
}

.iv-consult-card p,
.iv-consult-card li {
	color: rgba(255, 255, 255, 0.9);
}

.iv-consult-card ul {
	margin: 16px 0;
	padding-left: 20px;
}

.iv-resource-list {
	display: grid;
	gap: 14px;
}

.iv-resource-link {
	color: var(--iv-color-text);
	display: grid;
	gap: 12px;
	grid-template-columns: 56px minmax(0, 1fr);
	text-decoration: none;
}

.iv-resource-link strong {
	font-size: 14px;
	line-height: 1.35;
	overflow-wrap: anywhere;
	color: #000;
}
.iv-resource-link strong:hover {
	color: #14B598;
}

.iv-resource-link-compact {
	align-items: center;
	grid-template-columns: 34px minmax(0, 1fr);
}

.iv-resource-link small {
	color: var(--iv-color-muted);
	display: block;
	font-size: 12px;
	margin-top: 4px;
}

.iv-resource-thumb,
.iv-resource-icon {
	background: var(--iv-color-surface);
	border: 1px solid var(--iv-color-border);
	border-radius: var(--iv-radius-sm);
	display: block;
	overflow: hidden;
}

.iv-resource-thumb {
	aspect-ratio: 1;
}

.iv-resource-thumb img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.iv-resource-icon {
	height: 34px;
	position: relative;
	width: 34px;
}

.iv-resource-icon::after {
	background: var(--iv-color-primary);
	border-radius: 50%;
	content: "";
	height: 10px;
	inset: 11px;
	position: absolute;
	width: 10px;
}


/* ==========================================
   Service Hero Meta
========================================== */

.iv-service-hero .iv-service-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.iv-service-hero .iv-service-hero-meta-item {
	display: grid;
	gap: 4px;
	min-width: 150px;
}

.iv-service-hero .iv-service-hero-meta-item span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.iv-service-hero .iv-service-hero-meta-item strong {
	color: #ffffff;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.35;
}
