/* BSI Qualification Badge — CI: prominent, no solid borders */
.bsi-badge-section {
    padding-block: var(--space-4) 0;
    text-align: center;
}

.bsi-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-8) var(--space-12);
    border: none;
    border-radius: var(--radius-xl);
    background: var(--bg-secondary);
    text-decoration: none;
    color: var(--text-primary);
    transition: box-shadow 0.3s ease;
}

.bsi-badge:hover {
    box-shadow: var(--shadow-glow-sm);
}

.bsi-badge__logo {
    flex-shrink: 0;
    width: auto;
    height: 72px;
}

.bsi-badge__text {
    text-align: left;
}

.bsi-badge__title {
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    font-size: var(--text-lg);
    letter-spacing: var(--tracking-headline);
    margin: 0;
    line-height: 1.3;
}

.bsi-badge__subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
    margin-top: var(--space-1);
}
