/* Panel: Hear from our Candidates */

.panel-hear-from-our-candidates {
	background: #ffffff;
}

.panel-hear-from-our-candidates .container {
	max-width: 1280px;
}

/* Header Section */
.hear-from-candidates-header {
	text-align: center;
	margin-bottom: 23px;
}

.hear-from-candidates-top-heading {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 29px;
	letter-spacing: 1px;
	color: #080808;
	text-transform: uppercase;
	margin-bottom: 0;
}

.hear-from-candidates-main-heading {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 55px;
	letter-spacing: 1px;
	color: #252c32;
	margin: 0;
	margin-top: 23px;
}

.hear-from-candidates-description {
	margin-top: 23px;
}

.hear-from-candidates-description p {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 1px;
	color: #080808;
	margin: 0;
}

/* Testimonials Container */
.hear-from-candidates-testimonials {
	display: flex;
	flex-direction: column;
	gap: 37px;
	margin-top: 23px;
}

/* Testimonial Card */
.candidate-testimonial-card {
	background: #ffffff;
	border: 1px solid #c9cdd4;
	border-radius: 8px;
	padding: 32px;
}

.candidate-testimonial-card .row {
	align-items: center;
}

.candidate-testimonial-card .row > [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

/* Image Wrapper */
.candidate-testimonial-image-wrapper {
	position: relative;
	width: 100%;
	height: 324px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
}

.candidate-testimonial-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.candidate-testimonial-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.3s ease, background-color 0.3s ease;
	cursor: pointer;
}

.candidate-testimonial-play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: #f7f7f8;
	text-decoration: none;
}

.candidate-testimonial-play-button svg {
	width: 38px;
	height: 38px;
}

/* Content */
.candidate-testimonial-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	height: 100%;
	justify-content: flex-start;
}

.candidate-testimonial-rating {
	display: flex;
	gap: 4px;
	align-items: center;
}

.candidate-testimonial-rating svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.candidate-testimonial-text {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.54px;
	color: #252c32;
}

.candidate-testimonial-text p {
	margin: 0;
	font-weight:500;
	font-size: 18px;
}

.candidate-testimonial-name {
	margin-top: 0;
}

.candidate-testimonial-name p {
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	color: #252c32;
	margin: 0;
}

.candidate-testimonial-meta {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.candidate-testimonial-title,
.candidate-testimonial-country {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.54px;
	color: #6b7280;
}

.candidate-testimonial-divider {
	width: 2px;
	height: 12px;
	background: #e5e7eb;
	border-radius: 100px;
	flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.hear-from-candidates-main-heading {
		font-size: 36px;
		line-height: 46px;
	}
	
	.hear-from-candidates-description p {
		font-size: 20px;
		line-height: 30px;
	}
	
	.candidate-testimonial-image-wrapper {
		height: 280px;
		margin-bottom: 24px;
	}
	
	.candidate-testimonial-content {
		gap: 24px;
	}
	
	.candidate-testimonial-text {
		font-size: 16px;
		line-height: 24px;
	}
}

@media (max-width: 767px) {
	.hear-from-candidates-top-heading {
		font-size: 16px;
		line-height: 24px;
	}
	
	.hear-from-candidates-main-heading {
		font-size: 32px;
		line-height: 40px;
		margin-top: 16px;
	}
	
	.hear-from-candidates-description p {
		font-size: 18px;
		line-height: 28px;
	}
	
	.hear-from-candidates-testimonials {
		gap: 24px;
	}
	
	.candidate-testimonial-card {
		padding: 24px;
	}
	
	.candidate-testimonial-image-wrapper {
		height: 250px;
		margin-bottom: 20px;
	}
	
	.candidate-testimonial-content {
		gap: 20px;
	}
	
	.candidate-testimonial-text {
		font-size: 15px;
		line-height: 22px;
	}
	
	.candidate-testimonial-name p {
		font-size: 16px;
		line-height: 24px;
	}
	
	.candidate-testimonial-title,
	.candidate-testimonial-country {
		font-size: 15px;
		line-height: 22px;
	}
	
	.candidate-testimonial-play-button {
		width: 50px;
		height: 50px;
	}
	
	.candidate-testimonial-play-button svg {
		width: 30px;
		height: 30px;
	}
}

