.newsletter-section {
    position: relative;
    height: 420px;
    display: flex;
    justify-content: flex-end;
}

.newsletter-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.newsletter-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0% 30%;
}

.newsletter-content {
    color: var(--color-white);
    position: relative;
    padding-top: var(--spacing-med);
    padding-right: var(--spacing-med);
    flex: 0 0 40%;
}

.newsletter-title {
    margin-bottom: 24px;
}

.newsletter-text {
    font-size: var(--body-text-large) !important;
    font-weight: 400;
    line-height: 140%;
}

.newsletter-form input#Email {
    background: none;
    border: none;
    border-bottom: 1px solid var(--Dark-Grey);
    padding: 20px 0;
}

.newsletter-form input#Email::placeholder {
    color: var(--Light-Grey);
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
}

.subscribe-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border: none;
    padding: 20px 32px;
    margin-top: 24px;
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1400px) {

    .newsletter-content {
        padding-right: var(--spacing-small);
        flex: 0 0 50%;
    }
    
}

@media (max-width: 1200px) {

    .newsletter-content {
        flex: 0 0 65%;
    }
    
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {

    .newsletter-section {
        align-items: center;
        justify-content: center;
    }

}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 768px) {

    .newsletter-content {
        padding-inline: var(--spacing-small);
        max-width: 100%;
    }

    .newsletter-section {
        height: 350px;
    }

    .newsletter-content {
        flex: 0 0 100%;
    }

    .newsletter-section {
        align-items: flex-end;
    }

}