
/*
 * Deltawy Services — frontend design system.
 * Visual identity follows gama-est.com reference (green #00A650 / deep navy #030F27,
 * cairoregular, clean white cards + subtle shadows). Classes are namespaced dsv-* to avoid
 * collisions on any theme/plugin.
 */

:root {
	--dsv-primary: #00A650;
	--dsv-primary-dark: #006B3C;
	--dsv-primary-a11y: #006B3C;
	--dsv-navy: #030F27;
	--dsv-navy-soft: #10233F;
	--dsv-on-primary: #ffffff;
	--dsv-text: #333333;
	--dsv-muted: #555555;
	--dsv-border: rgba(0, 166, 80, 0.14);
	--dsv-surface: #ffffff;
	--dsv-surface-soft: #f8fbf9;
	--dsv-radius-lg: 20px;
	--dsv-radius-md: 12px;
	--dsv-shadow: 0 14px 34px rgba(3, 15, 39, 0.08);
	--dsv-focus: #ffbf47;
}

.dsv-single {
	direction: rtl;
	font-family: cairoregular, Cairo, Tahoma, Arial, sans-serif;
	color: var(--dsv-text);
	background: var(--dsv-surface-soft);
	line-height: 1.7;
}

.dsv-single,
.dsv-single *,
.dsv-single *::before,
.dsv-single *::after {
	box-sizing: border-box;
}

.dsv-single h1,
.dsv-single h2,
.dsv-single h3,
.dsv-single h4,
.dsv-single p {
	margin: 0;
}

.dsv-single ul,
.dsv-single ol {
	margin: 0;
	padding: 0;
}

.dsv-single a {
	color: inherit;
	text-decoration: none;
}

.dsv-single img {
	max-width: 100%;
	height: auto;
}

.dsv-container {
	width: calc(100% - clamp(12px, 1.2vw, 24px)) !important;
	max-width: none !important;
	margin-inline: auto !important;
	box-sizing: border-box;
}

/* =============================
   Hero + breadcrumb
   ============================= */

.dsv-hero {
	position: relative;
	overflow: hidden;
	padding: 42px 0 58px;
	background:
		radial-gradient(circle at 14% 20%, rgba(0, 166, 80, 0.22), transparent 28%),
		linear-gradient(135deg, #030f27 0%, var(--dsv-navy) 55%, #10233f 100%);
	color: #fff;
}

.dsv-hero::after {
	content: "";
	position: absolute;
	left: -110px;
	bottom: -150px;
	width: 360px;
	height: 360px;
	border: 50px solid rgba(255, 255, 255, 0.035);
	border-radius: 50%;
}

.dsv-breadcrumb ol {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0 0 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	list-style: none;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
}

.dsv-breadcrumb li + li::before {
	content: "\00ab";
	margin-inline-end: 8px;
}

.dsv-breadcrumb a {
	color: #fff;
	font-weight: 700;
}

.dsv-breadcrumb a:hover {
	color: #a9edc4;
}

.dsv-breadcrumb__current {
	color: rgba(255, 255, 255, 0.72);
}

.dsv-hero__title {
	position: relative;
	z-index: 1;
	max-width: 900px;
	padding-right: 18px;
	color: #fff;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.4;
}

.dsv-hero__title::before {
	content: "";
	position: absolute;
	top: 9px;
	right: 0;
	width: 5px;
	height: calc(100% - 18px);
	border-radius: 999px;
	background: var(--dsv-primary);
}

.dsv-hero__subtitle {
	position: relative;
	z-index: 1;
	max-width: 780px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 2;
}

/* =============================
   Shared bits
   ============================= */

.dsv-eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	padding: 6px 12px;
	border: 1px solid rgba(0, 166, 80, 0.55);
	border-radius: 999px;
	background: rgba(0, 166, 80, 0.10);
	color: var(--dsv-navy);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
}

.dsv-section-title {
	position: relative;
	margin-bottom: 14px;
	padding-bottom: 10px;
	color: var(--dsv-navy);
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 800;
	line-height: 1.6;
}

.dsv-section-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 9px;
	border-radius: 999px;
	background: var(--dsv-primary);
}

.dsv-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dsv-button--primary {
	border: 2px solid var(--dsv-primary);
	background: var(--dsv-primary);
	color: var(--dsv-on-primary);
	box-shadow: 0 12px 28px rgba(0, 166, 80, 0.28);
}

.dsv-button--primary:hover {
	border-color: var(--dsv-navy);
	background: var(--dsv-navy);
	color: #fff;
	transform: translateY(-2px);
}

.dsv-card-placeholder {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--dsv-navy), var(--dsv-navy-soft));
}

.dsv-card-placeholder::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-radius: 12px;
	transform: translate(-50%, -50%);
}

