.dz-reviews {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 104px 0 116px;
	background:
		radial-gradient(circle at 77% 13%, rgba(31, 76, 115, 0.27), transparent 32%),
		radial-gradient(circle at 16% 83%, rgba(12, 45, 75, 0.23), transparent 37%),
		linear-gradient(180deg, #031426 0%, #061b30 50%, #031426 100%);
}

.dz-reviews::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(109, 147, 178, 0.014) 1px, transparent 1px),
		linear-gradient(90deg, rgba(109, 147, 178, 0.014) 1px, transparent 1px);
	background-size: 78px 78px;
	mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 90%, transparent);
}

.dz-reviews__orbit {
	position: absolute;
	top: -410px;
	right: -90px;
	z-index: -1;
	width: 790px;
	height: 790px;
	border: 1px solid rgba(215, 146, 90, 0.33);
	border-radius: 50%;
	box-shadow: 0 0 36px rgba(223, 157, 97, 0.11);
	pointer-events: none;
}

.dz-reviews__orbit::before {
	content: "";
	position: absolute;
	inset: 94px;
	border: 1px solid rgba(215, 146, 90, 0.16);
	border-radius: inherit;
}

.dz-reviews__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 60px;
	padding: 0 38px;
}

.dz-reviews__intro {
	max-width: 1180px;
}

.dz-reviews__eyebrow {
	margin: 0 0 22px;
	color: var(--dz-copper-light);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.4;
	text-transform: uppercase;
}

.dz-reviews__title {
	margin: 0;
	color: var(--dz-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(49px, 4.55vw, 78px);
	font-weight: 400;
	letter-spacing: -0.033em;
	line-height: 1.06;
}

.dz-reviews__lead {
	margin: 25px 0 0;
	color: var(--dz-muted);
	font-size: clamp(17px, 1.12vw, 21px);
	line-height: 1.65;
}

.dz-reviews__all-link {
	display: inline-flex;
	align-items: center;
	gap: 19px;
	margin-top: 62px;
	color: #e5aa6b;
	font-size: clamp(18px, 1.12vw, 22px);
	text-decoration: none;
	white-space: nowrap;
}

.dz-reviews__all-link svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.dz-reviews__all-link:hover svg {
	transform: translateX(5px);
}

.dz-reviews__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
	gap: 48px;
	margin-top: 34px;
	padding: 0 38px;
}

.dz-reviews__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
}

.dz-review-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(180, 116, 73, 0.72);
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(18, 49, 75, 0.88), rgba(4, 20, 35, 0.97)),
		rgba(5, 23, 40, 0.95);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.018),
		0 24px 68px rgba(0, 0, 0, 0.16);
	transition:
		transform 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.dz-review-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229, 166, 104, 0.95);
	box-shadow: 0 30px 76px rgba(0, 0, 0, 0.24);
}

.dz-review-card--featured {
	display: flex;
	min-height: 690px;
	flex-direction: column;
	padding: 39px 31px 30px;
}

.dz-review-card--compact {
	min-height: 310px;
	padding: 29px 29px 27px;
}

.dz-review-card__shine {
	position: absolute;
	left: 50%;
	width: 120px;
	height: 4px;
	border-radius: 50%;
	background: #efb477;
	box-shadow:
		0 0 9px rgba(239, 180, 119, 0.85),
		0 0 28px rgba(239, 180, 119, 0.42);
	transform: translateX(-50%);
}

.dz-review-card__shine--top {
	top: -2px;
}

.dz-review-card__shine--bottom {
	bottom: -2px;
}

.dz-review-card__person {
	display: flex;
	align-items: center;
	gap: 25px;
}

