.rating__rating_stars.rating__rating_stars--is_tiny {
    width: 90.75px;
    height: 15px;
    background-size: 18.15px 15px;
}

.rating__rating_stars.rating__rating_stars--is_grey {
    background-image: url(../images/icons/star_grey.svg);
}

.rating__rating_stars.rating__rating_stars--is_tiny {
    width: 90.75px;
    height: 15px;
    background-size: 18.15px 15px;
}

.two-one-col-layout > div:first-child p,
.opening-paragraph p {
    margin-bottom: var(--large)
}

.two-one-col-layout > div:first-child img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.body-content h3 {
    margin-bottom: var(--small);
}

.body-content ul {
    margin-left: 24px;
    margin-bottom: var(--small);
}

.body-content ul li {
    line-height: 32px;
}

.body-content .two-one-col-layout div:first-child div {
    margin-bottom: var(--medium)
}

.body-content .two-one-col-layout div:first-child hr {
    margin-top: 32px;
    margin-bottom: 32px;
}

.hero-left img {
    display: none;
}


.rating__rating_stars.rating__rating_stars--is_medium {
    width: 181.5px;
    height: 30px;
    background-size: 36.3px 30px;
}

.rating__rating_stars {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-image: url(/images/icons/star_navy_light.svg);
    background-position: top left;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.rating_stars__exact_rating {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-image: url(/images/icons/star_lime.svg);
    background-position: top left;
    background-repeat: repeat-x;
}

.rating__rating_stars.rating__rating_stars--is_medium
.rating_stars__exact_rating {
    background-size: 36.3px 30px;
}

.rating__rating_stars.rating__rating_stars--is_tiny {
    width: 90.75px;
    height: 15px;
    background-size: 18.15px 15px;
}

.rating__rating_stars.rating__rating_stars--is_tiny .rating_stars__exact_rating {
    background-size: 18.15px 15px;
}

blockquote::before {
    content: "“";
    top: -7px;
    left: -90px;
}

blockquote::after {
    content: "”";
    right: -90px;
    bottom: -64px;
}

blockquote::before,
blockquote::after {
    position: absolute;
    color: rgb(255 255 255 / 7%);
    font-family: "League Spartan", Arial, Helvetica;
    font-size: 174px;
    font-weight: bold;
    font-style: normal;
}

.testimonial blockquote::before {
    content: "“";
    font-size: 99px;
    top: -7px;
    left: -22px;
}

.testimonial blockquote::after {
    content: "”";
    font-size: 99px;
    right: -23px;
    bottom: 15px;
}


ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    position: relative;
    margin-left: 42px;
}

ol li {
    counter-increment: my-awesome-counter;
    margin: 0.25rem;
}

ol li::before {
    content: counter(my-awesome-counter);
    background-color: var(--zest-purple);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    line-height: 2rem;
    color: white;
    font-weight: bold;
    text-align: center;
    margin-right: 0.5rem;
    position: absolute;
    left: -42px;
}

.post {
    background-color: var(--grey);
    border-radius: 4px;
    width: 100%;
    max-width: 350px;
}

.post h3 {
    padding: 16px 16px 0 16px;

}

.post h3 a {
    color: var(--zest-purple);
    text-decoration: none;
}

.post .post-excerpt {
    padding: 0 16px;
}

.body-content ul.list-columns {
    column-count: 3;
    list-style: none;
    color: var(--zest-purple);
    margin: 0 0 48px 0;
}

.body-content h3 a {
    color: var(--zest-purple);
}

.provider-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    list-style: none;
    min-width: 80px;
    width: fit-content;
    max-width: 100%;
}

.two-one-col-layout > div blockquote .quote {
    margin-bottom: var(--small)
}

.two-one-col-layout > div blockquote .source {
    margin-bottom: 0;
}

.quote-list blockquote {
    position: relative;
    margin: 0 0 16px 0;
    background-color: var(--grey);
    padding: 42px 32px;

}

.quote-list blockquote:before,
.quote-list blockquote:after {
    color: var(--dark-grey);
    font-size: 80px;
}

.quote-list blockquote:before {
    left: 3px;
    top: 7px;
}

.quote-list blockquote:after {
    right: 3px;
    bottom: -39px;
}


@media (max-width: 820px) {

    .quote-list blockquote:before,
    .quote-list blockquote:after {
        display: block;
    }

    .post-container {
        flex-direction: column;
    }

    .post {
        max-width: 100%;
    }

    .two-one-col-layout {
        display: flex;
        flex-direction: column;
    }

    .body-content ul.list-columns {
        column-count: 2;
    }

    blockquote::before,
    blockquote::after {
        display: none;
    }
}