/* Featured Testimonial Hero Section */
.panel-candidate-testimonial-featured {
	background-color: transparent;
}

.panel-candidate-testimonial-featured .featured-testimonial-box {
	background: #003EAB;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='134' height='296' viewBox='0 0 134 296' fill='none'%3E%3Cpath d='M129.595 0H4.40547C1.97024 0 0 1.96746 0 4.39926V129.412C0 131.844 1.97024 133.811 4.40547 133.811H49.6921L49.7497 139.9C50.1571 182.064 50.8378 252.247 4.13222 256.22C1.82163 256.368 0 258.269 0 260.605L0.0143813 291.869C0.162988 294.281 2.24348 296.129 4.65954 295.99C60.1425 292.534 92.5675 268.609 111.143 234.291C129.446 200.475 134 156.784 134 112.873V4.39926C134 1.96746 132.03 0 129.595 0ZM125.194 112.873C125.194 155.578 120.846 197.9 103.397 230.126C86.7383 260.887 57.8463 282.639 8.82052 286.871V264.497C59.6392 256.627 58.9489 183.936 58.527 139.833C58.4983 137.066 58.4743 134.529 58.4743 129.412C58.4743 126.985 56.5041 125.003 54.0688 125.003H8.82052V8.79374H125.194V112.873Z' fill='%23114CB2'/%3E%3C/svg%3E");
	background-repeat:no-repeat;
	background-position:right 32px top 32px;
	border-radius: 12px;
	padding: 32px 64px 32px 32px;
	display: flex;
	gap: 64px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.panel-candidate-testimonial-featured .featured-video {
	position: relative;
	width: 564px;
	height: 318px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background-color: #000000;
}

.panel-candidate-testimonial-featured .video-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.panel-candidate-testimonial-featured .video-thumbnail:hover {
	transform: scale(1.05);
}

.panel-candidate-testimonial-featured .video-thumbnail::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
}

.panel-candidate-testimonial-featured .video-thumbnail:hover::before {
	background: rgba(0, 0, 0, 0.35);
}

.panel-candidate-testimonial-featured .play-button {
	position: relative;
	z-index: 2;
	width: 84px;
	height: 84px;
	transition: transform 0.3s ease;
}

/*
.panel-candidate-testimonial-featured .video-thumbnail:hover .play-button {
	transform: scale(1.1);
}
*/

.panel-candidate-testimonial-featured .play-button svg {
	width: 100%;
	height: 100%;
	display: block;
}

.panel-candidate-testimonial-featured .video-embed-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 3;
	margin:0;
}

.panel-candidate-testimonial-featured .featured-video.playing .video-thumbnail {
	display: none;
}

.panel-candidate-testimonial-featured .featured-video.playing .video-embed-wrapper {
	display: block;
}

.panel-candidate-testimonial-featured .video-embed-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Featured Content */
.panel-candidate-testimonial-featured .featured-content {
	flex: 1;
	min-width: 0;
}

.panel-candidate-testimonial-featured .featured-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.panel-candidate-testimonial-featured .featured-author {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.panel-candidate-testimonial-featured .featured-name {
	font-family: 'Figtree', sans-serif;
	font-size: 38px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.76px;
	color: #ffffff;
	margin: 0;
}

.panel-candidate-testimonial-featured .featured-title {
	font-family: 'Figtree', sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.4;
	color: #FDDB33;
	margin: 0;
}

.panel-candidate-testimonial-featured .featured-quote {
	font-family: 'Figtree', sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}


/* Responsive for Featured Section */
@media (max-width: 991px) {
	.panel-candidate-testimonial-featured .featured-testimonial-box {
		flex-direction: column;
		padding: 32px;
		gap: 32px;
	}
	
	.panel-candidate-testimonial-featured .featured-video {
		width: 100%;
		max-width: 564px;
	}
	
	.panel-candidate-testimonial-featured .featured-name {
		font-size: 32px;
		letter-spacing: -0.64px;
	}
	
}

@media (max-width: 767px) {
	.panel-candidate-testimonial-featured .featured-video {
		height: 250px;
	}
	
	.panel-candidate-testimonial-featured .featured-name {
		font-size: 28px;
		letter-spacing: -0.56px;
	}
	
	.panel-candidate-testimonial-featured .featured-quote {
		font-size: 17px;
	}
	
	.panel-candidate-testimonial-featured .featured-title {
		font-size: 17px;
	}
}

/* Candidate Testimonials Panel */
.panel-candidate-testimonials {
	position: relative;
	background-color: #ffffff;
}

/* Testimonials Grid */
.panel-candidate-testimonials .testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Testimonial Card */
.panel-candidate-testimonials .testimonial-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 16px;
	padding-bottom: 20px;
}

/* Video Section */
.panel-candidate-testimonials .testimonial-video {
	position: relative;
	height: 220px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background-color: #000000;
}

.panel-candidate-testimonials .video-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.panel-candidate-testimonials .video-thumbnail:hover {
	transform: scale(1.05);
}

.panel-candidate-testimonials .video-thumbnail::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
}

.panel-candidate-testimonials .video-thumbnail:hover::before {
	background: rgba(0, 0, 0, 0.35);
}

.panel-candidate-testimonials .play-button {
	position: relative;
	z-index: 2;
	width: 60px;
	height: 60px;
	transition: transform 0.3s ease;
}

/*
.panel-candidate-testimonials .video-thumbnail:hover .play-button {
	transform: scale(1.1);
}
*/

.panel-candidate-testimonials .play-button svg {
	width: 100%;
	height: 100%;
	display: block;
}

.panel-candidate-testimonials .video-embed-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 3;
	margin:0;
}

.panel-candidate-testimonials .testimonial-card.playing .video-thumbnail {
	display: none;
}

.panel-candidate-testimonials .testimonial-card.playing .video-embed-wrapper {
	display: block;
}

.panel-candidate-testimonials .video-embed-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Content Section */
.panel-candidate-testimonials .testimonial-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 8px;
	margin-top: 20px;
}

.panel-candidate-testimonials .testimonial-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 41px;
	height: 100%;
}

.panel-candidate-testimonials .testimonial-quote {
	font-family: 'Figtree', sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.4;
	color: #051D2E;
	margin: 0;
}

.panel-candidate-testimonials .testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: auto;
}

.panel-candidate-testimonials .author-name {
	font-family: 'Figtree', sans-serif;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.4;
	color: #051D2E;
	margin: 0;
}

.panel-candidate-testimonials .author-title {
	font-family: 'Figtree', sans-serif;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.2;
	color: #63666F;
	margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.panel-candidate-testimonials .testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.panel-candidate-testimonials .testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.panel-candidate-testimonials .testimonial-card {
		height: auto;
	}
}

/* Hidden testimonials */
.panel-candidate-testimonials .testimonial-card.hidden-testimonial {
	display: none;
}

/* Load more button wrapper */
.panel-candidate-testimonials .testimonials-load-more-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
