.post-quote {
    background: rgba(77, 156, 224, 0.10);
    border-radius: 12px;
    padding: 24px;
}

.post-quote .wrapper {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.post-quote .icon {
    min-width: 45px;
}

.post-quote .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.post-quote .content .title {
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
}

.post-quote .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-quote .author img {
    width: 36px;
    height: 36px;
}

.post-quote .author .name {
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .post-quote .icon {
        display: none;
    }

    .post-quote .content .title {
        font-size: 16px;
    }

    .post-quote .author .name {
        font-size: 12px;
    }
}