
.quote {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-photo {
    width: 188px;
    height: 188px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.quote-photo:after {
    z-index: 1;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    opacity: 0.55;
    background: linear-gradient(to bottom, rgba(255,77,0,0) 0%, rgba(255,77,0,1) 100%);
}
.quote-photo__item {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}
.quote-photo__l {
    width: 138px;
    position: absolute;
    z-index: 2;
    right: 5px;
    bottom: 5px;
}
.quote-content {
    max-width: 758px;
    flex: 1;
    margin-left: 52px;
}
.quote-content .h4 {
    margin-bottom: 15px;
}
.quote-author {
    opacity: 0.5;
    font-weight: 500;
}

@media (max-width: 767px) {
    .quote {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .quote-content {
        text-align: left;
        margin-left: 0;
        margin-top: 24px;
    }
}
