/* ===========================
   TESTIMONIAL
=========================== */

.testimonial-testo{
    max-width:1100px;
    margin:40px auto;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:30px;
    padding:26px 28px;
    box-sizing:border-box;
    font-family:Inter, Arial, Helvetica, sans-serif;
}

.header-testo{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.author-testo{
    display:flex;
    align-items:center;
}

.avatar-testo{
    width:88px;
    height:88px;
    border-radius:50%;
    background:#9fc5f8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    color:#3c5fb4;
    flex-shrink:0;
}

.info-testo{
    margin-left:18px;
}

.name-testo{
    font-size:18px;
    font-weight:700;
    color:#222;
    margin-bottom:6px;
}

.meta-testo{
    font-size:14px;
    color:#666;
}

.badge-testo{
    background:#e7f4e5;
    color:#3d8b3d;
    padding:8px 14px;
    border-radius:18px;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

.divider-testo{
    height:1px;
    background:#e5e5e5;
    margin:28px 0;
}

.quote-testo{
    font-size:16px;
    font-style:italic;
    font-weight:600;
    color:#222;
    line-height:1.6;
    margin-bottom:24px;
}

.content-testo{
    font-size:14px;
    line-height:1.85;
    color:#333;
}

.content-testo p{
    margin:0 0 22px;
}

.highlight-testo{
    margin:24px 0;
    padding:18px 22px;
    border:1px solid #e8e8e8;
    background:#fafafa;
    border-radius:18px;

    display:flex;
    align-items:center;
}

.icon-testo{

    width:30px;
    height:30px;

    border-radius:50%;

    background:#2e7d32;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:16px;
    font-weight:bold;

    margin-right:16px;

    flex-shrink:0;

}

.highlight-text-testo{

    font-size:14px;
    font-weight:700;
    color:#222;

}

.footer-testo{

    margin-top:34px;
    padding-top:22px;

    border-top:1px solid #e5e5e5;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

    gap:18px;

}

.footer-item-testo{

    display:flex;
    align-items:center;

    font-size:14px;
    color:#666;

}

.footer-item-testo span{

    margin-right:10px;

}

.footer-success-testo{

    color:#2e7d32;
    font-weight:600;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

.testimonial-testo{

	padding:22px;

}

.header-testo{

	flex-direction:column;
	align-items:flex-start;

}

.author-testo{

	align-items:center;

}

.avatar-testo{

	width:72px;
	height:72px;
	font-size:32px;

}

.info-testo{

	margin-left:14px;

}

.quote-testo{

	font-size:14px;

}

.content-testo{

	font-size:16px;

}

.highlight-text-testo{

	font-size:14px;

}

.footer-testo{

	flex-direction:column;
	align-items:flex-start;

}

}