.__scene .__quote-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: min(90%, 600px);
    box-sizing: border-box;
    padding: 40px 0 0;
    margin-left: auto;
    margin-right: auto;
}

.__scene .__quote {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    gap: 20px;
}

.__scene .__quote .__quote-text {
    /*font-family: "Times New Roman";*/
    position: relative;
    font-size: 21px;
    line-height: 32px;
    font-weight: 500;
}

.__scene .__quote .__quote-text:before {
    content: '';
    display: block;
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
    background-image: url("../img/quote.png");
    background-size: 35px;
    background-position: left top;
    background-repeat: no-repeat;
    border-bottom: 1px solid #787878;
}

.__scene .__quote .__quote-author {
    display: flex;
    justify-self: flex-end;
    justify-content: center;
    text-align: left;
    gap: 10px;
}

.__scene .__quote .__quote-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.__scene .__quote .__quote-author-name {
    font-weight: 500;
}

.__scene .__quote .__quote-author-company {
    font-weight: 100;
    min-height: 48px;
}

@media (min-width: 1024px) {
    .__scene .__quote-grid {
        max-width: unset;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        width: 768px;
        padding: 80px 0 0;
    }

    .__scene .__quote {
        gap: 50px;
    }
}

@media (min-width: 1200px) {
    .__scene .__quote-grid {
        width: 1024px;
    }
}
