:root {
    --profile-photo-width: 150px;
}

.white-logo {
    opacity: 1;
   }
   
.page-hero {
    background-image: 
    var(--gradient-1),
    url("../media/reviews-hero.jpg");
  }

.review-section {
    background-color: vwhite;
}

.review-section > p {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 1em;
}

.review-grid {
    margin: 5em 0;
    columns: 450px;
    gap: 2em;
}


.review-card {
    width: 100%;
    position: relative;
    margin-bottom: 2em;
    padding: 2em;
    background-color: var(--very-light-grey);
    border-radius: calc(var(--border-radius));
    break-inside: avoid;
}

.review-card-text {
    margin-top: 0;
    font-size: 1.2rem;
}

.review-card-text i {
    color: var(--light-grey);
}

.review-card-text::before {
    content: url('../media/svg/quote-left-solid.svg');
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 0px;
    transform: translateY(8px);
}

.review-card-text::after {
    content: url('../media/svg/quote-right-solid.svg');
    display: inline-block;
    margin-left: 0px;
    margin-top: -10px;
    transform: translateY(8px);
}

.review-card-text::before, .review-card-text::after {
    display: inline-block;
    width: 30px;
    height: 30px;
    filter: invert(70%);
}

.review-bottom {
    align-content: center;;
}

.location {
    float: right;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--medium-grey);  
}

.review-name {
    color: grey;
    display: inline;
    float: right;
}

.review-stars {
    display: inline;
    color: goldenrod;
}

.google-reviews {
    margin: 3rem 0;
    min-height: 500px;
}

@media (max-width: 1000px) {
    .review-grid {
        max-height: none;
        height: auto;
    }

    .review-card {
        width: 100%;
        padding: 5% 5%;
    }

    .review-section > p {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 650px) {
    .review-card-text {
        font-size: 1.1rem;
    }
    
    .review-name {
        font-size: 1.4rem;
    }
}