/* ==========================================================================
   Service detail pages — shared by services/pis.html and services/ais.html
   Loaded after styles/index.css.
   ========================================================================== */

/* Badge that sits above the page-hero heading */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem 0.4rem 0.45rem;
    margin-bottom: var(--sp-5);
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #fff;
}

.service-badge__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-500);
    display: grid;
    place-items: center;
    flex: none;
}

.service-badge__icon svg {
    width: 17px;
    height: 17px;
    color: #fff;
}

/* Cross-sell band pointing at the other regulated service */
.cross-sell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
    align-items: center;
}

.cross-sell h2 {
    font-size: var(--step-4);
}

@media (max-width: 1080px) {
    .cross-sell {
        grid-template-columns: 1fr;
    }
}
