.pw-testimonials {
	width: 100%;
}

.pw-testimonials__header {
	text-align: center;
	margin-bottom: 32px;
}

.pw-testimonials__title {
	margin: 0 0 10px;
	font-weight: 700;
	line-height: 1.2;
}

.pw-testimonials__subtitle {
	margin: 0 auto 16px;
	max-width: 560px;
	line-height: 1.6;
}

.pw-testimonials__overall {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.pw-testimonials__overall-stars,
.pw-testimonial-card__stars {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.pw-testimonials__overall-stars i,
.pw-testimonial-card__stars i {
	font-size: 15px;
	color: #FFB800;
	line-height: 1;
}

.pw-testimonials__overall-text {
	font-size: 14px;
}

.pw-testimonials__link {
	display: inline-block;
	margin-top: 4px;
	font-weight: 600;
	text-decoration: underline;
}

/* -------------------------------------------------- */
/* Grid                                                */
/* -------------------------------------------------- */

.pw-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

/* -------------------------------------------------- */
/* Tarjeta                                             */
/* -------------------------------------------------- */

.pw-testimonial-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #ffffff;
	border-radius: 14px;
	padding: 32px 28px;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.pw-testimonial-card:hover {
	transform: translateY(-4px);
}

.pw-testimonial-card__stars {
	margin-bottom: 14px;
}

.pw-testimonial-card__text {
	margin: 0 0 24px;
	line-height: 1.6;
	flex-grow: 1;
}

.pw-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pw-testimonial-card__avatar img {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.pw-testimonial-card__author-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.pw-testimonial-card__name {
	font-weight: 700;
	line-height: 1.3;
}

.pw-testimonial-card__company {
	font-size: 13px;
	line-height: 1.3;
}

/* -------------------------------------------------- */
/* Responsive                                          */
/* -------------------------------------------------- */

@media (max-width: 1024px) {
	.pw-testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.pw-testimonials__grid {
		grid-template-columns: 1fr;
	}
}
