.review_cards {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: solid 1px #ddd;
}

    .review_cards h3{
        font-size: 1.5625rem;
        font-weight: 700;
        color: #0076AD;
        line-height: 140%;
        letter-spacing: 0.05em;
    }

    .review_cards .name {
        font-size: 1rem;
        line-height: 150%;
        color: #4C4C4C;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: auto;
    }

    .review_cards .image {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        margin-bottom: 16px;
    }
    @media (max-width: 768px) {
        .review_cards .image {
            padding-bottom: 12px;
        }
    }

        .review_cards .image img {
            height: 100%;
        }