.dz-review-card__initials {
	display: grid;
	width: 90px;
	height: 90px;
	flex: 0 0 90px;
	place-items: center;
	border: 1px solid rgba(209, 144, 90, 0.78);
	border-radius: 50%;
	color: var(--dz-text);
	background:
		radial-gradient(circle at 35% 28%, rgba(212, 153, 99, 0.16), transparent 46%),
		linear-gradient(145deg, #26384a, #101d2b);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 36px;
	box-shadow:
		inset 0 0 25px rgba(233, 170, 105, 0.08),
		0 12px 26px rgba(0, 0, 0, 0.16);
}

.dz-review-card--compact .dz-review-card__initials {
	width: 76px;
	height: 76px;
	flex-basis: 76px;
	font-size: 31px;
}

.dz-review-card__identity h3 {
	margin: 0;
	color: var(--dz-text);
	font-size: clamp(17px, 1.02vw, 21px);
	font-weight: 600;
	line-height: 1.4;
}

.dz-review-card__identity p {
	margin: 6px 0 0;
	color: var(--dz-muted);
	font-size: clamp(15px, 0.92vw, 18px);
	line-height: 1.3;
}

.dz-review-card__service {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	width: max-content;
	max-width: 100%;
	margin-top: 26px;
	padding: 9px 16px;
	border: 1px solid rgba(178, 116, 74, 0.61);
	border-radius: 10px;
	color: #e1a466;
	font-size: clamp(14px, 0.9vw, 17px);
}

.dz-review-card__service svg {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dz-review-card__quote {
	position: relative;
	display: grid;
	grid-template-columns: 29px minmax(0, 1fr);
	gap: 10px;
	margin: 28px 0 0;
	padding: 0;
	border: 0;
}

.dz-review-card__quote-mark {
	color: #efb06d;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 54px;
	font-weight: 700;
	line-height: 0.85;
}

.dz-review-card__quote p {
	margin: 0;
	color: #e3e2df;
	font-size: clamp(17px, 1.06vw, 21px);
	line-height: 1.82;
}

.dz-review-card--compact .dz-review-card__quote {
	margin-top: 25px;
}

.dz-review-card--compact .dz-review-card__quote p {
	font-size: clamp(15px, 0.91vw, 18px);
	line-height: 1.65;
}

.dz-review-card__summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin-top: auto;
	padding-top: 27px;
	border-top: 1px solid rgba(178, 116, 74, 0.58);
}

.dz-review-card__summary-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: start;
	gap: 17px;
	padding: 0 24px;
}

.dz-review-card__summary-item:first-child {
	padding-left: 0;
	border-right: 1px solid rgba(178, 116, 74, 0.58);
}

.dz-review-card__summary-item:last-child {
	padding-right: 0;
}

.dz-review-card__summary-item svg {
	width: 46px;
	height: 46px;
	color: #e3a263;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dz-review-card__summary-item div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dz-review-card__summary-item strong {
	color: var(--dz-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
}

.dz-review-card__summary-item span {
	color: var(--dz-muted);
	font-size: 14px;
	line-height: 1.4;
}

.dz-reviews__all-link:focus-visible {
	outline: 2px solid var(--dz-copper-light);
	outline-offset: 5px;
	border-radius: 3px;
}

@media (max-width: 1320px) {
	.dz-reviews__header,
	.dz-reviews__layout {
		padding-inline: 8px;
	}

	.dz-reviews__layout {
		gap: 28px;
	}

	.dz-review-card--featured {
		padding-inline: 27px;
	}

	.dz-review-card--compact {
		padding-inline: 24px;
	}
}

@media (max-width: 1120px) {
	.dz-reviews {
		padding: 90px 0 98px;
	}

	.dz-reviews__header {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.dz-reviews__all-link {
		justify-self: start;
		margin-top: 0;
	}

	.dz-reviews__layout {
		grid-template-columns: 1fr;
	}

	.dz-review-card--featured {
		min-height: 600px;
	}

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

@media (max-width: 720px) {
	.dz-reviews {
		padding: 70px 0 78px;
	}

	.dz-reviews__header,
	.dz-reviews__layout {
		padding-inline: 0;
	}

	.dz-reviews__title {
		font-size: clamp(39px, 11vw, 54px);
	}

	.dz-reviews__lead {
		font-size: 17px;
		line-height: 1.55;
	}

	.dz-reviews__grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.dz-review-card--featured,
	.dz-review-card--compact {
		min-height: 0;
		padding: 26px 20px 23px;
	}

	.dz-review-card__person {
		align-items: flex-start;
		gap: 17px;
	}

	.dz-review-card__initials,
	.dz-review-card--compact .dz-review-card__initials {
		width: 68px;
		height: 68px;
		flex-basis: 68px;
		font-size: 28px;
	}

	.dz-review-card__identity h3 {
		font-size: 17px;
	}

	.dz-review-card__quote {
		grid-template-columns: 23px minmax(0, 1fr);
	}

	.dz-review-card__quote-mark {
		font-size: 46px;
	}

	.dz-review-card__quote p,
	.dz-review-card--compact .dz-review-card__quote p {
		font-size: 16px;
		line-height: 1.62;
	}

	.dz-review-card__summary {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	}

	.dz-review-card__summary-item,
	.dz-review-card__summary-item:first-child,
	.dz-review-card__summary-item:last-child {
		padding: 0;
		border-right: 0;
	}

	.dz-review-card__summary-item + .dz-review-card__summary-item {
		padding-top: 20px;
		border-top: 1px solid rgba(178, 116, 74, 0.4);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dz-review-card,
	.dz-reviews__all-link svg {
		transition: none;
	}
}
