.newsletter {
    width: stretch;
    
}


.newsH3 {
    margin: 0;
    max-width: 90%;
}


.newImg-wrapper {
    display: flex;
    width: 50%;
    align-items: stretch;
}

.newImg {
    width: 100%;            
    height: 100%;
    object-fit: cover;
    border-radius: 0px 15px 15px 0px;
}

.newsSection {
    display: flex;
    flex-direction: row;
    align-items: stretch; 
    overflow: hidden;
}

.newsDivOne {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newImg-wrapper {
    width: 50%;
    height: 610px;
    display: flex;

}

.newsDivOne {
    display: flex;
    flex-direction: column;
    gap: 64px;
    flex: 1;
    padding: 64px;
    background-color: var(--Beige);
    border-radius: 15px 0px 0px 15px;
}


.newsDivTwo {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 373px;
}

@media (max-width: 1000px) {
    .newsDivTwo a {
        width: 320px;
    }

    

    .newsDivTwo {
        max-width: 320px;
    }
    .newsInput {
        width: 320px;
    }
}



.newsInput {
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    outline: none;
    background: transparent;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

.newsInput:focus {
    border-bottom-color: var(--Red);
}

.small-text {
    color: var(--Grey);
}

.newsButton {
    height: 44px;
}

@media (max-width: 600px) {
    .newsSection {
        flex-direction: column;
    }

    .newsDivOne {
        order: 2;
        padding: 32px var(--PaddingSmall);
        width: fit-content;
        border-radius: 0px 0px 15px 15px;
        gap: 32px;
    }
    .newsDivTwo a {
        width: 100%;
    }

    .newsDivTwo {
        order: 1;
    }

    .newsInput {
        width: 100%;
    }

    .newImg-wrapper {
        width: 100%;
        height: 200px;
    }

    .newImg {
        width: 100%;
        height: 200px; 
        aspect-ratio: 1;        
        object-fit: cover;  
        border-radius: 15px 15px 0px 0px;
    }

    .small-text {
        margin: 0
    }

    .small-text p {
        margin: 0;
        padding: 0;
    }
}