.dsv-card__play {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 56px;
	height: 56px;
	border: 4px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: var(--dsv-primary);
	box-shadow: 0 14px 34px rgba(3, 15, 39, 0.30);
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, background 0.25s ease;
}

.dsv-card__play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 13px solid #fff;
	transform: translate(-50%, -50%);
}

.dsv-card:hover .dsv-card__play,
.dsv-featured-video__link:hover .dsv-card__play {
	transform: translate(-50%, -50%) scale(1.08);
	background: var(--dsv-navy);
}

/* =============================
   Single body
   ============================= */

.dsv-single__body {
	padding: 48px 0 64px;
}

.dsv-description {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 30px;
	align-items: stretch;
	overflow: hidden;
	padding: clamp(20px, 2.4vw, 30px);
	border: 1px solid var(--dsv-border);
	border-radius: var(--dsv-radius-lg);
	background: var(--dsv-surface);
	box-shadow: var(--dsv-shadow);
}

.dsv-description--no-media {
	grid-template-columns: 1fr;
}

.dsv-description__media {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	border-radius: var(--dsv-radius-md);
	background: var(--dsv-navy);
}

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

.dsv-description__content {
	padding: 8px 6px;
}

.dsv-description__text {
	color: var(--dsv-text);
	font-size: 16px;
	line-height: 2.05;
}

.dsv-description__text p {
	margin-bottom: 18px;
}

.dsv-description__text p:last-child {
	margin-bottom: 0;
}

.dsv-description__text a {
	color: var(--dsv-navy);
	font-weight: 700;
	text-decoration-line: underline;
	text-decoration-color: var(--dsv-primary);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.dsv-description__text strong {
	color: var(--dsv-navy);
}

/* =============================
   Featured: main article + video
   ============================= */

.dsv-featured {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 32px;
}

.dsv-featured-card--article {
	display: grid;
	grid-template-columns: minmax(0, 42%) minmax(0, 58%);
	overflow: hidden;
	border: 1px solid var(--dsv-border);
	border-radius: var(--dsv-radius-lg);
	background: var(--dsv-surface);
	box-shadow: var(--dsv-shadow);
}

.dsv-featured-card__media {
	position: relative;
	min-height: 300px;
	overflow: hidden;
	background: var(--dsv-navy);
}

.dsv-featured-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.dsv-featured-card:hover .dsv-featured-card__media img {
	transform: scale(1.04);
	filter: brightness(0.92);
}

.dsv-featured-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 30px;
}

.dsv-featured-card__title {
	color: var(--dsv-navy);
	font-size: clamp(20px, 2.3vw, 26px);
	font-weight: 800;
	line-height: 1.7;
}

.dsv-featured-card__title a:hover {
	color: var(--dsv-navy-soft);
}

.dsv-featured-card__excerpt {
	flex: 1;
	color: var(--dsv-muted);
	font-size: 15px;
	line-height: 2;
}

.dsv-featured-video {
	max-width: 1040px;
	width: 100%;
	margin-inline: auto;
	padding: 24px;
	border: 1px solid var(--dsv-border);
	border-radius: var(--dsv-radius-lg);
	background: var(--dsv-surface);
	box-shadow: var(--dsv-shadow);
}

.dsv-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.dsv-section-heading h2 {
	position: relative;
	padding-right: 16px;
	color: var(--dsv-navy);
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 800;
	line-height: 1.5;
}

.dsv-section-heading h2::before {
	content: "";
	position: absolute;
	top: 7px;
	right: 0;
	width: 5px;
	height: calc(100% - 14px);
	border-radius: 999px;
	background: var(--dsv-primary);
}

.dsv-video-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 18px;
	background: #081a35;
	box-shadow: 0 18px 46px rgba(3, 15, 39, 0.20);
}

.dsv-video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.dsv-featured-video__link {
	display: grid;
	grid-template-columns: minmax(0, 46%) 1fr;
	overflow: hidden;
	border: 1px solid var(--dsv-border);
	border-radius: 18px;
	background: var(--dsv-surface-soft);
}

.dsv-featured-video__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--dsv-navy);
}

.dsv-featured-video__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dsv-featured-video__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 16px;
	padding: 24px;
}

.dsv-featured-video__title {
	color: var(--dsv-navy);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.7;
}

/* =============================
   Tabs
   ============================= */

.dsv-tabs {
	max-width: none;
	margin: 34px auto 0;
}

.dsv-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: fit-content;
	padding: 8px;
	border: 1px solid var(--dsv-border);
	border-radius: 16px;
	background: var(--dsv-surface);
	box-shadow: 0 8px 24px rgba(3, 15, 39, 0.05);
}

