.htcta-newsletter {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    border-radius: 16px;
    margin: 32px 0;
}

.htcta-newsletter__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
}

.htcta-newsletter__content {
    flex: 1;
    min-width: 0;
}

.htcta-newsletter__heading {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.htcta-newsletter__description {
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.htcta-newsletter__form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.htcta-newsletter__input {
    width: 260px;
    padding: 14px 18px;
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.htcta-newsletter__input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.htcta-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.htcta-newsletter__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: #ef4444;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.htcta-newsletter__button:hover {
    background: #dc2626;
}

@media (max-width: 900px) {
    .htcta-newsletter {
        flex-wrap: wrap;
    }

    .htcta-newsletter__content {
        flex: 1 1 calc(100% - 88px);
    }

    .htcta-newsletter__form {
        flex: 1 1 100%;
    }

    .htcta-newsletter__input {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 600px) {
    .htcta-newsletter {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
    }

    .htcta-newsletter__icon {
        width: 52px;
        height: 52px;
    }

    .htcta-newsletter__icon svg {
        width: 26px;
        height: 26px;
    }

    .htcta-newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .htcta-newsletter__input {
        width: 100%;
    }

    .htcta-newsletter__button {
        width: 100%;
        justify-content: center;
    }
}
