/**
 * Content badges — the shared Type / Topic chip.
 *
 * Lifted out of css/ifa-search.css so the knowledge hub, Member Comms and
 * Publications use ONE definition rather than three that drift. It was
 * already the site's badge; Publications shipped a second, rounder, filled
 * variant called .ifa-pubs-pill for no reason other than that this file did
 * not exist yet.
 *
 * Enqueued site-wide because it is ~20 lines and three templates need it.
 * Cheaper than deciding per page which of them is rendering.
 */

.ifa-search-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

/* Content type & topic badges — outlined IFA blue */
.ifa-search-card__badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    background: transparent;
    color: var(--ifa-dark-blue);
    border: 1.5px solid var(--ifa-dark-blue);
    line-height: 1.6;
}
