div.college-fresh-callout {
    display                : grid;
    grid-template-columns  : repeat(12, 1fr);
    /*height               : 723px;*/
    position               : relative;
}

@media screen and (max-width: 1000px) {
    div.college-fresh-callout {
        grid-template-columns: repeat(6, 1fr);
    }

    div.college-fresh-callout>div.content {
        padding-right: 0;
    }

    /*div.college-fresh-callout>img.image-container {
        min-height: unset;
        transform : rotate(90deg);
        height    : 100vw;
        bottom    : 0;
    }*/

    div.college-fresh-callout>img.image-container {
        display: none;
    }

    div.college-fresh-callout>img.mobile-image-container {
        position             : relative;
        height               : auto;
        display              : block;
        grid-template-columns: repeat(6, 1fr);
        width                : 100%;
        grid-column          : 1 / 8;
        margin-top           : -40%;
    }
}

@media (min-width: 740px) {
    div.college-fresh-callout>img.mobile-image-container {
        margin-top: -50%;
    }
}

@media (min-width: 800px) {
    div.college-fresh-callout>img.mobile-image-container {
        margin-top: -40%;
    }
}

@media (min-width: 850px) {
    div.college-fresh-callout>img.mobile-image-container {
        margin-top: -42%;
    }
}

@media (min-width: 900px) {
    div.college-fresh-callout>img.mobile-image-container {
        margin-top: -58%;
    }

    div.college-fresh-callout>.content>.body-container {
        max-width: 500px;
    }
}

@media (max-width: 1600px) {

    /* div.college-fresh-callout {
        flex-direction: column;
    }

    div.college-fresh-callout>.image-container {
        width: 100% !important;
        background-size: contain;
        background-image: url(/wp-content/themes/college-fresh/static/stock-photo-organic-fresh-vegetables-frame-on-white-background-top-view-copy-space-1213270297.png) !important;
    } */

}

div.college-fresh-callout>.content {
    padding       : 4em;
    grid-column   : 1 / 8;
    padding-bottom: 0;
    z-index       : 1;
    margin-left   : 5%;
    margin-top    : 6%;
}

div.college-fresh-callout>.content>* {
    /* margin: 0 auto; */
}

div.college-fresh-callout>.image-container {
    min-height: 50vh;
    z-index   : 0;
    position  : absolute;
    right     : 0;
    height    : 828px;
    width     : auto;
    max-width : 1000%;
}

div.college-fresh-callout>.image-container>img {
    min-height: 400px;
}

div.college-fresh-callout>.content>.body-container {
    width     : 75%;
    margin-top: -15px;
}

div.college-fresh-callout>.content>.link-container {
    display   : flex;
    gap       : 3em;
    margin-top: 50px;
}

div.college-fresh-callout>.content>.link-container>a {
    position        : relative;
    display         : inline-block;
    width           : fit-content;
    color           : white;
    background-color: green;
    padding         : 0.75em 0.75em 0.75em 1.25em;
    padding-right   : 4em;
    text-decoration : none;
    text-transform  : uppercase;
    font-size       : 80%;
    font-weight     : bold;
    border-radius   : 0 1.2em;
}

div.college-fresh-callout>.content>.link-container>a:after {
    content            : "";
    background         : #40AE49;
    background-image   : url(/wp-content/themes/college-fresh/static/white-chevron.svg);
    background-repeat  : no-repeat;
    background-position: center center;
    background-size    : 10px;
    border-radius      : 0 1.2em 0 1.2em;
    right              : 0;
    top                : 0;
    bottom             : 0;
    width              : 35px;
    position           : absolute;
    animation          : animate-link-arrow-out .2s ease-out;
    animation-fill-mode: forwards;
}

div.college-fresh-callout>.content>h1 {
    font-weight: 100;
}

div.college-fresh-callout>.content>h1>span {
    color         : green;
    font-size     : 200%;
    font-family   : inherit;
    font-weight   : 600;
    letter-spacing: 2px;
    top           : -20px;
    position      : relative;
}


@keyframes animate-link-arrow-in {
    0% {
        background-position: center;
    }

    50% {
        background-position: 80%;
    }

    100% {
        background-position: 70%;
    }
}

@keyframes animate-link-arrow-out {
    from {
        background-position: 70%;
    }

    to {
        background-position: center;
    }
}

div.college-fresh-callout>.content>.link-container>a:hover:after {
    color              : red;
    transition         : background-position .3s;
    animation          : animate-link-arrow-in .2s ease-out;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 1000px) {
    div.college-fresh-callout {
        flex-direction: row;
    }

    div.college-fresh-callout>div.content {
        margin-left: 0;
        padding    : 3em 2em;
    }

    div.college-fresh-callout>.content>.body-container {
        width: 100%;
    }

    div.college-fresh-callout>div.content p {}
}

@media screen and (min-width: 1000px) {
    div.college-fresh-callout {
        height: 723px;
    }

    div.college-fresh-callout>img.mobile-image-container {
        display: none;
    }

    div.college-fresh-callout>img.image-container {
        display: block;
    }
}

div.college-fresh-callout>img.image-container {
    position: fixed !important;
    top     : 0;
    right   : max(0px, (100% - 1920px) / 2);
    z-index : -1;
}