/**
 * [B] Testimonials — Elementor Widget Frontend Styles
 *
 * Design adapted from the Marian Iturre Depoimentos section.
 *
 * @package BDW_Testimonials
 */

/* ── GRID ────────────────────────────────────── */
.bdw-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

/* ── CARD ────────────────────────────────────── */
.bdw-testimonials-card {
	background: #ffffff;
	padding: 40px;
	position: relative;
	border-left: 3px solid #E8601A;
}

/* Quote mark */
.bdw-testimonials-card::before {
	content: '\201C';
	position: absolute;
	top: 20px;
	right: 30px;
	font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	font-size: 80px;
	color: #E8601A;
	opacity: 0.2;
	line-height: 1;
	pointer-events: none;
}

.bdw-testimonials-card--no-mark::before {
	display: none;
}

/* ── FADE-IN ANIMATION ───────────────────────── */
.bdw-testimonials-animated .bdw-testimonials-card {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bdw-testimonials-animated .bdw-testimonials-card.bdw-testimonials-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── IMAGE ───────────────────────────────────── */
.bdw-testimonials-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 24px;
	border: 2px solid #E8601A;
	flex-shrink: 0;
}

.bdw-testimonials-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── QUOTE ───────────────────────────────────── */
.bdw-testimonials-quote {
	font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	font-size: 20px;
	font-style: italic;
	line-height: 1.6;
	color: #2a2926;
	margin-bottom: 24px;
	max-width: 100%;
}

/* ── AUTHOR ──────────────────────────────────── */
.bdw-testimonials-author {
	font-size: 13px;
	color: #7a7672;
	line-height: 1.5;
}

.bdw-testimonials-author strong {
	display: block;
	font-size: 14px;
	color: #2a2926;
	font-weight: 500;
	margin-bottom: 4px;
}

.bdw-testimonials-author span {
	display: block;
}

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 768px) {
	.bdw-testimonials-card {
		padding: 32px 24px;
	}

	.bdw-testimonials-quote {
		font-size: 18px;
	}

	.bdw-testimonials-card::before {
		font-size: 60px;
		top: 16px;
		right: 20px;
	}
}

/* ── ELEMENTOR EDITOR ────────────────────────── */
.elementor-editor-active .bdw-testimonials-animated .bdw-testimonials-card {
	opacity: 1;
	transform: none;
}