.dsv-tabs__tab {
	padding: 10px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: var(--dsv-navy);
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.dsv-tabs__tab:hover {
	border-color: var(--dsv-border);
}

.dsv-tabs__tab.is-active {
	border-color: var(--dsv-primary);
	background: var(--dsv-primary);
	color: var(--dsv-on-primary);
	box-shadow: 0 10px 24px rgba(0, 166, 80, 0.25);
}

.dsv-tabs__panel {
	margin-top: 26px;
}

.dsv-tabs__panel[hidden] {
	display: none;
}

/* =============================
   Cards grid
   ============================= */

.dsv-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 24px);
}

.dsv-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--dsv-border);
	border-radius: 20px;
	background: var(--dsv-surface);
	box-shadow: 0 12px 34px rgba(3, 15, 39, 0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dsv-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 166, 80, 0.50);
	box-shadow: 0 22px 52px rgba(3, 15, 39, 0.15);
}

.dsv-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--dsv-navy);
}

.dsv-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.dsv-card:hover .dsv-card__media img {
	transform: scale(1.05);
	filter: brightness(0.88);
}

.dsv-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 18px 20px;
}

.dsv-card__title {
	color: var(--dsv-navy);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.75;
}

.dsv-card__title a:hover {
	color: var(--dsv-navy-soft);
}

.dsv-card__excerpt {
	margin: 8px 0 14px;
	color: var(--dsv-muted);
	font-size: 14px;
	line-height: 1.9;
}

.dsv-card__more {
	align-self: flex-start;
	margin-top: auto;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--dsv-primary);
	color: var(--dsv-on-primary);
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 9px 22px rgba(0, 166, 80, 0.25);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dsv-card__more:hover {
	background: var(--dsv-navy);
	color: #fff;
	transform: translateY(-2px);
}

.dsv-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--dsv-border);
	color: var(--dsv-muted);
	font-size: 12px;
	font-weight: 800;
}

.dsv-card__meta::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dsv-primary);
}

/* =============================
   Empty state + pagination
   ============================= */

.dsv-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 46px 30px;
	border: 1px dashed var(--dsv-border);
	border-radius: 20px;
	background: var(--dsv-surface);
	text-align: center;
	color: var(--dsv-muted);
}

.dsv-empty-state__icon {
	position: relative;
	width: 60px;
	height: 42px;
	border: 3px solid var(--dsv-primary);
	border-radius: 12px;
}

.dsv-empty-state__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid var(--dsv-primary);
	transform: translate(-50%, -50%);
}

.dsv-pagination {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

.dsv-pagination .page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.dsv-pagination a,
.dsv-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 7px 12px;
	border: 1px solid var(--dsv-border);
	border-radius: 12px;
	background: #fff;
	color: var(--dsv-navy);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.dsv-pagination .current,
.dsv-pagination a:hover {
	border-color: var(--dsv-primary);
	background: var(--dsv-primary);
	color: var(--dsv-on-primary);
}

/* =============================
   Responsive
   ============================= */

@media (max-width: 1024px) {
	.dsv-description,
	.dsv-featured-card--article {
		grid-template-columns: 1fr;
	}

	.dsv-description__media {
		min-height: 240px;
	}

	.dsv-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.dsv-container {
		width: calc(100% - 12px) !important;
		max-width: none !important;
	}

	.dsv-hero {
		padding: 30px 0 42px;
	}

	.dsv-hero__title {
		font-size: 26px;
	}

	.dsv-single__body {
		padding: 34px 0 50px;
	}

	.dsv-description {
		padding: 18px;
	}

	.dsv-featured-card__body {
		padding: 20px;
	}

	.dsv-featured-video {
		padding: 18px;
	}

	.dsv-featured-video__link {
		grid-template-columns: 1fr;
	}

	.dsv-card-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dsv-single *,
	.dsv-single *::before,
	.dsv-single *::after {
		transition: none !important;
	}
}

/* =============================
   Services archive
   ============================= */

.dsv-service-grid {
	display: grid;
	max-width: none;
	margin-inline: auto;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.2vw, 26px);
}

.dsv-service-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--dsv-border);
	border-radius: 24px;
	background: var(--dsv-surface);
	box-shadow: var(--dsv-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dsv-service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 166, 80, 0.55);
	box-shadow: 0 26px 58px rgba(3, 15, 39, 0.18);
}

.dsv-service-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--dsv-navy);
}

.dsv-service-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(8, 26, 53, 0.78));
}

.dsv-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.5s ease;
}

.dsv-service-card:hover .dsv-service-card__media img {
	transform: scale(1.06);
	filter: brightness(0.9);
}

.dsv-service-card__tag {
	position: absolute;
	z-index: 2;
	top: 14px;
	inset-inline-start: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--dsv-primary);
	color: var(--dsv-on-primary);
	font-size: 12px;
	font-weight: 800;
	box-shadow: 0 8px 18px rgba(0, 166, 80, 0.35);
}

