/*
 * Voices Widget — Testimoniale seminariști / absolvenți
 */

.voices-section {
	padding: 4rem 0;
}

.voices-heading {
	max-width: 720px;
	margin: 0 auto 3rem;
}

.voices-eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--bs-warning, #d9a300);
	margin-bottom: 0.75rem;
}

.voices-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.75rem, 2.8vw, 2.5rem);
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--bs-body-color);
}

.voices-intro {
	color: var(--bs-secondary-color, #6c757d);
	font-size: 1.05rem;
}

.voices-grid {
	max-width: 1200px;
	margin: 0 auto;
}

/* ── Card ── */
.voice-card {
	background: var(--bs-body-bg);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 1rem;
	padding: 2rem 1.75rem;
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.voice-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.voice-card__photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.voice-card__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.25);
	font-size: 2.5rem;
}

.voice-card__quote {
	font-style: italic;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--bs-body-color);
	margin-bottom: 1.25rem;
	position: relative;
	padding: 0 0.5rem;
}

.voice-card__quote::before {
	content: "\201C"; /* curly open quote */
	font-family: Georgia, serif;
	font-size: 3rem;
	line-height: 1;
	color: var(--bs-warning, #d9a300);
	opacity: 0.4;
	position: absolute;
	top: -1rem;
	left: -0.25rem;
}

.voice-card__quote p:last-child {
	margin-bottom: 0;
}

.voice-card__meta {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	width: 100%;
}

.voice-card__name {
	display: block;
	font-weight: 600;
	font-size: 1rem;
	color: var(--bs-body-color);
	text-decoration: none;
}

a.voice-card__name:hover {
	color: var(--bs-warning, #d9a300);
	text-decoration: underline;
}

.voice-card__role {
	display: block;
	font-size: 0.875rem;
	color: var(--bs-secondary-color, #6c757d);
	margin-top: 0.15rem;
}

/* ── Dark mode ── */
[data-bs-theme="dark"] .voice-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .voice-card__meta {
	border-top-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .voice-card__photo--placeholder {
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.3);
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
	.voices-section { padding: 2.5rem 0; }
	.voice-card { padding: 1.5rem 1.25rem; }
}
