/**
 * "Powered by Vinderick" branding badge.
 *
 * Renders below every vinderick-ask widget, aligned to the right edge.
 * No absolute positioning — flows naturally under the box.
 */

.vinderick-ask-frame {
    display: block;
}

.vinderick-ask-branding {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    float: right;
    clear: both;
    color: #294668;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 120ms ease;
    opacity: 0.9;
}

.vinderick-ask-branding:hover,
.vinderick-ask-branding:focus-visible {
    color: #294668;
    opacity: 1;
    text-decoration: none;
    outline: none;
}

.vinderick-ask-branding:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.35);
    border-radius: 4px;
}

.vinderick-ask-branding__logo {
    display: inline-block;
    height: 25px;
    width: auto;
    flex-shrink: 0;
}

.vinderick-ask-branding__text {
    white-space: nowrap;
}

.vinderick-ask-frame::after {
    content: "";
    display: table;
    clear: both;
}

@media print {
    .vinderick-ask-branding {
        display: none !important;
    }
}