.dsv-service-card__media-title {
	position: absolute;
	z-index: 2;
	right: 0;
	left: 0;
	bottom: 0;
	padding: 40px 18px 16px;
	background: linear-gradient(180deg, transparent, rgba(8, 26, 53, 0.72));
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.6;
	text-align: right;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.dsv-service-card__media:hover .dsv-service-card__media-title {
	color: #a9edc4;
}

.dsv-service-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	flex: 1;
	padding: 18px 20px 20px;
}

.dsv-service-card__excerpt {
	flex: 1;
	color: var(--dsv-muted);
	font-size: 14px;
	line-height: 1.95;
}

.dsv-service-card__cta {
	margin-top: 6px;
}

@media (max-width: 1024px) {
	.dsv-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.dsv-service-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dsv-service-card__media-title {
		font-size: 18px;
	}
}

/* v1.4.0 layout hardening */
.dsv-description,
.dsv-featured-card--article {
	max-width: none;
	margin-inline: auto;
}

.dsv-description__text,
.dsv-featured-card__excerpt {
	max-width: 78ch;
}

.dsv-card,
.dsv-service-card {
	min-height: 100%;
}

.dsv-card__title,
.dsv-service-card__media-title {
	overflow-wrap: anywhere;
}

.dsv-pagination {
	clear: both;
	padding-top: 4px;
}

@media (max-width: 767px) {
	.dsv-description,
	.dsv-featured-video,
	.dsv-featured-card--article {
		border-radius: 16px;
	}

	.dsv-tabs__nav {
		width: 100%;
	}

	.dsv-tabs__tab {
		flex: 1 1 auto;
		padding-inline: 14px;
	}
}

/* =============================
   v1.4.1 — Astra full-width hardening + featured split layout
   ============================= */

/* Astra forces .site-content .ast-container to flex at >= 922px.
   Scope the override to Service singles only so the rest of the theme is untouched. */
body.single-service .site-content > .ast-container,
body.single-service .site-content .ast-container:has(> .dsv-single),
body.single-service .site-content .ast-container:has(.dsv-single) {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.single-service .site-content > .ast-container > #primary,
body.single-service .site-content > .ast-container > .content-area,
body.single-service #primary:has(.dsv-single),
body.single-service .content-area:has(.dsv-single) {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

body.single-service .dsv-single {
	width: 100%;
	max-width: none;
}

/* Keep the actual readable content centered while allowing the plugin shell full width. */
body.single-service .dsv-container {
	width: calc(100% - clamp(12px, 1.2vw, 24px)) !important;
	max-width: none !important;
	margin-inline: auto !important;
}

/* The introduction section deliberately uses a clean editorial layout. */
.dsv-description {
	position: relative;
	isolation: isolate;
	border-top: 4px solid var(--dsv-primary);
	box-shadow: 0 14px 40px rgba(3, 15, 39, 0.08);
}

.dsv-description::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset-inline-start: -70px;
	bottom: -90px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(0, 166, 80, 0.05);
}

/* Featured content becomes its own visual section, not another description card. */
.dsv-featured {
	display: block;
	max-width: none;
	margin: 40px auto 0;
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid rgba(3, 15, 39, 0.10);
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(3, 15, 39, 0.035), rgba(0, 166, 80, 0.055)),
		#fff;
	box-shadow: 0 22px 60px rgba(3, 15, 39, 0.08);
}

.dsv-featured__intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dsv-border);
}

.dsv-featured__kicker {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--dsv-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .02em;
}

.dsv-featured__heading {
	margin: 0;
	color: var(--dsv-navy);
	font-size: clamp(24px, 2.7vw, 34px);
	font-weight: 800;
	line-height: 1.45;
}

.dsv-featured__lead {
	max-width: 470px;
	color: var(--dsv-muted);
	font-size: 14px;
	line-height: 1.9;
}

.dsv-featured__grid {
	display: grid;
	gap: 24px;
	align-items: stretch;
}

.dsv-featured__grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dsv-featured__grid--one {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
}

/* Main article is now a compact vertical feature card so it pairs cleanly with video. */
.dsv-featured .dsv-featured-card--article {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	margin: 0;
	border: 0;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(3, 15, 39, 0.09);
}

.dsv-featured .dsv-featured-card__media {
	min-height: 0;
	aspect-ratio: 16 / 9;
}

.dsv-featured .dsv-featured-card__body {
	flex: 1;
	padding: 22px;
}

.dsv-featured .dsv-featured-card__title {
	font-size: clamp(19px, 1.8vw, 24px);
}

.dsv-featured .dsv-featured-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	max-width: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/* Video card mirrors dimensions, but retains a dark media-first identity. */
.dsv-featured .dsv-featured-video {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 20px;
	background: var(--dsv-navy);
	box-shadow: 0 14px 38px rgba(3, 15, 39, 0.18);
}

