/* Ensure the feature region container is sized appropriately */
.feature-region {
    width: 100%;
    height: auto;
    position: relative;
}

/* Hide any images in the feature region except those we add (custom feature image) */
.feature-region img:not(.custom-feature-img) {
    display: none !important;
}

/* Style for your custom feature image */
.feature-region .custom-feature-img {
    display: block !important;
    width: 100%;
    height: auto;
    object-fit: cover;
}