.featured-content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
}

.featured-image {
    display: flex;

    width: 100%;
    justify-content: flex-start;
    max-width: 750px; 
}

.featured-image img {
    /* max-width: 100% !important;
    max-height: 426px !important;
    height: auto !important;
    object-fit: cover !important; */
    /* width: 100%;
    max-width: 750px;
    height: auto;
    max-height: 426px;
    object-fit: cover;
    display: block;
    margin: 0 auto; */
    flex: 1 1 750px;
    width: 100%;
    height: auto;
    max-height: 426px;
    object-fit: cover;
    display: block;
}

/* .featured-image img {
    width: 640px !important;
    height: 426px !important;
    object-fit: cover;
} */

.text-content {
    flex: 1;
}

.featured_title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.1149;
    color: #FFFFFF;
    margin: 0;
}

.featured-eyebrow {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}

.featured_paragraph {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.text-content {
    gap: 32px;
    display: grid;
}

.block-title {
    font-size: 24px;
    font-weight: bold;
    color: #008080;
}

.block-description {
    font-size: 16px;
    color: #333;
}

@media screen and (max-width: 768px) {
    .featured-content-block {
        display: grid !important;
        text-align: left;
    }
    .featured-image {
        grid-column: 1;
        grid-row: 2;
    }
    .featured-image img {
        max-width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .featured-content-block {
        display: grid !important;
        text-align: left;
        gap: 2rem;
    }
    .featured-image {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    .featured-image img {
        max-width: 100%;
        grid-column: 1;
        grid-row: 1;
    }
}

@media screen and (max-width: 1150px) and (min-width: 901px) {
    .featured-content-block {
        gap: 3rem;
    }
    .featured-image {
        width: 55% !important;
    }
}

@media screen and (max-width: 1920px) and (min-width: 1151px) {
    .featured-image img {
        min-width: 550px !important;
        max-width: 750px !important;
        width: 100% !important;
    }
}