/**
 * Outcomes Component
 * Grid of outcome metrics with value (body-1) and label (body-3)
 */

.outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.outcomes__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.outcomes__value {
    font-family: var(--font-body);
    font-size: var(--font-size-body-1-desktop);
    font-weight: 300;
    line-height: var(--line-height-body-1-desktop);
    color: var(--color-content);
    letter-spacing: -0.02em;
}

.outcomes__label {
    font-family: var(--font-body);
    font-size: var(--font-size-body-3-desktop);
    font-weight: 300;
    line-height: var(--line-height-body-3-desktop);
    color: var(--color-content-a40);
    transition: color 0.2s ease;
}

.outcomes__item:hover .outcomes__label {
    color: var(--color-content);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .outcomes {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .outcomes {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .outcomes__value {
        font-size: var(--font-size-body-1-mobile);
        line-height: var(--line-height-body-1-mobile);
    }

    .outcomes__label {
        font-size: var(--font-size-body-3-mobile);
        line-height: var(--line-height-body-3-mobile);
    }
}
