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

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

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

.voices-title {
    margin-bottom: 1rem;
	font-family: var(--font-serif);
	font-size: var(--widget-title-size);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: var(--color-brand-navy);
}

.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-size: 1rem;
    color: var(--bs-body-color);
    margin-bottom: 1.25rem;
    position: relative;
    padding: 0 0.5rem;
    font-family: var(--font-serif);
	font-family: var(--font-ui);
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;
}

.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-size: 1rem;
    /* color: var(--bs-body-color); */
	color: var(--color-neutral-600);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 700;
    line-height: 1.3;
}

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

.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; }
}
