/* Shared H1 + lede block for the Live section (Views/Shared/_PageIntro.cshtml).
   Deliberately quiet: these pages are about the live data below them, so the
   heading has to be present and readable without competing with the score cards. */

.zpi {
    max-width: 780px;
    margin: 0 auto 18px;
    padding: 4px 16px 0;
    text-align: center;
}

.zpi-title {
    margin: 0 0 8px;
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-size: clamp(1.35rem, 1.05rem + 1.35vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.18;
    color: #14233b;
}

.zpi-lede {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(0.875rem, 0.83rem + 0.22vw, 0.975rem);
    line-height: 1.6;
    color: #5b6b82;
}

.zpi-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    margin-top: 14px;
}

.zpi-links a {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #dde5f0;
    border-radius: 999px;
    background: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #223a9e;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease;
}

.zpi-links a:hover,
.zpi-links a:focus-visible {
    border-color: #0ca7d5;
    background: #f2fbff;
}

@media (max-width: 575.98px) {
    .zpi {
        padding: 4px 14px 0;
        text-align: left;
    }

    .zpi-links {
        justify-content: flex-start;
    }
}