.dsv-featured .dsv-featured-video .dsv-section-heading {
	order: 2;
	margin: 0;
	padding: 20px 22px 22px;
	background: var(--dsv-navy);
}

.dsv-featured .dsv-featured-video .dsv-section-heading h2 {
	padding-right: 0;
	color: #fff;
	font-size: clamp(19px, 1.8vw, 24px);
}

.dsv-featured .dsv-featured-video .dsv-section-heading h2::before {
	display: none;
}

.dsv-featured .dsv-featured-video .dsv-eyebrow {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.dsv-featured .dsv-featured-video .dsv-video-embed,
.dsv-featured .dsv-featured-video__link {
	order: 1;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.dsv-featured .dsv-featured-video .dsv-video-embed {
	width: 100%;
}

@media (max-width: 1024px) {
	body.single-service .dsv-container {
		width: calc(100% - clamp(12px, 1.2vw, 24px)) !important;
		max-width: none !important;
	}

	.dsv-featured__grid--two {
		grid-template-columns: 1fr;
	}

	.dsv-featured__grid--one {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	body.single-service .dsv-container {
		width: calc(100% - 12px) !important;
		max-width: none !important;
	}

	.dsv-featured {
		margin-top: 28px;
		padding: 16px;
		border-radius: 20px;
	}

	.dsv-featured__intro {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 18px;
		padding-bottom: 16px;
	}

	.dsv-featured__lead {
		max-width: none;
	}

	.dsv-featured .dsv-featured-card--article,
	.dsv-featured .dsv-featured-video {
		border-radius: 16px;
	}
}

/* ================================================================
   v1.6.0 — Single service Sections layout + anchor navigation
   ================================================================ */

.dsv-anchor-nav {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0px);
	z-index: 20;
	margin-top: 34px;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.dsv-anchor-nav .dsv-tabs__nav {
	margin: 0;
}

.dsv-anchor-nav .dsv-tabs__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	cursor: pointer;
}

.dsv-content-section {
	margin-top: 34px;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(3, 15, 39, .10);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 14px 42px rgba(3, 15, 39, .06);
	scroll-margin-top: 110px;
}

.dsv-content-section--videos {
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.dsv-content-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(3, 15, 39, .10);
}

.dsv-content-section__head h2 {
	margin: 5px 0 0;
	color: #030f27;
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 800;
	line-height: 1.45;
}

.dsv-content-section__count {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 166, 80, .10);
	color: #b65316;
	font-size: 13px;
	font-weight: 800;
}

html {
	scroll-behavior: smooth;
}

@media (max-width: 767px) {
	.dsv-anchor-nav {
		position: static;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.dsv-content-section {
		margin-top: 24px;
		padding: 18px;
		border-radius: 18px;
		scroll-margin-top: 24px;
	}

	.dsv-content-section__head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
}


/* Anchor navigation is not a tab interface: no persistent active state. */
.dsv-anchor-nav .dsv-tabs__tab.is-active {
	background: inherit;
	color: inherit;
	box-shadow: none;
}


/* ================================================================
   v1.7.0 — Astra archive full-width hardening
   ================================================================ */
@media (min-width: 922px) {
	body.post-type-archive-service .site-content > .ast-container,
	body.post-type-archive-service .site-content .ast-container:has(.dsv-archive) {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	body.post-type-archive-service .site-content > .ast-container > #primary,
	body.post-type-archive-service .site-content > .ast-container > .content-area,
	body.post-type-archive-service #primary:has(.dsv-archive),
	body.post-type-archive-service .content-area:has(.dsv-archive) {
		float: none !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
	}
}

body.post-type-archive-service .dsv-archive {
	width: 100%;
	max-width: none;
}


/* ================================================================
   v1.8.0 — Single service content sidebar
   ================================================================ */

.dsv-single-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
	gap: clamp(24px, 2.5vw, 34px);
	align-items: start;
}

.dsv-single-content-grid--no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.dsv-single-content-primary {
	min-width: 0;
}

.dsv-other-services {
	position: sticky;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + 24px);
	margin-top: 34px;
}

.dsv-other-services__inner {
	overflow: hidden;
	border: 1px solid rgba(3, 15, 39, .11);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 14px 42px rgba(3, 15, 39, .07);
}

.dsv-other-services__head {
	padding: 20px 20px 16px;
	border-bottom: 1px solid rgba(3, 15, 39, .09);
}

.dsv-other-services__head .dsv-eyebrow {
	margin-bottom: 6px;
}

.dsv-other-services__head h2 {
	margin: 0;
	color: var(--dsv-navy);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.5;
}

.dsv-other-services__list {
	display: grid;
}

.dsv-other-services__item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-width: 0;
	padding: 13px 16px;
	border-bottom: 1px solid rgba(3, 15, 39, .08);
	background: #fff;
	transition: background-color .2s ease, border-color .2s ease;
}

