.baker-img {
    display: block;
    border-radius: .5rem;
    width: 100%;
    object-fit: cover;
    height: 100%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

#pre-footer {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--sage-green-lighter);
}

.quote {
    font-family: var(--font-brand);
}

.contact-text {
    display: flex;
    flex-direction: column;
    margin: 1rem auto 2rem;
    text-align: center;
    border-bottom: 1px solid var(--clay-taupe)
}

@media screen and (min-width: 769px) {
    #contact {
        padding: 2rem 0;
    }

    h1 {
        text-align: center;
        margin-bottom: 0;
    }

    #contact .wrapper.row {
        width: 100%;
        max-width: 1200px;
    }

    .left-wrapper,
    .right-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #contact right-wrapper {
        align-items: center;
    }

    .baker-img {
        aspect-ratio: 1/1;
        border: 1.25rem solid var(--buttermilk-beige-light);
    }

    .quote {
        text-align: center;
        font-size: 3.5rem;
        line-height: 1.25;
        text-wrap-style: balance;
    }

}

@media screen and (min-width: 769px) and (max-width: 1300px) {

    .baker-img {
        border: 8px solid var(--buttermilk-beige);
        margin-bottom: 1.5rem;
    }

    .left-wrapper,
    .right-wrapper {
        align-items: center;
    }

    .wrapper.row {
        margin: 0 auto;
        max-width: 768px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    #contact {
        padding-top: 4rem;
    }

    h1 {
        margin-bottom: 0;
        text-wrap-style: balance;
    }

    #contact p {
        text-align: left;
        margin-bottom: .375rem;
    }

    #contact .wrapper {
        display: flex;
        flex-direction: column;
    }

    #contact .wrapper.row {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .contact-text {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .baker-img {
        border: 8px solid var(--buttermilk-beige);
        margin-bottom: 1.5rem;
    }

    .left-wrapper,
    .right-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }


    .quote {
        text-align: center;
        line-height: 1.25;
        font-size: 2.5rem;
        text-wrap-style: balance;
    }
}