.news-image-text {
    background: #F7F7F7;
    border: 1px solid #E2E2E2;
    display: flex;
    flex-direction: row;
    gap: 44px;
    border-radius: 32px;
    overflow: hidden;
    align-items: stretch;
}

.news-image-text .img-wrapper {
    width: 100%;
    max-width: 616px;
    position: relative;
    display: flex;
    flex-shrink: 0;
}

.news-image-text .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image-text__desc {
    padding: 24px 51px 24px 0;
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: -4%;
    color: #4F4F4F;

}
.news-image-text .img-wrapper .text {
    position: absolute;
    top: 40px;
    left: 48px;
    font-family: Ermilov;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 44px;
    letter-spacing: -3%;
    color: white;
    max-width: 50%;
    z-index:1;
}

.news-image-text__desc-author {
    color: #2E2E2E;
    font-weight: 600;
}
.blue-bg{
    background: #4671B9!important;
}
.blue-bg .news-image-text__desc{
    color: white !important;
}
.blue-bg .news-image-text__desc-author{
    color: white!important;
}

@media screen and (max-width:1024px) {
    .news-image-text {
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-radius: 16px;
        overflow: hidden;
    }

    .news-image-text .img-wrapper {
        width: 100%;
        max-width: 100%;
        height: 251px;
    }

    .news-image-text__desc {
        padding: 8px 12px;
        font-size: 14px;
        line-height: 22px;

    }
     .news-image-text .img-wrapper .text {
        position: absolute;
        top: 21px;
        left: 24px;
        font-family: Ermilov;
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: -4%;
        max-width: 274px;
    }

}