/* Testimonials - Classic Style */

.testimonials-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.testimonial-card {
	box-sizing: border-box;
	width: 100%;
	padding: 40px;
	border: 1px solid var(--ast-global-color-0, #568b44);
	border-radius: 12px;
	background: #ffffff;
}

.testimonial-content {
	position: relative;
	margin: 0;
	padding: 95px 0 0;
	border: 0;
}

.testimonial-content::before {
	content: "\201C";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 128px;
	line-height: 1;
	font-family: Georgia, serif;
}
.testimonial-content {
	font-size: 18px;
	line-height: 1.7;
}

/* Testimonial logo */

.testimonial-logo img {
	width: 100% !important;
	max-width: 200px !important;
}

/* Testimonial author */

.testimonial-author {
	margin-top: 48px;
}

.testimonial-author-info {
	margin: 30px 0 0 8px;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.testimonial-name-details {
	min-width: 0;
	line-height: 1.5;
}

.testimonial-name {
	font-weight: bold;
	margin-top: 20px;
}

.testimonial-company-details {
	margin: 0;
}

/* Testimonial website */

.testimonial-website a {
	color: var(--ast-global-color-0, #568b44);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.testimonial-website a:hover {
	text-decoration-thickness: 2px;
}

/* Testimonial pagination */

.testimonial-pagination {
	margin-top: 40px;
}

.testimonial-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.testimonial-pagination li {
	margin: 0;
	padding: 0;
}

.testimonial-pagination a,
.testimonial-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 8px 12px;
	box-sizing: border-box;
	text-decoration: none;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
}

.testimonial-pagination a:hover {
	text-decoration: none;
}

.testimonial-pagination .current {
	font-weight: 600;
}
@media screen and (max-width: 767px) {
  /* Your mobile-specific CSS rules go here */
	.testimonial-card {
		padding: 20px;
	}
}
