/* Shared evidence grid for major Novatug page heroes. */
.nt-hero-evidence {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    max-width: 1200px;
    margin: clamp(2.75rem, 6vw, 4rem) auto 0;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nt-hero-evidence > .nt-hero-evidence__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    min-height: 116px;
    margin: 0;
    padding: 1.45rem clamp(1rem, 2vw, 1.5rem);
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    transform: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nt-hero-evidence > .nt-hero-evidence__item:first-child {
    padding-left: 0;
}

.nt-hero-evidence > .nt-hero-evidence__item:last-child {
    border-right: 0;
}

.nt-hero-evidence > a.nt-hero-evidence__item:hover,
.nt-hero-evidence > a.nt-hero-evidence__item:focus-visible {
    background: rgba(0, 156, 221, 0.1);
    color: #ffffff;
    box-shadow: none;
    transform: none;
}

.nt-hero-evidence .nt-hero-evidence__value {
    display: block;
    margin: 0;
    color: #ffffff;
    font-family: var(--mia-font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
}

.nt-hero-evidence .nt-hero-evidence__value > span {
    color: var(--mia-blue);
    font-size: 0.52em;
    font-weight: 600;
    letter-spacing: 0;
}

.nt-hero-evidence .nt-hero-evidence__label {
    display: block;
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--mia-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.4;
    text-transform: uppercase;
}

.nt-hero-evidence--topics .nt-hero-evidence__value {
    font-size: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.nt-hero-evidence--topics .nt-hero-evidence__label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

@media (max-width: 768px) {
    .nt-hero-evidence {
        display: flex;
        max-width: none;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .nt-hero-evidence::-webkit-scrollbar {
        display: none;
    }

    .nt-hero-evidence > .nt-hero-evidence__item {
        flex: 0 0 min(58vw, 210px);
        min-height: 112px;
        scroll-snap-align: start;
    }

    .nt-hero-evidence > .nt-hero-evidence__item:first-child {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .nt-front-page .nt-hero-evidence > .nt-hero-evidence__item {
        flex-basis: calc((100% - 0.75rem) / 2);
        min-height: 124px;
        padding-inline: 0.75rem;
    }

    .nt-front-page .nt-hero-evidence > .nt-hero-evidence__item:first-child {
        padding-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nt-hero-evidence > .nt-hero-evidence__item {
        transition: none;
    }
}