.dsv-other-services__item:hover,
.dsv-other-services__item:focus-visible {
	background: rgba(3, 15, 39, .035);
}

.dsv-other-services__media {
	display: block;
	width: 64px;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(3, 15, 39, .10), rgba(0, 166, 80, .12));
}

.dsv-other-services__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dsv-other-services__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.dsv-other-services__title {
	min-width: 0;
	color: var(--dsv-navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.75;
}

.dsv-other-services__item:hover .dsv-other-services__title,
.dsv-other-services__item:focus-visible .dsv-other-services__title {
	color: var(--dsv-primary-dark);
}

.dsv-other-services__all {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 16px;
	background: rgba(0, 166, 80, .08);
	color: var(--dsv-navy);
	font-size: 13px;
	font-weight: 800;
	transition: background-color .2s ease, color .2s ease;
}

.dsv-other-services__all:hover,
.dsv-other-services__all:focus-visible {
	background: var(--dsv-navy);
	color: #fff;
}

@media (max-width: 1024px) {
	.dsv-single-content-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.dsv-other-services {
		position: static;
		margin-top: 28px;
	}

	.dsv-other-services__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dsv-other-services__item:nth-last-child(-n+2) {
		border-bottom: 0;
	}
}

@media (max-width: 600px) {
	.dsv-other-services__list {
		grid-template-columns: 1fr;
	}

	.dsv-other-services__item {
		border-bottom: 1px solid rgba(3, 15, 39, .08);
	}

	.dsv-other-services__item:last-child {
		border-bottom: 0;
	}
}


/* ================================================================
   v1.9.0 — Gama frontend profile (Bauer / RTL)
   Visual source: gama-est.com — green #00A650, accessible green #006B3C,
   deep navy #030F27, cairoregular, 1180px content width.
   ================================================================ */

.dsv-single {
	background: #ffffff;
	color: var(--dsv-text);
	font-family: cairoregular, Cairo, Tahoma, Arial, sans-serif;
}

.dsv-single :where(a, button, [tabindex]):focus-visible {
	outline: 3px solid var(--dsv-focus) !important;
	outline-offset: 3px;
}

.dsv-container {
	width: calc(100% - clamp(12px, 1.2vw, 24px)) !important;
	max-width: none !important;
	margin-inline: auto !important;
}

/* Bauer theme: neutralise only service views, never the rest of the site. */
body.single-service #main-content,
body.post-type-archive-service #main-content {
	padding: 0 !important;
}

body.single-service #content-wrap,
body.single-service #site-content,
body.single-service #inner-content,
body.post-type-archive-service #content-wrap,
body.post-type-archive-service #site-content,
body.post-type-archive-service #inner-content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.single-service .dsv-single,
body.post-type-archive-service .dsv-archive {
	width: 100%;
	max-width: none;
	margin: 0;
}

