.results-achieved {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding-block: 100px;


}

.results-achieved__title {
    color: var(--color-text-light);
}

.results-achieved__cards {
    margin-top: 50px;

    display: flex;
    align-items: flex-end;

    @media (max-width: 992px) {
        margin-top: 20px;
        flex-direction: column;
        align-items: stretch;
    }
}

.results-achieved__card {
    border: 1px solid var(--color-primary-light);
    padding: 20px;
    aspect-ratio: 1;
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    max-width: calc(100% / 3);
    max-height: 300px;

    @media (max-width: 992px) {
        max-width: none;
        max-height: none;
        aspect-ratio: auto;

        gap: 35px;
    }

    &:nth-child(odd) {
        margin-bottom: 150px;

        @media (max-width: 992px) {
            margin-bottom: 0;
        }
    }

}

.results-achieved__card-value {
    font-weight: 400;
    font-size: 74px;
    line-height: 100%;
    text-transform: uppercase;
    @media (max-width: 992px) {
        font-size: 44px;
    }

    small {
        font-size: 20px;
    }
}

.results-achieved__card-name {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0;
    @media (max-width: 992px) {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .results-achieved {
    }
}