/* ==================================================
   COCKTAILS FOR CRITTERS — IMAGE FRAMES
================================================== */

body .row-block-section--blob-cta .blob-cta-block__image {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px;

    background-color: #9f6a36;
    background-image:
        linear-gradient(
            rgba(70, 35, 10, 0.2),
            rgba(70, 35, 10, 0.2)
        ),
        url("https://www.calgaryhumane.ca/wp-content/uploads/2026/07/Asset-1.webp");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    border-radius: 16px;
    box-sizing: border-box;

    filter: drop-shadow(
        0 3px 0.5px rgba(70, 35, 10, 0.75)
    );
}

body .row-block-section--blob-cta .blob-cta-block__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    body .row-block-section--blob-cta .blob-cta-block__image {
        background-attachment: scroll;
        background-size: cover;
    }
}
