.ankores-testimonial {
    padding: 40px;
    @media screen and (max-width:600px) {
        padding: 40px 20px;
    }
    background-color: var(--wp--preset--color--base);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--wp--preset--color--black);
    font-size: 14px;
    margin-top: 0;
}

.ankores-testimonial_image {
    width: min-content;
    @media screen and (max-width:600px) {
        width: 100%;
    }
    margin-right:25px;
    img {
        border-radius: 100%;
        max-width: 100px;
    }
}

.ankores-testimonial_text {
    flex: 1 1 0;
    min-width: 0;
    line-height: 25px;
}

.ankores-testimonial_meta {
    flex: 0 0 100%;
    display: inline-flex;
    margin-top: 25px;
    gap: 10px;
}
.ankores-testimonial_author {
    font-size: 16px;
    font-weight: 600;
}


.ankores-testimonials {
    display: flex;
    flex-direction: row;
    gap: 30px;
    @media screen and (max-width:600px) {
        flex-direction: column;
    }
}