/* block-feature-image.css */

.feature-image {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
}

.feature-image__image {
    max-height: 224px;
    height: 262px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* Ensure the background image covers the container */
}

.portrait-image .feature-image__image {
    width: 100%;
    height: 430px;
    max-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    /* Ensure the background image covers the container */
}


.feature-image__content {
    padding: 76px 0 25px 47px;
    background-color: #004D43;
    display: flex;
    flex-direction: column;
    align-content: center;
    border-bottom: 34px solid #EEE241;
}

.feature-image__title {
    text-align: left;
    font: normal normal bold 30px/35px "Raleway_bold";
    letter-spacing: 0px;
    padding: 0;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.feature-image__text p {
    text-align: left;
    font: normal normal normal 18px/24px "Raleway_light";
    letter-spacing: 0px;
    color: #FFFFFF;
    max-width: 290px;
}

.feature-image.full-bg-img .feature-image__text p {
    font: normal normal bold 25px/43px "Raleway_bold";
}



@media (max-width: 968px) {
    .feature-image.full-bg-img .feature-image__text {
        text-align: center;
    }

    .feature-image.full-bg-img .feature-image__content {
        padding-left: 0;
    }

    .feature-image.full-bg-img .feature-image__title,
    .feature-image.full-bg-img .feature-image__text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

}

@media screen and (max-width: 450px) {

    .feature-image.full-bg-img .feature-image__title,
    .feature-image.full-bg-img .feature-image__text {
        max-width: 286px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 968px) {
    .feature-image {
        flex-direction: row;
        position: relative;
        margin-bottom: 120px !important;
    }

    .feature-image__image {
        max-width: 890px;
        max-height: 500px;
        width: 100%;
        height: 500px;
    }

    .square-image .feature-image__image {
        max-width: 800px;
        max-height: 800px;
        width: 100%;
        height: 800px;
    }


    .portrait-image .feature-image__image {
        max-width: 600px;
        max-height: 800px;
        width: 100%;
        height: 800px;
    }

    .feature-image__content {
        position: absolute;
        padding: 76px 44px 80px 52px;
        width: 100%;
        max-width: 586px;
        max-height: 408px;
        right: -25%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .feature-image__text {
        text-align: left;
        font: normal normal bold 30px/35px "Raleway_light";
        letter-spacing: 0px;
        color: #FFFFFF;
    }

    .feature-image__text p {
        max-width: 490px;
    }

    .feature-image.full-bg-img {
        max-width: 100% !important;
    }

    .feature-image.full-bg-img .feature-image__image {
        max-width: 100%;
        height: 647px;
    }

    .feature-image.full-bg-img .feature-image__content {
        padding: 90px 44px 88px 52px;
        width: 100%;
        right: -12.5%;
    }

    .feature-image.full-bg-img .feature-image__title {
        font: normal normal bold 30px/35px "Raleway_bold";
    }

    .feature-image.full-bg-img .feature-image__text p {
        font: normal normal bold 25px/43px "Raleway_bold";
    }
}