/* Hero mirrors Gama's dark sections with green accents. */
.dsv-hero {
	padding: 46px 0 54px;
	background:
		radial-gradient(circle at 15% 18%, rgba(0, 166, 80, .20), transparent 30%),
		linear-gradient(135deg, #030F27 0%, #071A35 62%, #0A2B2B 100%);
}

.dsv-hero::after {
	border-color: rgba(255,255,255,.035);
}

.dsv-breadcrumb ol {
	border-bottom-color: rgba(255,255,255,.14);
}

.dsv-breadcrumb a:hover,
.dsv-service-card__media:hover .dsv-service-card__media-title {
	color: #a9edc4;
}

.dsv-hero__title {
	padding-right: 20px;
	font-size: clamp(30px, 4.4vw, 46px);
}

.dsv-hero__title::before {
	background: var(--dsv-primary);
}

.dsv-hero__subtitle {
	max-width: 900px;
	color: rgba(255,255,255,.84);
}

/* Shared Gama typography and accents. */
.dsv-eyebrow {
	padding: 5px 11px;
	border-color: rgba(0,166,80,.28);
	background: rgba(0,166,80,.07);
	color: var(--dsv-primary-dark);
	border-radius: 30px;
}

.dsv-section-title,
.dsv-section-heading h2,
.dsv-featured__heading,
.dsv-content-section__head h2,
.dsv-other-services__head h2 {
	color: #333333;
}

.dsv-section-title::after,
.dsv-section-heading h2::before {
	background: var(--dsv-primary);
}

.dsv-button,
.dsv-tabs__tab,
.dsv-card,
.dsv-service-card,
.dsv-services-widget a {
	transition: none !important;
}

.dsv-button--primary {
	border-color: var(--dsv-primary-dark);
	background: var(--dsv-primary-dark);
	color: #fff !important;
	box-shadow: none;
}

.dsv-button--primary:hover,
.dsv-button--primary:focus {
	border-color: var(--dsv-primary-dark);
	background: var(--dsv-primary-dark);
	color: #fff !important;
	transform: none;
	box-shadow: none;
}

/* Intro: same white/green card language used by Gama sections. */
.dsv-description {
	border: 1px solid rgba(0,166,80,.14);
	border-top: 4px solid var(--dsv-primary);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(3,15,39,.06);
}

.dsv-description::after {
	background: rgba(0,166,80,.04);
}

.dsv-description__text {
	color: #555555;
	line-height: 2;
}

.dsv-description__text a,
.dsv-card__more,
.dsv-card__title a:hover,
.dsv-featured-card__title a:hover {
	color: #005c32;
}

/* Featured area: clean Gama panel, without motion-heavy effects. */
.dsv-featured {
	border: 1px solid rgba(0,166,80,.14);
	border-radius: 20px;
	background:
		linear-gradient(135deg, rgba(0,166,80,.025), rgba(3,15,39,.025)),
		#fff;
	box-shadow: 0 14px 34px rgba(3,15,39,.06);
}

.dsv-featured__kicker {
	color: var(--dsv-primary-dark);
}

.dsv-featured-card--article,
.dsv-featured-video {
	border-color: rgba(0,166,80,.14) !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 24px rgba(3,15,39,.06) !important;
}

.dsv-featured-card:hover .dsv-featured-card__media img,
.dsv-card:hover .dsv-card__media img,
.dsv-service-card:hover .dsv-service-card__media img {
	transform: none;
	filter: none;
}

.dsv-featured .dsv-featured-video {
	background: var(--dsv-navy);
	box-shadow: 0 10px 30px rgba(3,15,39,.14) !important;
}

.dsv-card__play {
	background: var(--dsv-primary);
	box-shadow: 0 0 0 8px rgba(0,166,80,.16), 0 10px 24px rgba(3,15,39,.18);
}

.dsv-card:hover .dsv-card__play,
.dsv-featured-video__link:hover .dsv-card__play {
	transform: translate(-50%, -50%);
}

/* Tabs / anchors. */
.dsv-tabs__nav {
	border: 1px solid rgba(0,166,80,.14);
	background: #fff;
	box-shadow: 0 8px 24px rgba(3,15,39,.05);
}

.dsv-tabs__tab {
	color: #333333;
}

.dsv-tabs__tab:hover {
	color: var(--dsv-primary-dark);
}

.dsv-tabs__tab.is-active {
	background: var(--dsv-primary-dark);
	color: #fff;
	box-shadow: none;
}

.dsv-anchor-nav .dsv-tabs__nav {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.dsv-anchor-nav .dsv-tabs__tab {
	border: 1px solid rgba(0,166,80,.22);
	background: #fff;
	color: #333333;
}

.dsv-anchor-nav .dsv-tabs__tab:hover,
.dsv-anchor-nav .dsv-tabs__tab:focus-visible,
.dsv-anchor-nav .dsv-tabs__tab.is-active {
	border-color: var(--dsv-primary);
	background: #fff;
	color: var(--dsv-primary-dark);
	box-shadow: none;
}

/* Article/video sections and cards. */
.dsv-content-section {
	border-color: rgba(0,166,80,.14);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(3,15,39,.05);
}

.dsv-content-section__count {
	background: rgba(0,166,80,.08);
	color: var(--dsv-primary-dark);
}

.dsv-card {
	border-color: rgba(0,166,80,.14);
	border-radius: 12px;
	box-shadow: 0 5px 18px rgba(3,15,39,.06);
}

.dsv-card:hover {
	border-color: rgba(0,166,80,.35);
	box-shadow: 0 8px 24px rgba(3,15,39,.08);
	transform: none;
}

.dsv-card__media {
	background: var(--dsv-navy);
}

.dsv-card__title {
	color: #333333;
}

.dsv-card__excerpt,
.dsv-card__meta,
.dsv-featured-card__excerpt,
.dsv-featured__lead {
	color: #555555;
}

.dsv-card__more {
	color: var(--dsv-primary-dark);
}

.dsv-card__more:hover {
	color: var(--dsv-primary-dark);
	transform: none;
}

.dsv-card__meta::before {
	background: var(--dsv-primary);
}

/* Archive cards. */
.dsv-service-grid {
	max-width: none;
	gap: 28px;
}

.dsv-service-card {
	border-color: rgba(0,166,80,.16);
	border-radius: 12px;
	box-shadow: 0 5px 18px rgba(3,15,39,.06);
}

.dsv-service-card:hover {
	transform: none;
	border-color: rgba(0,166,80,.32);
	box-shadow: 0 8px 24px rgba(3,15,39,.08);
}

.dsv-service-card__media {
	background: var(--dsv-navy);
}

.dsv-service-card__media::after,
.dsv-service-card__media-title {
	background: linear-gradient(180deg, transparent 30%, rgba(3,15,39,.82));
}

.dsv-service-card__tag {
	background: var(--dsv-primary-dark);
	color: #fff;
	box-shadow: none;
}

.dsv-service-card__body {
	padding: 20px;
}

.dsv-service-card__excerpt {
	color: #555555;
	line-height: 1.9;
}

/* Pagination. */
.dsv-pagination a,
.dsv-pagination span {
	border-color: rgba(0,166,80,.18);
	background: #fff;
	color: #333333;
}

.dsv-pagination .current,
.dsv-pagination a:hover {
	border-color: var(--dsv-primary-dark);
	background: var(--dsv-primary-dark);
	color: #fff;
}

/* Other services sidebar. */
.dsv-other-services__inner {
	border-color: rgba(0,166,80,.14);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(3,15,39,.06);
}

.dsv-other-services__head {
	border-bottom-color: rgba(0,166,80,.12);
}

.dsv-other-services__item {
	border-bottom-color: rgba(0,166,80,.10);
}

.dsv-other-services__item:hover,
.dsv-other-services__item:focus-visible {
	background: rgba(0,166,80,.035);
}

.dsv-other-services__placeholder {
	background: linear-gradient(135deg, rgba(3,15,39,.92), rgba(0,166,80,.55));
}

.dsv-other-services__title {
	color: #333333;
}

.dsv-other-services__item:hover .dsv-other-services__title,
.dsv-other-services__item:focus-visible .dsv-other-services__title {
	color: var(--dsv-primary-dark);
}

.dsv-other-services__all {
	border-color: rgba(0,166,80,.20);
	background: rgba(0,166,80,.07);
	color: var(--dsv-primary-dark);
}

.dsv-other-services__all:hover,
.dsv-other-services__all:focus-visible {
	border-color: var(--dsv-primary-dark);
	background: var(--dsv-primary-dark);
	color: #fff;
}

/* Empty state and placeholders. */
.dsv-empty-state {
	border-color: rgba(0,166,80,.18);
	background: #fff;
	color: #555555;
}

.dsv-card-placeholder,
.dsv-other-services__placeholder {
	background: linear-gradient(135deg, #030F27, #0A3A2B);
}

@media (max-width: 767px) {
	.dsv-container,
	body.single-service .dsv-container {
		width: calc(100% - 12px) !important;
		max-width: none !important;
	}

	.dsv-hero {
		padding: 34px 0 40px;
	}

	.dsv-service-grid,
	.dsv-card-grid {
		gap: 18px;
	}
}


/* ================================================================
   v1.9.2 — final near-full-width hardening + CTA contrast
   Keep Service single/archive edge-to-edge with only a tiny responsive gutter.
   ================================================================ */

/* Bauer may declare #main-content { padding:100px 0; } after plugin styles.
   Scope the override to Service views and raise specificity without touching
   normal pages/posts. */
body.single-service #wrapper #page #main-content,
body.post-type-archive-service #wrapper #page #main-content,
body.single-service #main-content,
body.post-type-archive-service #main-content {
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
	max-width: none !important;
}

/* Neutralise Bauer content containers only on plugin-controlled views. */
body.single-service #main-content > .bauer-container,
body.post-type-archive-service #main-content > .bauer-container,
body.single-service #content-wrap,
body.single-service #site-content,
body.single-service #inner-content,
body.post-type-archive-service #content-wrap,
body.post-type-archive-service #site-content,
body.post-type-archive-service #inner-content {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
	box-sizing: border-box !important;
}

body.single-service .dsv-single,
body.post-type-archive-service .dsv-archive {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
}

/* Full-width content with a very small adaptive safe gutter.
   Total horizontal subtraction is split naturally between both sides. */
body.single-service .dsv-container,
body.post-type-archive-service .dsv-container,
body.post-type-archive-service .dsv-service-grid {
	width: calc(100% - clamp(12px, 1.2vw, 24px)) !important;
	max-width: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	box-sizing: border-box !important;
}

/* The card CTA must stay readable even when theme link rules are stronger. */
.dsv-card__more,
.dsv-card__more:link,
.dsv-card__more:visited,
.dsv-card__more:hover,
.dsv-card__more:focus,
.dsv-card__more:active {
	color: #ffffff !important;
}

@media (max-width: 767px) {
	body.single-service .dsv-container,
	body.post-type-archive-service .dsv-container,
	body.post-type-archive-service .dsv-service-grid {
		width: calc(100% - 12px) !important;
	}
}
