/* =========================================================
   REZULTAT REAL — mobile-first
   ========================================================= */

.result-stat__main {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.result-stat__number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 14vw, 7rem);
    color: var(--color-white);
    line-height: 0.9;
    margin-bottom: var(--space-sm);
}

.result-stat__label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.result-stat__context {
    max-width: 42rem;
    margin-inline: auto;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.82);
    line-height: var(--leading-loose);
}

.result-stat__secondary {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.result-stat__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
}

.result-stat__item-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-white);
    line-height: 1;
}

.result-stat__item-label {
    max-width: 14rem;
    margin-inline: auto;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
}

.result-stat__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.18);
}

@media (min-width: 768px) {
    .result-stat__secondary {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }

    .result-stat__item {
        flex: 1;
        padding-inline: var(--space-md);
    }

    .result-stat__divider {
        width: 1px;
        height: auto;
    }
}
