.htcta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 12px;
    margin: 28px 0;
}

.htcta-inline--light {
    background: #f8f9fa;
}

.htcta-inline--blue {
    background: #e0f2fe;
}

.htcta-inline--bordered {
    background: #ffffff;
    border: 2px solid #e1e6ef;
}

.htcta-inline__text {
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #060b23;
}

.htcta-inline__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: #2563eb;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.htcta-inline__button:hover {
    background: #1d4ed8;
    color: #ffffff;
}

@media (max-width: 600px) {
    .htcta-inline {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

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