.single-blog-hero {
    background: var(--color-orange);

    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1rem;
    gap: 20px;

    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
    }

    position: relative;
    flex-direction: column;
    align-items: center;

    @media screen and (max-width: 767px) {
        display: flex;

        .blog-hero-copy {
            width: 100%;
        }
    }

    .blog-hero-copy {

        div.share-buttons_wrapper {
            padding-left: 1rem;
        }
    }
    .blog-hero-img-wrapper {
        aspect-ratio: 2 / 1.2;

        top: 23%;
        left: 11%;
        width: 87.5%;
        transform: rotate(357deg);

        justify-self: end;
        @media screen and (max-width: 767px) {
            justify-self: center;
        }


        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;

            border: 10px solid var(--color-beige);
            box-shadow: 6px 6px 6px #c6712847;
        }
    }

    img {

    }
    h1 {
        font-size: 4.5rem;
        color: var(--color-brown);
        margin-bottom: 1rem;
        font-family: var(--font-family-serif);
        line-height: 97%;
        @media screen and (max-width: 767px) {
            font-size: 2.8rem;
        }
    }

    .share-buttons ul {
        list-style: none;
        display: flex;
        gap: 15px;
        padding: 0;
        margin: 1em 0;
    }

    .share-buttons a {
        font-size: 1.5rem;
        color: var(--color-orange);
        text-decoration: none;
        transition: color 0.2s ease-in-out;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .share-buttons_wrapper {
        /*margin-top: 30px;*/
    }
    .share-buttons a {
        color: var(--color-borwn);
    }
    .meta-value {
        font-weight: 100;
    }
}
.blog-content {
    background: var(--color-beige);
    padding: 60px 0 140px;

    .content-wrapper {

        margin: 0 auto;
        max-width: 1200px;
        @media screen and (max-width: 767px) {
            max-width: 600px;
            padding: 0 20px;
        }
        @media screen and (max-width: 1060px) {
            max-width: 800px;
            padding: 0 45px;
        }
        @media screen and (max-width: 1260px) {
            max-width: 1000px;
            padding: 0 60px;
        }

        p {
            padding: 8px 0;

            strong {
                display: inline-block;
                font-size: 24px;
                padding-top: 16px;
            }

            a strong {
                text-decoration: underline;
            }
        }
        hr {
            color: var(--color-borwn);
            margin: 50px 0px;

        }
    }
}
.blog-grid.recipes-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 0;

    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
    }
}
