/* CTA Buttons Widget */
.budi-cta-buttons {
    --btn-color: var(--color-sub, #ff6b6b);
    --btn-text-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.budi-cta-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.budi-cta-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

/* Filled style */
.budi-cta-btn--filled {
    background-color: var(--btn-color);
    color: var(--btn-text-color);
    border: 2px solid var(--btn-color);
}

.budi-cta-btn--filled:hover {
    color: var(--btn-text-color);
}

/* Outline style */
.budi-cta-btn--outline {
    background-color: transparent;
    color: var(--btn-color);
    border: 2px solid var(--btn-color);
}

.budi-cta-btn--outline:hover {
    color: var(--btn-color);
}
