.cda-newsletter {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 20px 20px;
    background: #E7502A;
    color: #fff;
}

.cda-newsletter__inner {
    display: grid;
    grid-template-columns: minmax(300px, 4fr) minmax(480px, 6fr) minmax(150px, 2fr);
    gap: 30px;
    align-items: start;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.cda-newsletter__title {
    margin: 0 !important;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 42px;
    text-transform: uppercase;
}

.cda-newsletter__form {
    min-width: 0;
}

.cda-newsletter__fields {
    display: flex;
    width: 100%;
}

.cda-newsletter__input-wrapper {
    flex: 1 1 auto;
    min-width: 0;
}

.cda-newsletter__input {
    display: block;
    width: 100%;
    height: 42px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: #161837;
    box-shadow: none;
}

.cda-newsletter__input::placeholder {
    color: #161837;
    font-family: "Montserrat", sans-serif;
    opacity: 1;
}

.cda-newsletter__input:focus {
    padding: 8px 10px;
    border: 3px solid #161837;
    outline: 0;
}

.cda-newsletter__submit {
    flex: 0 0 auto;
    min-width: 130px;
    height: 42px;
    padding: 7px 30px;
    border: 1px solid #161837;
    border-radius: 0;
    background: #161837;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.cda-newsletter__submit:hover,
.cda-newsletter__submit:focus {
    border-color: #fff;
    background: #fff;
    color: #E7502A;
}

.cda-newsletter__submit:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.cda-newsletter__alert {
    margin: 0 0 12px !important;
}

.cda-newsletter .gdpr_consent {
    margin-top: 14px;
    padding: 0;
    color: #fff;
}

.cda-newsletter .psgdpr_consent_message {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

.cda-newsletter .psgdpr_consent_message > input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.cda-newsletter .psgdpr_consent_message > input + span {
    position: relative;
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    border: 1px solid #161837;
    background: transparent;
}

.cda-newsletter .psgdpr_consent_message > input:focus-visible + span {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.cda-newsletter .psgdpr_consent_message > input:checked + span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #161837;
    content: "✓";
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transform: translate(-50%, -50%);
}

.cda-newsletter .gdpr_consent .psgdpr_consent_message p {
    margin: 0 0 6px;
    color: #fff;
    text-align: left;
}

.cda-newsletter .psgdpr_consent_message > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.cda-newsletter .custom-checkbox .psgdpr_consent_message span:not(.psgdpr_checkbox) {
    margin-left: 0;
}

.cda-newsletter .psgdpr_consent_message a {
    color: #fff;
    text-decoration: underline;
}

.cda-newsletter .gdpr-info-text {
    max-width: 510px;
    margin: 12px 0 0 26px !important;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-style: italic;
    line-height: 1.4;
    text-align: left;
}

.cda-newsletter__socials {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.cda-newsletter__socials a {
    display: block;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
}

.cda-newsletter__socials img {
    display: block;
    width: 52px;
    height: 52px;
    margin: 0;
    border: 0;
    transition: transform 0.7s ease-in-out;
}

.cda-newsletter__socials a:hover img,
.cda-newsletter__socials a:focus-visible img {
    filter: grayscale(1) invert(1);
    transform: rotateY(360deg);
}

.cda-newsletter__unavailable {
    padding: 20px;
    border: 1px solid #dc3545;
    color: #dc3545;
    text-align: center;
}

@media (max-width: 1024px) {
    .cda-newsletter__inner {
        grid-template-columns: 250px minmax(0, 1fr) 156px;
        gap: 18px;
    }

    .cda-newsletter__title {
        font-size: 35px;
        line-height: 1.1;
    }
}

@media (max-width: 767px) {
    .cda-newsletter {
        padding: 30px 20px 24px;
    }

    .cda-newsletter__inner {
        display: block;
    }

    .cda-newsletter__title {
        margin-bottom: 20px !important;
        font-size: 35px;
        line-height: 1.1;
        text-align: center;
    }

    .cda-newsletter__submit {
        min-width: 90px;
        padding-inline: 18px;
    }

    .cda-newsletter__socials {
        justify-content: center;
        margin-top: 24px;
    }
}
