.travelistul-newsletter-card {
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(249,115,22,.22), transparent 42%),
        linear-gradient(145deg, #171717 0%, #222 100%);
    box-shadow: 0 14px 36px rgba(0,0,0,.20);
    color: #fff;
}

.travelistul-newsletter-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ff6b0b;
    color: #fff;
}

.travelistul-newsletter-card h3 {
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(22px, 2.1vw, 32px) !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: -.02em;
}

.travelistul-newsletter-card p {
    margin: 0 0 20px !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.travelistul-newsletter-fields {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.travelistul-newsletter-fields input {
    flex: 1 1 auto;
    min-width: 0;
    height: 52px;
    box-sizing: border-box;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 12px;
    outline: none;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 16px;
    box-shadow: none;
}

.travelistul-newsletter-fields input::placeholder {
    color: rgba(255,255,255,.52);
}

.travelistul-newsletter-fields input:focus {
    border-color: #ff6b0b;
    box-shadow: 0 0 0 3px rgba(255,107,11,.18);
}

.travelistul-newsletter-fields button {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 19px;
    border: 0;
    border-radius: 12px;
    background: #ff6b0b;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}

.travelistul-newsletter-fields button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.travelistul-newsletter-fields button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.travelistul-newsletter-message {
    min-height: 21px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
}

.travelistul-newsletter-message.is-success {
    color: #86efac;
}

.travelistul-newsletter-message.is-error {
    color: #fca5a5;
}

.travelistul-newsletter-privacy {
    margin-top: 5px;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 700px) {
    .travelistul-newsletter-fields {
        flex-direction: column;
    }

    .travelistul-newsletter-fields button {
        width: 100%;
    }
}
