ul.oaw-geo-featured-regions-nav {
    display: grid;
    gap: 12px;
    width: 100%;
    list-style: none;
    padding: 24px 0;
}

ul.oaw-geo-featured-regions-nav li {
    overflow: hidden;
    aspect-ratio: 4/1;
    height: auto;
    width: 100%;
}

.oaw-geocard {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.oaw-geocard img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

.oaw-geocard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #00000088 30%, #ffffff44 100%);
}

.oaw-geocard-text-wrap {
    position: relative;
    height: 100%;
    width: 100%;
}

.oaw-geocard-text {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 12px 24px;
    font-size: 24px;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px #000000;
    text-transform: uppercase;
}

.oaw-geocard:hover img {
    filter: brightness(50%);
}

@media only screen and (min-width: 576px) {
    .oaw-geocard-text {
        font-size: 30px;
    }
}


@media only screen and (min-width: 992px) {
    ul.oaw-geo-featured-regions-nav {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
    }

    .oaw-geocard-text {
        font-size: 26px;
    }
}