.service-card {
    padding: 0;
    overflow: hidden;
    border-top: 0;
    border-radius: 0 0 18px 0;
    position: relative
}

.service-card .service-image {
    height: 225px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0a4d42, #052d28);
    display: grid;
    place-items: center
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform .5s
}

.service-card:hover .service-image img {
    transform: scale(1.07)
}

.service-card .service-image>span {
    font-size: 65px;
    color: #dbc37f
}

.service-card .service-image>b {
    position: absolute;
    right: 18px;
    bottom: -1px;
    background: #fffdf8;
    color: #a98435;
    padding: 10px 15px;
    font: 700 16px Cinzel
}

.service-body {
    padding: 26px
}

.service-body>i {
    display: block;
    color: #c9a558;
    font-style: normal
}

.service-body h3 {
    margin: 8px 0 12px
}

.testimonial {
    padding: 100px 0;
    text-align: left
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 75px;
    align-items: center
}

.testimonial-seal {
    height: 280px;
    border: 1px solid #c9a558;
    outline: 1px solid #c9a55855;
    outline-offset: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #052d28;
    transform: rotate(3deg)
}

.testimonial-seal span {
    font-size: 70px;
    color: #ead99f
}

.testimonial-seal b {
    font: 700 20px Cinzel;
    color: #fff
}

.testimonial-seal small {
    color: #c9a558;
    letter-spacing: 1.5px;
    margin-top: 9px
}

.testimonial-copy .quote-mark {
    display: block;
    line-height: 1
}

.testimonial-copy blockquote {
    text-align: left;
    margin: -18px 0 15px;
    max-width: none
}

.home-posts {
    grid-template-columns: 1.35fr .825fr .825fr;
    align-items: stretch
}

.home-posts article {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.home-posts img {
    width: 100%;
    height: 215px;
    margin: 0
}

.home-posts .post-body {
    padding: 23px
}

.home-posts .featured-post {
    position: relative
}

.home-posts .featured-post img {
    height: 300px
}

.home-posts .featured-post h3 {
    font-size: 29px
}

.journal {
    background: linear-gradient(180deg, #fbf8ef, #f0eadb)
}

.footer-cta {
    background-size: cover;
    background-position: center
}

@media(max-width:960px) {
    .testimonial-grid {
        grid-template-columns: 240px 1fr;
        gap: 45px
    }

    .home-posts {
        grid-template-columns: 1fr 1fr
    }

    .home-posts .featured-post {
        grid-column: 1/-1
    }
}

@media(max-width:650px) {

    .testimonial-grid,
    .home-posts {
        grid-template-columns: 1fr
    }

    .testimonial-seal {
        height: 230px
    }

    .testimonial-copy blockquote {
        font-size: 22px
    }

    .home-posts .featured-post {
        grid-column: auto
    }

    .home-posts .featured-post img {
        height: 220px
    }
}