.post-quote-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--primary-dark);
    max-width: 940px;
    margin: 0 auto;
    background: var(--primary-beige);
    padding: 40px ;
}

.post-quote-content img {
    min-width: 40px;
}

.post-quote-content p {
    margin: 0;
    padding: 0;
}

.post-quote-content .title {
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
}

.post-quote-content .author {
    margin-top: 8px;
}

@media (max-width: 992px) {
    .post-quote .container {
        padding: 0;
    }

    .post-quote-content {
        padding: 40px 24px;
    }

    .post-quote-content .title,
    .post-quote-content .author {
        font-size: 18px;
    }
}