﻿.nav-callout
{
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: .875rem;
    max-width: 100%;
    margin: 0;
}
@media screen and (min-width: 1140px)
{
    .nav-callout
    {
        max-width: 21.25rem;
        row-gap: 1rem;
    }
}
.nav-callout-container
{
    position: relative;
    aspect-ratio: 3/2;
    background-color: #000;
    overflow: hidden;
}
@media screen and (min-width: 1140px)
{
    .nav-callout-container
    {
        aspect-ratio: 1/1;
    }
}
.nav-callout-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    transition: transform 3s cubic-bezier(.165,.84,.44,1);
}
.nav-callout .heading-6
{
    margin-bottom: 0;
    color: var(--text-primary);
}
.nav-callout-link
{
    position: relative;
    width: 100%;
    height: 100%;
}
.nav-callout-link:hover .nav-callout-image
{
    transform: scale(1.1);
}