.svte-section,
.svte-section * {
	box-sizing: border-box;
}

.svte-section {
	background: #f5fbfa;
	color: #102a38;
	font-family: inherit;
	overflow: hidden;
	padding: 80px 24px;
	position: relative;
}

.svte-section::before {
	border: 1px solid rgba(49, 197, 183, 0.2);
	border-radius: 50%;
	content: "";
	height: 320px;
	inset-inline-end: -190px;
	position: absolute;
	top: -190px;
	width: 320px;
}

.svte-inner {
	margin: 0 auto;
	max-width: 1240px;
	position: relative;
	z-index: 1;
}

.svte-heading {
	margin: 0 auto 38px;
	max-width: 720px;
	text-align: center;
}

.svte-eyebrow {
	color: #087b75;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.svte-title {
	color: #102a38;
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
}

.svte-subtitle {
	color: #5f7079;
	font-size: 17px;
	line-height: 1.8;
	margin: 14px auto 0;
	max-width: 620px;
}

.svte-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svte-card {
	background: #fff;
	border: 1px solid #d9e9e6;
	border-radius: 8px;
	color: #102a38;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.svte-card:hover,
.svte-card:focus-within {
	border-color: rgba(49, 197, 183, 0.7);
	box-shadow: 0 14px 36px rgba(16, 42, 56, 0.08);
	transform: translateY(-3px);
}

.svte-card-top,
.svte-person,
.svte-player,
.svte-time {
	display: flex;
	align-items: center;
}

.svte-card-top {
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.svte-person {
	gap: 11px;
	min-width: 0;
}

.svte-avatar {
	align-items: center;
	background: #31c5b7;
	border-radius: 50%;
	color: #073d42;
	display: flex;
	flex: 0 0 46px;
	font-size: 18px;
	font-weight: 800;
	height: 46px;
	justify-content: center;
	overflow: hidden;
	width: 46px;
}

.svte-avatar img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.svte-person-copy {
	min-width: 0;
}

.svte-customer-name {
	font-size: 15px;
	font-weight: 750;
	line-height: 1.4;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.svte-customer-role {
	color: #687981;
	font-size: 12px;
	line-height: 1.4;
	margin: 3px 0 0;
}

.svte-badge {
	align-items: center;
	background: #e7f8f5;
	border-radius: 999px;
	color: #087b75;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 700;
	gap: 5px;
	padding: 6px 9px;
}

.svte-check {
	font-size: 11px;
}

.svte-player {
	background: #f6faf9;
	border: 1px solid #e3eeec;
	border-radius: 8px;
	direction: ltr;
	gap: 11px;
	min-height: 72px;
	padding: 12px;
}

.svte-player-empty {
	opacity: 0.58;
}

.svte-play,
.svte-speed {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	cursor: pointer;
	font: inherit;
}

.svte-play {
	align-items: center;
	background: #31c5b7;
	border-radius: 50%;
	color: #072e34;
	display: flex;
	flex: 0 0 46px;
	height: 46px;
	justify-content: center;
	position: relative;
	transition: filter 160ms ease, transform 160ms ease;
	width: 46px;
}

.svte-play:hover {
	filter: brightness(0.95);
	transform: scale(1.04);
}

.svte-play:focus-visible,
.svte-speed:focus-visible,
.svte-progress:focus-visible {
	outline: 3px solid rgba(49, 197, 183, 0.35);
	outline-offset: 3px;
}

.svte-play-icon {
	border-bottom: 7px solid transparent;
	border-left: 11px solid currentColor;
	border-top: 7px solid transparent;
	display: block;
	margin-left: 3px;
}

.svte-pause-icon {
	display: none;
	gap: 4px;
}

.svte-pause-icon i {
	background: currentColor;
	border-radius: 1px;
	display: block;
	height: 15px;
	width: 4px;
}

.svte-player.is-playing .svte-play-icon {
	display: none;
}

.svte-player.is-playing .svte-pause-icon {
	display: flex;
}

.svte-track-wrap {
	flex: 1 1 auto;
	min-width: 0;
}

.svte-progress {
	--svte-accent: #31c5b7;
	--svte-position: 0%;
	-webkit-appearance: none;
	appearance: none;
	background: linear-gradient(to right, var(--svte-accent) 0, var(--svte-accent) var(--svte-position), #d6e3e1 var(--svte-position), #d6e3e1 100%);
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	display: block;
	height: 5px;
	margin: 0;
	width: 100%;
}

.svte-progress::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	background: var(--svte-accent);
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(16, 42, 56, 0.25);
	height: 14px;
	width: 14px;
}

.svte-progress::-moz-range-thumb {
	background: var(--svte-accent);
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(16, 42, 56, 0.25);
	height: 10px;
	width: 10px;
}

.svte-time {
	color: #687981;
	font-size: 11px;
	gap: 4px;
	justify-content: space-between;
	margin-top: 8px;
}

.svte-speed {
	background: transparent;
	border-radius: 4px;
	color: #38515c;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 700;
	min-height: 30px;
	min-width: 31px;
	padding: 4px;
}

.svte-speed:hover {
	background: #e7f3f1;
}

.svte-quote {
	border: 0;
	color: #687981;
	font-size: 13px;
	font-style: normal;
	line-height: 1.75;
	margin: 18px 0 0;
	padding: 0;
}

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

@media (max-width: 767px) {
	.svte-section {
		padding: 56px 16px;
	}

	.svte-heading {
		margin-bottom: 28px;
	}

	.svte-title {
		font-size: 34px;
	}

	.svte-subtitle {
		font-size: 15px;
	}

	.svte-grid {
		grid-template-columns: 1fr;
	}

	.svte-card {
		padding: 20px;
	}
}

@media (max-width: 420px) {
	.svte-card-top {
		align-items: flex-start;
		flex-direction: column;
	}

	.svte-badge {
		margin-inline-start: 57px;
	}

	.svte-person-no-avatar + .svte-badge {
		margin-inline-start: 0;
	}

	.svte-player {
		gap: 9px;
	}

	.svte-play {
		flex-basis: 42px;
		height: 42px;
		width: 42px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.svte-card,
	.svte-play {
		transition: none;
	}
}
