.voice-section {
	--vs-bg: #f7f5ef;
	--vs-accent: #f8b61c;
	--vs-accent-soft: rgba(248, 182, 28, 0.18);
	--vs-text: #1f1f1f;
	--vs-card: #ffffff;
	--vs-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
	background: var(--vs-bg);
	color: var(--vs-text);
	padding: 72px 0 88px;
	position: relative;
	overflow: hidden;
}

.voice-section::before,
.voice-section::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--vs-accent-soft) 0%, rgba(248, 182, 28, 0) 70%);
	pointer-events: none;
}

.voice-section::before {
	top: -120px;
	left: -80px;
}

.voice-section::after {
	bottom: -140px;
	right: -60px;
}

.voice-section__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}

.voice-section__header {
	display: grid;
	gap: 16px;
	margin-bottom: 36px;
}

.voice-section__eyebrow {
	letter-spacing: 0.2em;
	font-size: 12px;
	font-weight: 600;
	color: var(--vs-accent);
	text-transform: uppercase;
}

.voice-section__title {
	font-size: clamp(28px, 3.2vw, 40px);
	margin: 0;
}

.voice-section__lead {
	font-size: 15px;
	line-height: 1.9;
	max-width: 640px;
	margin: 0;
	color: rgba(30, 30, 30, 0.75);
}

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

.voice-card {
	background: var(--vs-card);
	border-radius: 18px;
	padding: 24px 22px;
	box-shadow: var(--vs-shadow);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 260px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
}

.voice-card::before {
	content: "";
	position: absolute;
	top: 18px;
	right: 18px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--vs-accent-soft);
}

.voice-card__title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 12px;
	line-height: 1.6;
}

.voice-card__comment {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.8;
	color: rgba(30, 30, 30, 0.8);
}

.voice-card__footer {
	display: grid;
	gap: 6px;
	margin-top: auto;
}

.voice-card__name {
	font-weight: 600;
	margin: 0;
}

.voice-card__meta {
	margin: 0;
	font-size: 12px;
	color: rgba(30, 30, 30, 0.6);
}

.voice-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
}

.voice-card__tag {
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--vs-accent-soft);
	color: #8a5b00;
}

.voice-section__actions {
	margin-top: 32px;
}

.voice-section__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 999px;
	background: var(--vs-accent);
	color: #1f1f1f;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 0.08em;
}

.voice-section__button:hover {
	opacity: 0.85;
}

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

@media (max-width: 640px) {
	.voice-section {
		padding: 56px 0 72px;
	}

	.voice-section__header {
		margin-bottom: 24px;
	}

	.voice-card {
		min-height: auto;
	}

	.voice-section__grid {
		grid-template-columns: 1fr;
	}
}
.voice-card__media {
	margin: -24px -22px 16px;
	height: 160px;
	overflow: hidden;
	background: #e9e4d8;
}

.voice-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
