.oaw-widget-featuredsections-card {
    position: relative;
    color: white;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    cursor: pointer;
    overflow: hidden;
}

.oaw-widget-featuredsections-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

.oaw-widget-featuredsections-card .oaw-widget-featuredsections-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #00000088 30%, #ffffff44 100%);
}

.oaw-widget-featuredsections-card .oaw-widget-featuredsections-card-overlay .oaw-widget-featuredsections-card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 6px 12px;
    font-size: 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    text-shadow: 1px 1px black;
}

.oaw-widget-featuredsections-card:hover img {
    transform: scale(1.15);
}