.wp-block-crm-cci-newsletter-form.crm-cci-newsletter-section {
    background: #efefef;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.crm-cci-newsletter__grid {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 470px) minmax(0, 530px);
    justify-content: center;
    gap: 32px;
    align-items: stretch;
    box-sizing: border-box;
}

.crm-cci-newsletter__media {
    width: 100%;
    min-width: 0;
    background: #e6e6e6;
    display: flex;
}

.crm-cci-newsletter__media img,
.crm-cci-newsletter__image-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: #e6e6e6;
}

.crm-cci-newsletter__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.crm-cci-newsletter__content {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crm-cci-newsletter__intro {
    width: 100%;
    max-width: 530px;
    margin: 0 0 14px;
    text-align: center;
    color: #004899;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.crm-cci-newsletter__intro p {
    margin: 0;
}

.crm-cci-newsletter__card {
    width: 100%;
    max-width: 530px;
    background: #fff;
    padding: 28px 28px 22px;
    box-sizing: border-box;
}

.crm-cci-newsletter__title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 700;
    color: #004899;
}

.crm-cci-newsletter-form__field {
    margin-bottom: 9px;
}

.crm-cci-newsletter-form__field label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.crm-cci-newsletter-form__field input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
    font-size: 14px;
    color: #111;
    background: #fff;
    box-sizing: border-box;
}

.crm-cci-newsletter-form__field input:focus {
    outline: none;
    border-color: #004899;
    box-shadow: 0 0 0 2px rgba(74, 99, 199, 0.12);
}

.crm-cci-newsletter-form__actions {
    text-align: center;
    margin-top: 14px;
}

.crm-cci-newsletter-form__actions button {
    min-width: 140px;
    height: 48px;
    padding: 0 25px;
    border: 0;
    border-radius: 8px;
    background: #004899;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.crm-cci-newsletter-form__actions button:hover {
    background: #00397a;
}

.crm-cci-newsletter__consent {
    width: 100%;
    max-width: 530px;
    margin-top: 12px;
    text-align: center;
    color: #004899;
    font-size: 12px;
    line-height: 1.4;
}

.crm-cci-newsletter-form__message {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
}

/* Tablet: collapse to single column and hide image */
@media (max-width: 768px) {
    .wp-block-crm-cci-newsletter-form.crm-cci-newsletter-section {
        padding: 22px 16px;
    }

    .crm-cci-newsletter__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 0;
    }

    .crm-cci-newsletter__media {
        display: none;
    }

    .crm-cci-newsletter__intro,
    .crm-cci-newsletter__card,
    .crm-cci-newsletter__consent {
        max-width: 100%;
    }

    .crm-cci-newsletter__intro {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .crm-cci-newsletter__card {
        padding: 22px 18px 18px;
    }

    .crm-cci-newsletter__title {
        font-size: 23px;
        margin-bottom: 18px;
    }

    .crm-cci-newsletter__consent {
        font-size: 12px;
        margin-top: 12px;
    }
}