/*
 * Extension Subpage — Category Badge · Blueprint Color Scheme
 * =============================================================
 * Matches the layout:
 *   .extensions-sub-page-category-badge-holder
 *     .extensions-sub-page-category-icon-holder  (<i> font icon)
 *     .extensions-sub-page-category-title-holder (label text)
 *
 * Color palette (Blueprint):
 *   Navy:      #012f6b
 *   Gold:      #ffd800
 *   Pale blue: #d4e6f9
 *   White:     #ffffff
 *
 * Font: Inter (enqueue separately)
 * =============================================================
 */

.extensions-sub-page-category-badge-holder {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    background: rgba(255, 216, 0, 0.1);
    border: 1px solid rgba(255, 216, 0, 0.28);
    border-radius: 6px;
    padding: 4px 12px 4px 8px;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;

    transition: background 0.2s ease, border-color 0.2s ease;
}

.extensions-sub-page-category-badge-holder:hover {
    background: rgba(255, 216, 0, 0.16);
    border-color: rgba(255, 216, 0, 0.45);
}

/* ── Icon ── */
.extensions-sub-page-category-icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffd800;
    flex-shrink: 0;
    line-height: 1;
}

/* ── Label ── */
.extensions-sub-page-category-title-holder {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffd800;
    line-height: 1;
    white-space: nowrap;
}