.section--product-featured-image {
    /*background-image: url(../img/bkg_ceiling.jpg);
    background-position: 50% 10%;
    background-repeat: no-repeat;
    background-size: cover;*/
    height: 240px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--abc-red);
}

.section--product-featured-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

.product-featured-image {
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
}

.section--product-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.section--product-featured-image h1#featured-title {
    color: var(--abc-white);
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-featured);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.75);
    position: absolute;
    bottom: 1rem;
    margin-right: 30px;
    margin-bottom: 0;
    line-height: 0.9em;
    z-index: 9;
}

.section--product-featured-image h1#featured-title br {
    display: none;
}

.section--product-resources {
    background-color: var(--abc-grey-lightest);
}

@media (min-width: 576px) {
    .section--product-featured-image {
        height: 300px;
    }
    .section--product-featured-image h1#featured-title {
     
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .section--product-featured-image {
        height: 320px;
    }
    .section--product-featured-image h1#featured-title {
   
        max-width: 720px;
    }
    .section--product-featured-image h1#featured-title br {
        display: block;
    }
}

@media (min-width: 992px) {
    .section--product-featured-image {
        height: 360px;
    }
    .section--product-featured-image::before {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    }
    .section--product-featured-image h1#featured-title {
     
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .section--product-featured-image {
        height: 400px;
    }
    .section--product-featured-image h1#featured-title {
       
        max-width: 1320px;
    }
}

@media (min-width: 1400px) {
    .section--product-featured-image {
        height: 420px;
    }
    .section--product-featured-image h1#featured-title {
        max-width: 1480px;
    }
}
