.review * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.review-headline,
.review-headline--stars {
    font-size: calc(30px + 8*((100vw - 350px) /(1920 - 350)));
    padding: 20px 0 10px;
    margin: 0;
    padding: 0;
    /* color: white; */
    font-weight: 500;
    text-align: center;
}

.review-avg {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
}

.review:not(:last-of-type) {
    border-bottom: 2px solid #E3E3E3;
}

.review-header {
    /* background-color: #2945b8; */
    background-color: #195637;
    padding: 10px 20px;
    border-radius: 16px;
}

.review-author {
    font-size: 20px;
    color: white;
}

.review-figure {
    width: 100%;
}

.review-photo {
    border-radius: 16px;
    margin-bottom: 10px;
    cursor: pointer;
}

.review-checkmark {
    max-width: 15px;
}

.review-verified {
    font-size: 12px;
    color: #c2e329;
}

.review-title {
    font-size: 20px;
    font-weight: 600;
}

.review-description {
    /* font-weight: 300; */
}

.review-disclaimer {
    font-size: 11px;
    color: #848689;
    font-style: italic;
}

@media (min-width: 960px) {
    .review-header {
        max-width: 200px;
    }
}

.pf-modal {
    position: fixed;
    inset: 0;
    display: none;
    /* .open toggles it */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .9);
    z-index: 9999;
    padding: 24px;
    /* breathing room at edges */
}

.pf-modal.open {
    display: flex;
}

.pf-modal-content {
    position: relative;
    /* max-width: 1200px; */
    /* max-height: 95vh; */
    /* width: 100%; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px 15px;
    background: #195637;
    border-radius: 16px;
    /* height: fit-content; */
}

@media (max-width: 575px) {
    .pf-modal-content {
        height: fit-content
    }
}

/* Image is contained; no overflow */
.pf-modal-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    border-radius: 8px;
}

.pf-modal-close {
    position: absolute;
    top: 7.5px;
    right: 15px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 13px;
    background: white;
    color: black;
    font-size: 36px;
    line-height: 0;
    cursor: pointer;
}