.testimonial-post {
    padding: 32px 0;
}

.testimonial-post__container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-post__wrap {
    padding: 20px 30px;
    background: #FFF;
    border-radius: 12px;
    border: 1px solid #EEEEEE;
}

.testimonial-post__logo {
    margin-bottom: 20px;
}

.testimonial-post__logo img {
    max-width: 360px;
    width: auto;
    height: auto;
    display: block;
}

.testimonial-post__quote {
    max-width: 1260px;
    margin-bottom: 50px;
    color: #1C1C1C;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
}

.testimonial-post__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-post__author-photo {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-post__author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-post__author-info {
    min-width: 0;
}

.testimonial-post__author-name {
    margin-bottom: 2px;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.testimonial-post__author-position {
    color: #575757;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}

@media (max-width: 767px) {
    .testimonial-post {
        padding: 20px 0;
    }

    .testimonial-post__container {
        padding: 0 16px;
    }

    .testimonial-post__wrap {
        padding: 20px;
    }

    .testimonial-post__logo img {
        max-width: 180px;
    }

    .testimonial-post__quote {
        margin-bottom: 40px;
    }

    .testimonial-post__author {
        gap: 14px;
    }

}